busybox: move udhcp script from skeleton to package

Since udhcpc is part of busybox, it seems logical to move the udhcpc
script from skeleton to busybox.

[Peter: only install if not available in skeleton]
Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Lionel Landwerlin 2010-12-09 10:55:05 +01:00 committed by Peter Korsgaard
parent cd182cae65
commit 274e34af3b
2 changed files with 4 additions and 1 deletions

View File

@ -141,7 +141,10 @@ endif
define BUSYBOX_INSTALL_TARGET_CMDS
$(BUSYBOX_INSTALL_BINARY)
-chmod a+rx $(TARGET_DIR)/usr/share/udhcpc/default.script
if [ ! -f $(TARGET_DIR)/usr/share/udhcpc/default.script ]; then \
$(INSTALL) -m 0755 -D package/busybox/udhcpc.script \
$(TARGET_DIR)/usr/share/udhcpc/default.script; \
fi
endef
define BUSYBOX_UNINSTALL_TARGET_CMDS