2 # Copyright (C) 2006-2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
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
22 include $(INCLUDE_DIR
)/package.mk
25 STAMP_CONFIGURED
:=$(strip $(STAMP_CONFIGURED
))_
$(shell $(SH_FUNC
) grep
'^CONFIG_BUSYBOX_' $(TOPDIR
)/.config | md5s
)
29 init-
$(CONFIG_BUSYBOX_CONFIG_HTTPD
) += httpd
30 init-
$(CONFIG_BUSYBOX_CONFIG_CROND
) += cron
31 init-
$(CONFIG_BUSYBOX_CONFIG_TELNETD
) += telnet
33 define Package
/busybox
36 MAINTAINER
:=Nicolas Thill
<nico@openwrt.org
>
37 TITLE
:=Core utilities for embedded Linux
38 URL
:=http
://busybox.net
/
42 define Package
/busybox
/description
43 The Swiss Army Knife of embedded Linux.
44 It slices
, it dices
, it makes Julian Fries.
47 define Package
/busybox
/config
48 source
"$(SOURCE)/Config.in"
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
) \
56 CROSS_COMPILE
="$(TARGET_CROSS)" \
62 ifdef CONFIG_GCC_VERSION_LLVM
63 TARGET_CFLAGS
+= -fnested-functions
66 ifdef CONFIG_GCC_VERSION_4_5_0
67 TARGET_CFLAGS
+= -fno-tree-pta
71 $(MAKE
) $(PKG_JOBS
) -C
$(PKG_BUILD_DIR
) \
73 CROSS_COMPILE
="$(TARGET_CROSS)" \
75 EXTRA_CFLAGS
="$(TARGET_CFLAGS)" \
79 rm -rf
$(PKG_INSTALL_DIR
)
80 $(FIND
) $(PKG_BUILD_DIR
) -lname
"*busybox" -exec
rm \
{\
} \
;
81 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
83 CROSS_COMPILE
="$(TARGET_CROSS)" \
84 EXTRA_CFLAGS
="$(TARGET_CFLAGS)" \
86 CONFIG_PREFIX
="$(PKG_INSTALL_DIR)" \
90 define Package
/busybox
/install
91 $(INSTALL_DIR
) $(1)/etc
/init.d
92 $(CP
) $(PKG_INSTALL_DIR
)/* $(1)/
93 for tmp in
$(init-y
); do \
94 $(INSTALL_BIN
) .
/files
/$$$$tmp $(1)/etc
/init.d
/$$$$tmp; \
99 $(eval
$(call BuildPackage
,busybox
))