prevent busybox's ping6 from crashing (#4604)
[openwrt/openwrt.git] / package / busybox / Makefile
1 #
2 # Copyright (C) 2006-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=busybox
11 PKG_VERSION:=1.14.4
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://www.busybox.net/downloads \
16 http://distfiles.gentoo.org/distfiles/
17 PKG_MD5SUM:=ad6d0b271e60783a3c767c4ccbc7f98e
18
19 include $(INCLUDE_DIR)/package.mk
20
21 ifeq ($(DUMP),)
22 STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell grep '^CONFIG_BUSYBOX_' $(TOPDIR)/.config | md5s)
23 endif
24
25 init-y :=
26 init-$(CONFIG_BUSYBOX_CONFIG_HTTPD) += httpd
27 init-$(CONFIG_BUSYBOX_CONFIG_CROND) += cron
28 init-$(CONFIG_BUSYBOX_CONFIG_TELNETD) += telnet
29
30 define Package/busybox
31 SECTION:=base
32 CATEGORY:=Base system
33 TITLE:=Core utilities for embedded Linux
34 URL:=http://busybox.net/
35 MENU:=1
36 endef
37
38 define Package/busybox/description
39 The Swiss Army Knife of embedded Linux.
40 It slices, it dices, it makes Julian Fries.
41 endef
42
43 define Package/busybox/config
44 menu "Configuration"
45 depends on PACKAGE_busybox
46 source "$(SOURCE)/target-config.in"
47 source "$(SOURCE)/config/Config.in"
48 endmenu
49 endef
50
51 define Build/Configure
52 rm -f $(PKG_BUILD_DIR)/.configured*
53 grep 'CONFIG_BUSYBOX_' $(TOPDIR)/.config | sed -e "s,\\(# \)\\?CONFIG_BUSYBOX_\\(.*\\),\\1\\2,g" > $(PKG_BUILD_DIR)/.config
54 yes '' | $(MAKE) -C $(PKG_BUILD_DIR) \
55 CC="$(TARGET_CC)" \
56 CROSS_COMPILE="$(TARGET_CROSS)" \
57 KBUILD_HAVE_NLS=no \
58 ARCH="$(ARCH)" \
59 oldconfig
60 endef
61
62 ifdef CONFIG_GCC_VERSION_LLVM
63 TARGET_CFLAGS += -fnested-functions
64 endif
65
66 define Build/Compile
67 $(MAKE) -C $(PKG_BUILD_DIR) \
68 CC="$(TARGET_CC)" \
69 CROSS_COMPILE="$(TARGET_CROSS)" \
70 KBUILD_HAVE_NLS=no \
71 EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
72 ARCH="$(ARCH)" \
73 all
74 rm -rf $(PKG_INSTALL_DIR)
75 $(FIND) $(PKG_BUILD_DIR) -lname "*busybox" -exec rm \{\} \;
76 $(MAKE) -C $(PKG_BUILD_DIR) \
77 CC="$(TARGET_CC)" \
78 CROSS_COMPILE="$(TARGET_CROSS)" \
79 EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
80 ARCH="$(ARCH)" \
81 IPKG_ARCH="$(ARCH)" \
82 CONFIG_PREFIX="$(PKG_INSTALL_DIR)" \
83 install
84 endef
85
86 define Package/busybox/install
87 $(INSTALL_DIR) $(1)/etc/init.d
88 $(CP) $(PKG_INSTALL_DIR)/* $(1)/
89 for tmp in $(init-y); do \
90 $(INSTALL_BIN) ./files/$$$$tmp $(1)/etc/init.d/$$$$tmp; \
91 done
92 -rm -rf $(1)/lib64
93 endef
94
95 $(eval $(call BuildPackage,busybox))