1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-20 15:48:26 +02:00

move arch specific base-files install call to the end of the generic one - fixes wrong /etc/config/network

SVN-Revision: 4914
This commit is contained in:
Felix Fietkau 2006-10-04 20:03:26 +00:00
parent c9c2d299d6
commit 1bb321cbec

View File

@ -142,7 +142,6 @@ define Package/base-files$(TARGET)/install-brcm
endef
define Package/base-files$(TARGET)/install
$(call Package/base-files$(TARGET)/install-$(BOARD),$(1))
$(CP) ./default/* $(1)/
if [ -d $(BOARD)-$(KERNEL) ]; then \
$(CP) $(BOARD)-$(KERNEL)/* $(1)/; \
@ -164,6 +163,7 @@ define Package/base-files$(TARGET)/install
rm -f $(1)/var
ln -sf /tmp $(1)/var
mkdir -p $(1)/etc
$(call Package/base-files$(TARGET)/install-$(BOARD),$(1))
endef
define Package/libgcc/install