[PATCH 1/2] configs: mediatek: define default variables

From: Jerome Brunet jbrunet@baylibre.com
define some default addresses and variables to help distro boot
Signed-off-by: Jerome Brunet jbrunet@baylibre.com Signed-off-by: Alexandre Mergnat amergnat@baylibre.com Signed-off-by: Julien STEPHAN jstephan@baylibre.com --- include/configs/mt8183.h | 5 +++++ include/configs/mt8516.h | 5 +++++ 2 files changed, 10 insertions(+)
diff --git a/include/configs/mt8183.h b/include/configs/mt8183.h index c93d70ddf1..f2a0d71556 100644 --- a/include/configs/mt8183.h +++ b/include/configs/mt8183.h @@ -26,6 +26,11 @@
#define CONFIG_EXTRA_ENV_SETTINGS \ "scriptaddr=0x40000000\0" \ + "fdt_addr_r=0x44000000\0" \ + "fdtoverlay_addr_r=0x44c00000\0" \ + "kernel_addr_r=0x45000000\0" \ + "ramdisk_addr_r=0x46000000\0" \ + "fdtfile=" CONFIG_DEFAULT_FDT_FILE ".dtb\0" \ BOOTENV
#endif diff --git a/include/configs/mt8516.h b/include/configs/mt8516.h index 7228f3e428..a9041aed46 100644 --- a/include/configs/mt8516.h +++ b/include/configs/mt8516.h @@ -26,6 +26,11 @@
#define CONFIG_EXTRA_ENV_SETTINGS \ "scriptaddr=0x40000000\0" \ + "fdt_addr_r=0x44000000\0" \ + "fdtoverlay_addr_r=0x44c00000\0" \ + "kernel_addr_r=0x45000000\0" \ + "ramdisk_addr_r=0x46000000\0" \ + "fdtfile=" CONFIG_DEFAULT_FDT_FILE ".dtb\0" \ BOOTENV
#endif

From: Alexandre Mergnat amergnat@baylibre.com
Enable FAT and SYSBOOT to use extlinux boot script
Signed-off-by: Jerome Brunet jbrunet@baylibre.com Signed-off-by: Alexandre Mergnat amergnat@baylibre.com Signed-off-by: Julien STEPHAN jstephan@baylibre.com --- configs/mt8183_pumpkin_defconfig | 3 +++ configs/mt8516_pumpkin_defconfig | 6 ++++++ 2 files changed, 9 insertions(+)
diff --git a/configs/mt8183_pumpkin_defconfig b/configs/mt8183_pumpkin_defconfig index 3c96d4eacb..9a7ad160d1 100644 --- a/configs/mt8183_pumpkin_defconfig +++ b/configs/mt8183_pumpkin_defconfig @@ -48,8 +48,11 @@ CONFIG_CMD_PART=y # CONFIG_CMD_ITEST is not set # CONFIG_CMD_SETEXPR is not set # CONFIG_CMD_BLOCK_CACHE is not set +CONFIG_CMD_SYSBOOT=y CONFIG_CMD_EXT4=y +CONFIG_CMD_FAT=y CONFIG_CMD_FS_GENERIC=y +# CONFIG_DOS_PARTITION is not set CONFIG_ENV_IS_IN_MMC=y CONFIG_SYS_MMC_ENV_PART=2 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y diff --git a/configs/mt8516_pumpkin_defconfig b/configs/mt8516_pumpkin_defconfig index 0425ffd0f9..97212ea6bb 100644 --- a/configs/mt8516_pumpkin_defconfig +++ b/configs/mt8516_pumpkin_defconfig @@ -49,6 +49,12 @@ CONFIG_CMD_PART=y # CONFIG_CMD_SETEXPR is not set # CONFIG_CMD_BLOCK_CACHE is not set # CONFIG_CMD_SLEEP is not set +CONFIG_CMD_SYSBOOT=y +CONFIG_CMD_EXT4=y +CONFIG_CMD_FAT=y +CONFIG_CMD_FS_GENERIC=y +# CONFIG_DOS_PARTITION is not set +CONFIG_ENV_IS_IN_MMC=y CONFIG_SYS_RELOC_GD_ENV_ADDR=y CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y CONFIG_CLK=y

On Wed, Sep 07, 2022 at 04:22:51PM +0200, Julien STEPHAN wrote:
From: Alexandre Mergnat amergnat@baylibre.com
Enable FAT and SYSBOOT to use extlinux boot script
[snip]
diff --git a/configs/mt8516_pumpkin_defconfig b/configs/mt8516_pumpkin_defconfig index 0425ffd0f9..97212ea6bb 100644 --- a/configs/mt8516_pumpkin_defconfig +++ b/configs/mt8516_pumpkin_defconfig @@ -49,6 +49,12 @@ CONFIG_CMD_PART=y # CONFIG_CMD_SETEXPR is not set # CONFIG_CMD_BLOCK_CACHE is not set # CONFIG_CMD_SLEEP is not set +CONFIG_CMD_SYSBOOT=y +CONFIG_CMD_EXT4=y +CONFIG_CMD_FAT=y +CONFIG_CMD_FS_GENERIC=y +# CONFIG_DOS_PARTITION is not set +CONFIG_ENV_IS_IN_MMC=y
This sets CONFIG_ENV_IS_IN_MMC but doesn't provide CONFIG_ENV_OFFSET so the build fails.
participants (2)
-
Julien STEPHAN
-
Tom Rini