X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=package%2Fbusybox%2FMakefile;h=fc935d82940679e55cd7e896070539dd0407134a;hp=2927d70436c34ac72f821089fadbcb9ee1fc4745;hb=b907915fef963c02537c93df9f0bda69de498fc6;hpb=6c5f4f1aa8c89b95315395b76bea7ef649635d54 diff --git a/package/busybox/Makefile b/package/busybox/Makefile index 2927d70436..fc935d8294 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -9,19 +9,20 @@ include $(TOPDIR)/rules.mk PKG_NAME:=busybox -PKG_VERSION:=1.3.1 -PKG_RELEASE:=1 +PKG_VERSION:=1.8.1 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://www.busybox.net/downloads \ http://distfiles.gentoo.org/distfiles/ -PKG_MD5SUM:=571531cfa83726947ccb566de017ad4f -PKG_CAT:=bzcat - -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_MD5SUM:=c54554851d989328654a3eeab915a04f include $(INCLUDE_DIR)/package.mk +ifeq ($(DUMP),) + STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell grep '^CONFIG_BUSYBOX_' $(TOPDIR)/.config | md5s) +endif + init-y := init-$(CONFIG_BUSYBOX_CONFIG_HTTPD) += httpd init-$(CONFIG_BUSYBOX_CONFIG_CROND) += cron @@ -36,19 +37,21 @@ define Package/busybox endef define Package/busybox/description -The Swiss Army Knife of embedded Linux. - It slices, it dices, it makes Julian Fries. + The Swiss Army Knife of embedded Linux. + It slices, it dices, it makes Julian Fries. endef define Package/busybox/config menu "Configuration" depends on PACKAGE_busybox + source "$(SOURCE)/target-config.in" source "$(SOURCE)/config/Config.in" endmenu endef define Build/Configure - $(SCRIPT_DIR)/gen_busybox_config.pl $(TOPDIR)/.config > $(PKG_BUILD_DIR)/.config + rm -f $(PKG_BUILD_DIR)/.configured* + grep 'CONFIG_BUSYBOX_' $(TOPDIR)/.config | sed -e "s,\\(# \)\\?CONFIG_BUSYBOX_\\(.*\\),\\1\\2,g" > $(PKG_BUILD_DIR)/.config yes '' | $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ @@ -67,6 +70,7 @@ define Build/Compile endef define Package/busybox/install + find $(PKG_BUILD_DIR) -lname "*busybox" -exec rm \{\} \; $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ @@ -75,7 +79,7 @@ define Package/busybox/install IPKG_ARCH="$(ARCH)" \ CONFIG_PREFIX="$(1)" \ install - mkdir -p $(1)/etc/init.d + $(INSTALL_DIR) $(1)/etc/init.d for tmp in $(init-y); do \ $(INSTALL_BIN) ./files/$$$$tmp $(1)/etc/init.d/$$$$tmp; \ done