From: Wendy Liang Date: Mon, 25 Feb 2013 07:17:31 +0000 (+1000) Subject: petalinux-auto-board.h.template: Enable autoboot even if no Flash X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db7718a2e0b9095d3bcd7ba7c1d8d6a5081860ce;p=thirdparty%2Fu-boot.git petalinux-auto-board.h.template: Enable autoboot even if no Flash Currently, if there is no flash, autoboot is always disabled. It always set the bootcmd to netboot. However, there is customer has system without any flash, and wants to boot from SD card but not netboot. We just need to reenable autoboot and let the user to set the CONFIG_BOOTCMD from their platform's .h.template. Signed-off-by: Wendy Liang --- diff --git a/include/configs/petalinux-auto-board.h.template b/include/configs/petalinux-auto-board.h.template index fd213ba4c00..4df79972e76 100644 --- a/include/configs/petalinux-auto-board.h.template +++ b/include/configs/petalinux-auto-board.h.template @@ -682,12 +682,10 @@ ESERIAL3 \ PSSERIAL0 \ PSSERIAL1 \ - "autoload=no\0" \ "bootfile=image.ub\0" \ "netstart=@nstart@\0" \ "dtbnetstart=@dtbnstart@\0" \ "loadaddr=@nstart@\0" \ - "bootcmd=run netboot\0" \ "netboot=tftp ${netstart} image.ub && bootm\0" \ "dtbnetboot=tftp ${netstart} image.ub; tftp ${dtbnetstart} system.dtb; bootm ${netstart} - ${dtbnetstart}\0" \ ""