From: Jaehoon Chung Date: Sun, 1 Nov 2020 23:56:31 +0000 (+0900) Subject: configs: meson64: relocate a config_distro_bootcmd header X-Git-Tag: submit/tizen/20201110.005738~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1969627be4c96878c2b1d69527fc33700fa612a7;p=platform%2Fkernel%2Fu-boot.git configs: meson64: relocate a config_distro_bootcmd header Relocate a config_distor_bootcmd header before setting CONGIT_EXTRA_ENV_SETTING. Change-Id: I84272c9292c32c40d96693d622be31e9e7ac59c4 Signed-off-by: Jaehoon Chung --- diff --git a/include/configs/meson64.h b/include/configs/meson64.h index f4bc51f695..b76889ad89 100644 --- a/include/configs/meson64.h +++ b/include/configs/meson64.h @@ -76,9 +76,10 @@ func(DHCP, dhcp, na) #endif +#include + #ifndef CONFIG_EXTRA_ENV_SETTINGS #define CONFIG_EXTRA_ENV_SETTINGS \ - TIZEN_ENV_SETTING \ "stdin=" STDIN_CFG "\0" \ "stdout=" STDOUT_CFG "\0" \ "stderr=" STDOUT_CFG "\0" \ @@ -88,9 +89,8 @@ "pxefile_addr_r=0x01080000\0" \ "ramdisk_addr_r=0x13000000\0" \ "fdtfile=amlogic/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \ - BOOTENV + BOOTENV \ + TIZEN_ENV_SETTING #endif -#include - #endif /* __MESON64_CONFIG_H */