[PATCH] remove dead rarpboot command
Sascha Hauer
s.hauer at pengutronix.de
Mon Jun 25 13:34:51 EDT 2012
This code is unused, remove it.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
commands/net.c | 29 -----------------------------
1 file changed, 29 deletions(-)
diff --git a/commands/net.c b/commands/net.c
index c5c6373..665433f 100644
--- a/commands/net.c
+++ b/commands/net.c
@@ -35,35 +35,6 @@
#include <errno.h>
#include <libbb.h>
-#ifdef CONFIG_NET_RARP
-extern void RarpRequest(void);
-
-static int do_rarpb(int argc, char *argv[])
-{
- int size;
-
- if (NetLoopInit(RARP) < 0)
- return 1;
-
- NetOurIP = 0;
- RarpRequest(); /* Basically same as BOOTP */
-
- if ((size = NetLoop()) < 0)
- return 1;
-
- /* NetLoop ok, update environment */
- netboot_update_env();
-
- return 0;
-}
-
-BAREBOX_CMD_START(rarpboot)
- .cmd = do_rarpb,
- .usage = "boot image via network using rarp/tftp protocol",
- BAREBOX_CMD_HELP("[loadAddress] [bootfilename]\n")
-BAREBOX_CMD_END
-#endif /* CONFIG_NET_RARP */
-
static int do_ethact(int argc, char *argv[])
{
struct eth_device *edev;
--
1.7.10
More information about the barebox
mailing list