소스 검색

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 년 전
부모
커밋
274e34af3b
2개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  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