[package/busybox]: we don't support gcc 4.5.0
[openwrt/svn-archive/archive.git] / package / busybox / Makefile
1 #
2 # Copyright (C) 2006-2010 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.17.3
12 PKG_RELEASE:=2
13 PKG_FLAGS:=essential
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=http://www.busybox.net/downloads \
17 http://distfiles.gentoo.org/distfiles/
18 PKG_MD5SUM:=a2ce1a951571da8c6e0eaf75b1acef60
19
20 PKG_BUILD_PARALLEL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23
24 ifeq ($(DUMP),)
25 STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell $(SH_FUNC) grep '^CONFIG_BUSYBOX_' $(TOPDIR)/.config | md5s)
26 endif
27
28 init-y :=
29 init-$(CONFIG_BUSYBOX_CONFIG_HTTPD) += httpd
30 init-$(CONFIG_BUSYBOX_CONFIG_CROND) += cron
31 init-$(CONFIG_BUSYBOX_CONFIG_TELNETD) += telnet
32
33 define Package/busybox
34 SECTION:=base
35 CATEGORY:=Base system
36 MAINTAINER:=Nicolas Thill <nico@openwrt.org>
37 TITLE:=Core utilities for embedded Linux
38 URL:=http://busybox.net/
39 MENU:=1
40 endef
41
42 define Package/busybox/description
43 The Swiss Army Knife of embedded Linux.
44 It slices, it dices, it makes Julian Fries.
45 endef
46
47 define Package/busybox/config
48 source "$(SOURCE)/Config.in"
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) $(PKG_JOBS) -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 SKIP_STRIP=y \
74 all
75 rm -rf $(PKG_INSTALL_DIR)
76 $(FIND) $(PKG_BUILD_DIR) -lname "*busybox" -exec rm \{\} \;
77 $(MAKE) -C $(PKG_BUILD_DIR) \
78 CC="$(TARGET_CC)" \
79 CROSS_COMPILE="$(TARGET_CROSS)" \
80 EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
81 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))