X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/c69d98c0cca8f93dbb570aea51e9b9b99e0d816e..2d32ced1744d54bae589cb1500e1453cfa84a8ca:/package/base-files/Makefile diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 6bec4184f..15920d52b 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=base-files -PKG_RELEASE:=24 +PKG_RELEASE:=31 PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ @@ -32,9 +32,7 @@ else LIBGCC_VERSION:= endif -CONFIG_PACKAGE_base-files$(TARGET):=$(CONFIG_PACKAGE_base-files) - -define Package/base-files$(TARGET) +define Package/base-files SECTION:=base CATEGORY:=Base system TITLE:=Base filesystem for OpenWrt @@ -47,7 +45,7 @@ define Package/base-files$(TARGET) $(call Config,network.lan.dns,ip,,LAN DNS server) endef -define Package/base-files$(TARGET)/conffiles +define Package/base-files/conffiles /etc/banner /etc/hosts /etc/inittab @@ -59,7 +57,7 @@ define Package/base-files$(TARGET)/conffiles $(call $(TARGET)/conffiles) endef -define Package/base-files$(TARGET)/description +define Package/base-files/description This package contains a base filesystem and system scripts for OpenWrt. endef @@ -140,7 +138,7 @@ define Build/Compile $(call Build/Compile/Default) endef -define Package/base-files$(TARGET)/install +define Package/base-files/install $(CP) ./files/* $(1)/ if [ -d $(GENERIC_PLATFORM_DIR)/base-files/. ]; then \ $(CP) $(GENERIC_PLATFORM_DIR)/base-files/* $(1)/; \ @@ -196,7 +194,7 @@ define Package/base-files$(TARGET)/install $(call Package/base-files/install-target,$(1)) for conffile in $(1)/etc/config/*; do \ if [ -f "$$$$conffile" ]; then \ - grep "$$$$conffile" $(1)/CONTROL/conffiles || \ + grep "$$$${conffile##$(1)}" $(1)/CONTROL/conffiles || \ echo "$$$${conffile##$(1)}" >> $(1)/CONTROL/conffiles; \ fi \ done @@ -247,6 +245,12 @@ define Package/libc/install $(call Package/$(LIBC)/install,$1) endef +define Package/libc/install_lib + $(CP) $(filter-out %/libdl_pic.a,$(wildcard $(TOOLCHAIN_DIR)/usr/lib/lib*.a)) $(1)/lib/ + $(if $(wildcard $(TOOLCHAIN_DIR)/usr/lib/libc_so.a),$(CP) $(TOOLCHAIN_DIR)/usr/lib/libc_so.a $(1)/lib/libc_pic.a) + $(CP) $(TOOLCHAIN_DIR)/usr/lib/gcc/*/*/libgcc.a $(1)/lib/libgcc_s_pic.a +endef + define Package/libpthread/install $(INSTALL_DIR) $(1)/lib $(CP) $(TOOLCHAIN_DIR)/lib/libpthread.so.* $(1)/lib/ @@ -273,7 +277,7 @@ ifneq ($(DUMP),1) -include $(PLATFORM_DIR)/base-files.mk endif -$(eval $(call BuildPackage,base-files$(TARGET))) +$(eval $(call BuildPackage,base-files)) $(eval $(call BuildPackage,libc)) $(eval $(call BuildPackage,libgcc)) $(eval $(call BuildPackage,libssp))