[source] uboot-kirkwood: fix goflexhome/net bootcommand
LEDE Commits
lede-commits at lists.infradead.org
Sun Feb 19 12:00:30 PST 2017
jow pushed a commit to source.git, branch lede-17.01:
https://git.lede-project.org/4d1ab84f1e3b69575eb1c52dfe0defb5375ddb4f
commit 4d1ab84f1e3b69575eb1c52dfe0defb5375ddb4f
Author: Alberto Bursi <alberto.bursi at outlook.it>
AuthorDate: Mon Feb 6 08:08:26 2017 +0100
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 at outlook.it>
---
package/boot/uboot-kirkwood/patches/150-goflexhome.patch | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/boot/uboot-kirkwood/patches/150-goflexhome.patch b/package/boot/uboot-kirkwood/patches/150-goflexhome.patch
index 7f66eb9..46a6ab5 100644
--- a/package/boot/uboot-kirkwood/patches/150-goflexhome.patch
+++ b/package/boot/uboot-kirkwood/patches/150-goflexhome.patch
@@ -10,7 +10,7 @@
- "bootm 0x800000"
+ "ubi part ubi; " \
+ "ubi read 0x800000 kernel; " \
-+ "bootz 0x800000"
++ "bootm 0x800000"
#define CONFIG_MTDPARTS \
- "mtdparts=orion_nand:1m(uboot),6M(uImage),-(root)\0"
More information about the lede-commits
mailing list