From: Paul Wassi <p.wa...@gmx.at> Fix the default value for the 'bootcmd' environment variable. Therefore make the default bootcmd work for buildbot's images.
Signed-off-by: Paul Wassi <p.wa...@gmx.at> --- The images generated for Dockstar (and probably other devices as well) have an _uncompressed_ uImage. The bootcmd is 'bootz' at the moment (for zImage), the device will fail to boot. Subsitute 'bootz' with 'bootm' and it will load fine. This patch is meant to be applied to my previous patch for 2016.09.01 ! boot/uboot-kirkwood/patches/110-dockstar.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -rupN a/package/boot/uboot-kirkwood/patches/110-dockstar.patch b/package/boot/uboot-kirkwood/patches/110-dockstar.patch --- a/package/boot/uboot-kirkwood/patches/110-dockstar.patch +++ b/package/boot/uboot-kirkwood/patches/110-dockstar.patch @@ -28,7 +28,7 @@ - "bootm 0x800000 0x1100000" + "ubi part ubi; " \ + "ubi read 0x800000 kernel; " \ -+ "bootz 0x800000" ++ "bootm 0x800000" -#define CONFIG_MTDPARTS "mtdparts=orion_nand:1m(uboot),-(root)\0" +#define CONFIG_MTDPARTS \ _______________________________________________ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev