Browse Source

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>
Lionel Landwerlin 14 years ago
parent
commit
274e34af3b
2 changed files with 4 additions and 1 deletions
  1. 4 1
      package/busybox/busybox.mk
  2. 0 0
      package/busybox/udhcpc.script

+ 4 - 1
package/busybox/busybox.mk

@@ -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

+ 0 - 0
fs/skeleton/usr/share/udhcpc/default.script → package/busybox/udhcpc.script