uboot-kirkwood: fix goflexhome/net bootcommand
Goflexhome/net use uImage, and to boot an uImage the u-boot must use bootm command, not bootz. Fixes the "i cannot boot LEDE with this u-boot" issue that I found out myself with my goflexnet. Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
This commit is contained in:
parent
a6ef5933f8
commit
a9d347c11c
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
||||||
- "bootm 0x800000"
|
- "bootm 0x800000"
|
||||||
+ "ubi part ubi; " \
|
+ "ubi part ubi; " \
|
||||||
+ "ubi read 0x800000 kernel; " \
|
+ "ubi read 0x800000 kernel; " \
|
||||||
+ "bootz 0x800000"
|
+ "bootm 0x800000"
|
||||||
|
|
||||||
#define CONFIG_MTDPARTS \
|
#define CONFIG_MTDPARTS \
|
||||||
- "mtdparts=orion_nand:1m(uboot),6M(uImage),-(root)\0"
|
- "mtdparts=orion_nand:1m(uboot),6M(uImage),-(root)\0"
|
||||||
|
|
Loading…
Reference in a new issue