busybox: use $(AUTORELEASE) and SPDX
[openwrt/openwrt.git] / package / utils / busybox / Makefile
1 # SPDX-License-Identifier: GPL-2.0-or-later
2 #
3 # Copyright (C) 2006-2021 OpenWrt.org
4
5 include $(TOPDIR)/rules.mk
6
7 PKG_NAME:=busybox
8 PKG_VERSION:=1.33.1
9 PKG_RELEASE:=$(AUTORELEASE)
10 PKG_FLAGS:=essential
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
13 PKG_SOURCE_URL:=https://www.busybox.net/downloads \
14 http://sources.buildroot.net
15 PKG_HASH:=12cec6bd2b16d8a9446dd16130f2b92982f1819f6e1c5f5887b6db03f5660d28
16
17 PKG_BUILD_DEPENDS:=BUSYBOX_CONFIG_PAM:libpam
18 PKG_BUILD_PARALLEL:=1
19 PKG_CHECK_FORMAT_SECURITY:=0
20
21 #Busybox use it's own PIE config flag and LDFLAGS are used with ld, not gcc.
22 PKG_ASLR_PIE:=0
23
24 PKG_LICENSE:=GPL-2.0
25 PKG_LICENSE_FILES:=LICENSE archival/libarchive/bz/LICENSE
26 PKG_CPE_ID:=cpe:/a:busybox:busybox
27
28 BUSYBOX_SYM=$(if $(CONFIG_BUSYBOX_CUSTOM),CONFIG,DEFAULT)
29 BUSYBOX_IF_ENABLED=$(if $(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_$(1)),$(2))
30
31 ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_FEATURE_SUID),)
32 PKG_FILE_MODES:=/bin/busybox:root:root:4755
33 endif
34
35 include $(INCLUDE_DIR)/package.mk
36
37 ifeq ($(DUMP),)
38 STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell grep '^CONFIG_BUSYBOX_' $(TOPDIR)/.config | $(MKHASH) md5)
39 endif
40
41 # All files provided by busybox will serve as fallback alternatives by opkg.
42 # There should be no need to enumerate ALTERNATIVES entries here
43 define Package/busybox/Default
44 SECTION:=base
45 CATEGORY:=Base system
46 MAINTAINER:=Felix Fietkau <nbd@nbd.name>
47 TITLE:=Core utilities for embedded Linux
48 URL:=http://busybox.net/
49 DEPENDS:=+BUSYBOX_CONFIG_PAM:libpam +BUSYBOX_CONFIG_NTPD:jsonfilter
50 USERID:=ntp=123:ntp=123
51 endef
52
53 define Package/busybox
54 $(call Package/busybox/Default)
55 CONFLICTS:=busybox-selinux
56 VARIANT:=default
57 endef
58
59 define Package/busybox-selinux
60 $(call Package/busybox/Default)
61 TITLE += with SELinux support
62 DEPENDS += +libselinux
63 VARIANT:=selinux
64 PROVIDES:=busybox
65 endef
66
67 define Package/busybox/description
68 The Swiss Army Knife of embedded Linux.
69 It slices, it dices, it makes Julian Fries.
70 endef
71
72 define Package/busybox/config
73 source "$(SOURCE)/Config.in"
74 endef
75
76 ifdef CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOG
77 define Package/busybox/conffiles
78 /etc/syslog.conf
79 endef
80
81 Package/busybox-selinux/conffiles = $(Package/busybox/conffiles)
82 endif
83
84 # don't create a version string containing the actual timestamp
85 export KCONFIG_NOTIMESTAMP=1
86
87
88 ifndef CONFIG_USE_MUSL
89 LDLIBS:=m crypt
90 endif
91
92 LDLIBS += $(call BUSYBOX_IF_ENABLED,PAM,pam pam_misc pthread)
93 ifeq ($(CONFIG_USE_GLIBC),y)
94 LDLIBS += $(call BUSYBOX_IF_ENABLED,NSLOOKUP_OPENWRT,resolv)
95 endif
96
97 ifeq ($(BUILD_VARIANT),selinux)
98 LDLIBS += selinux sepol
99 endif
100
101 TARGET_CFLAGS += -flto
102 TARGET_LDFLAGS += -flto=jobserver -fuse-linker-plugin
103
104 MAKE_VARS :=
105 MAKE_FLAGS += \
106 EXTRA_CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS)" \
107 EXTRA_LDFLAGS="$(TARGET_LDFLAGS)" \
108 LDLIBS="$(LDLIBS)" \
109 LD="$(TARGET_CC)" \
110 SKIP_STRIP=y
111 ifneq ($(findstring c,$(OPENWRT_VERBOSE)),)
112 MAKE_FLAGS += V=1
113 endif
114
115 define Build/Configure
116 rm -f $(PKG_BUILD_DIR)/.config
117 touch $(PKG_BUILD_DIR)/.config
118 ifeq ($(DEVICE_TYPE),nas)
119 echo "CONFIG_HDPARM=y" >> $(PKG_BUILD_DIR)/.config
120 endif
121 ifeq ($(BUILD_VARIANT),selinux)
122 cat $(TOPDIR)/$(SOURCE)/selinux.config >> $(PKG_BUILD_DIR)/.config
123 endif
124 grep 'CONFIG_BUSYBOX_$(BUSYBOX_SYM)' $(TOPDIR)/.config | sed -e "s,\\(# \)\\?CONFIG_BUSYBOX_$(BUSYBOX_SYM)_\\(.*\\),\\1CONFIG_\\2,g" >> $(PKG_BUILD_DIR)/.config
125 yes 'n' | $(MAKE) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS) oldconfig
126 endef
127
128 define Build/Compile
129 $(call Build/Compile/Default, \
130 CONFIG_PREFIX="$(PKG_INSTALL_DIR)" \
131 all install \
132 )
133 endef
134
135 define Package/busybox/install
136 $(INSTALL_DIR) $(1)/etc/init.d
137 $(INSTALL_DIR) $(1)/usr/sbin
138 $(CP) $(PKG_INSTALL_DIR)/* $(1)/
139 ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_CROND),)
140 $(INSTALL_BIN) ./files/cron $(1)/etc/init.d/cron
141 endif
142 ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_NTPD),)
143 $(INSTALL_BIN) ./files/sysntpd $(1)/etc/init.d/sysntpd
144 $(INSTALL_BIN) ./files/ntpd-hotplug $(1)/usr/sbin/ntpd-hotplug
145 $(INSTALL_DIR) $(1)/etc/capabilities $(1)/usr/share/acl.d
146 $(INSTALL_DATA) ./files/ntpd.capabilities $(1)/etc/capabilities/ntpd.json
147 $(INSTALL_DATA) ./files/ntpd_acl.json $(1)/usr/share/acl.d/ntpd.json
148 endif
149 -rm -rf $(1)/lib64
150 endef
151
152 Package/busybox-selinux/install = $(Package/busybox/install)
153
154 $(eval $(call BuildPackage,busybox))
155 $(eval $(call BuildPackage,busybox-selinux))