include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=base-files
-PKG_RELEASE:=25
+PKG_RELEASE:=26
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
LIBGCC_VERSION:=<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
$(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
$(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
$(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)/; \
$(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/
+endef
+
define Package/libpthread/install
$(INSTALL_DIR) $(1)/lib
$(CP) $(TOOLCHAIN_DIR)/lib/libpthread.so.* $(1)/lib/
-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))