[PATCH 10/16] ARM bootm: only use concatenated oftree when no other is available
Sascha Hauer
s.hauer at pengutronix.de
Fri Jan 11 08:24:30 EST 2013
When an oftree is already specified use it. This lets the user
boot a kernel with an oftree he provided himself rather than
hardcoding the concatenated one.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
arch/arm/lib/bootm.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c
index b7dc96e..dc29004 100644
--- a/arch/arm/lib/bootm.c
+++ b/arch/arm/lib/bootm.c
@@ -138,6 +138,9 @@ static int do_bootz_linux_fdt(int fd, struct image_data *data)
u32 end;
+ if (data->oftree)
+ return -ENXIO;
+
header = &__header;
ret = read(fd, header, sizeof(*header));
if (ret < sizeof(*header))
--
1.7.10.4
More information about the barebox
mailing list