summaryrefslogtreecommitdiff
path: root/package/busybox/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2015-05-22 20:24:46 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2015-05-22 20:24:46 +0200
commit570955a0b3e18f01f9e2b4a838749580759882aa (patch)
tree899034d6f5d672fa1a4b8302a967a39935e8eec9 /package/busybox/Makefile
parent93ada9cdf781d30226a5a55acedee04640d044b4 (diff)
add workaround for rpi2 eth0
Diffstat (limited to 'package/busybox/Makefile')
-rw-r--r--package/busybox/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile
index 313acbfc9..f20536dd4 100644
--- a/package/busybox/Makefile
+++ b/package/busybox/Makefile
@@ -5,7 +5,7 @@ include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= busybox
PKG_VERSION:= 1.23.2
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_HASH:= 05a6f9e21aad8c098e388ae77de7b2361941afa7157ef74216703395b14e319a
PKG_DESCR:= core utilities for embedded systems
PKG_SECTION:= base/apps
@@ -54,7 +54,11 @@ do-install:
$(CP) $(WRKINST)/* $(IDIR_BUSYBOX)/
ifeq ($(BUSYBOX_IFUPDOWN),y)
$(INSTALL_DIR) $(IDIR_BUSYBOX)/etc/init.d
- $(INSTALL_BIN) ./files/network $(IDIR_BUSYBOX)/etc/init.d
+ifeq ($(ADK_RUNTIME_WAIT_FOR_ETHERNET),y)
+ $(INSTALL_BIN) ./files/network.wait $(IDIR_BUSYBOX)/etc/init.d/network
+else
+ $(INSTALL_BIN) ./files/network $(IDIR_BUSYBOX)/etc/init.d/network
+endif
endif
ifeq ($(ADK_DEBUG),y)
${INSTALL_BIN} $(WRKBUILD)/busybox_unstripped \