From: Jaehoon Chung Date: Mon, 12 Feb 2018 05:47:19 +0000 (+0900) Subject: config: rpi3: enable the configurations relevant to NFSDOWN X-Git-Tag: accepted/tizen/unified/20221108.163909~307 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8a055c59e65aa7929d1d5f6a43f71c41d04ce021;p=platform%2Fkernel%2Fu-boot.git config: rpi3: enable the configurations relevant to NFSDOWN Enable the configurations relevant to nfsdown command for rpi3. Change-Id: Ic050057e75f4e92b1507ca84c642ba3c798ba6fc Signed-off-by: Jaehoon Chung --- diff --git a/include/configs/rpi.h b/include/configs/rpi.h index 4f5025d0da..86e8d8b992 100644 --- a/include/configs/rpi.h +++ b/include/configs/rpi.h @@ -58,6 +58,34 @@ /* Shell */ +/* ATAGs support for bootm/bootz */ +#define CONFIG_SETUP_MEMORY_TAGS +#define CONFIG_CMDLINE_TAG +#define CONFIG_INITRD_TAG + +#define CONFIG_DFU_ALT_SYSTEM \ + "Image fat 0 1;" \ + "bcm2710-rpi3-b.dtb fat 0 1;" \ + "bcm2837-rpi3-b.dtb fat 0 1;" \ + "u-boot.img fat 0 1;" \ + "u-boot.env fat 0 1;" \ + "optee.bin fat 0 1;" \ + "boot.img part 0 1;" \ + "rootfs part 0 2;" \ + "system-data part 0 3;" \ + "user part 0 5;" \ + "module part 0 6;" \ + "ramdisk.img part 0 7;" \ + "ramdisk-recovery part 0 8\0" + +#define CONFIG_DFU_ALT_BOOT_EMMC "" + +/* NFSDOWN */ +#define CONFIG_IP_DEFRAG + +#define CONFIG_SET_DFU_ALT_INFO +#define CONFIG_SET_DFU_ALT_BUF_LEN (SZ_1K) + /* Environment */ #define ENV_DEVICE_SETTINGS \ "stdin=serial,usbkbd\0" \