[PATCH 06/14] ARM bootm: remove now obsolete args
Sascha Hauer
s.hauer at pengutronix.de
Mon Nov 28 03:02:12 EST 2011
Now that the arch_number and system_rev variables can be set from
the environment we don't need the old bootm command line switch
mechanism anymore.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
arch/arm/lib/bootm.c | 29 -----------------------------
1 files changed, 0 insertions(+), 29 deletions(-)
diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c
index 87bf3b3..a104aaa 100644
--- a/arch/arm/lib/bootm.c
+++ b/arch/arm/lib/bootm.c
@@ -44,36 +44,7 @@ static int do_bootm_linux(struct image_data *data)
return -1;
}
-static int image_handle_cmdline_parse(struct image_data *data, int opt,
- char *optarg)
-{
- int ret = 1;
- int no;
-
- switch (opt) {
- case 'a':
- no = simple_strtoul(optarg, NULL, 0);
- armlinux_set_architecture(no);
- ret = 0;
- break;
- case 'R':
- no = simple_strtoul(optarg, NULL, 0);
- armlinux_set_revision(no);
- ret = 0;
- break;
- default:
- break;
- }
-
- return ret;
-}
-
static struct image_handler handler = {
- .cmdline_options = "a:R:",
- .cmdline_parse = image_handle_cmdline_parse,
- .help_string = " -a <arch> use architecture number <arch>\n"
- " -R <system_rev> use system revison <system_rev>\n",
-
.bootm = do_bootm_linux,
.image_type = IH_OS_LINUX,
};
--
1.7.7.1
More information about the barebox
mailing list