Convert CONFIG_USE_BOOTCOMMAND et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / sam9x60ek.h
index df30d48..eb96e50 100644 (file)
 
 #ifdef CONFIG_SD_BOOT
 /* bootstrap + u-boot + env + linux in sd card */
-#define CONFIG_BOOTCOMMAND  \
-                       "fatload mmc 0:1 0x21000000 at91-sam9x60ek.dtb;" \
-                       "fatload mmc 0:1 0x22000000 zImage;" \
-                       "bootz 0x22000000 - 0x21000000"
 
 #elif defined(CONFIG_NAND_BOOT)
 /* bootstrap + u-boot + env + linux in nandflash */
-#define CONFIG_BOOTCOMMAND     "nand read " \
-                               "0x22000000 0x200000 0x600000; " \
-                               "nand read 0x21000000 0x180000 0x20000; " \
-                               "bootz 0x22000000 - 0x21000000"
 
 #elif defined(CONFIG_QSPI_BOOT)
 /* bootstrap + u-boot + env + linux in SPI NOR flash */
-#define CONFIG_BOOTCOMMAND     "sf probe 0; "                                  \
-                               "sf read 0x21000000 0x180000 0x80000; "         \
-                               "sf read 0x22000000 0x200000 0x600000; "        \
-                               "bootz 0x22000000 - 0x21000000"
 #endif
 
 #endif