summaryrefslogtreecommitdiffstats
path: root/include/boot.h
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-11-27 17:43:26 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2011-11-29 21:03:17 +0100
commitd4950552f5c7e95b04f9a69809542080483ca77d (patch)
treee9ecca147e160ad8d5d71bc5ef062fedfde829fa /include/boot.h
parent351058fa51dbc010c37906b46ecf67a41dbbad8d (diff)
downloadbarebox-d4950552f5c7e95b04f9a69809542080483ca77d.tar.gz
barebox-d4950552f5c7e95b04f9a69809542080483ca77d.tar.xz
bootm: use initrd_address and initrd_size
Make these fields in struct image_data the reference for image handlers Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/boot.h')
-rw-r--r--include/boot.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/boot.h b/include/boot.h
index b22514b462..b67e034801 100644
--- a/include/boot.h
+++ b/include/boot.h
@@ -10,6 +10,7 @@ struct image_data {
const char *oftree;
int verify;
unsigned long initrd_address;
+ unsigned long initrd_size;
};
struct image_handler {