busybox: remove nslookup_lede/openwrt.patch
[openwrt/staging/jow.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 ifndef CONFIG_USE_MUSL
85 LDLIBS:=m crypt
86 endif
87
88 LDLIBS += $(call BUSYBOX_IF_ENABLED,PAM,pam pam_misc pthread)
89
90 ifeq ($(BUILD_VARIANT),selinux)
91 LDLIBS += selinux sepol
92 endif
93
94 TARGET_CFLAGS += -flto
95 TARGET_LDFLAGS += -flto=jobserver -fuse-linker-plugin
96
97 MAKE_VARS :=
98 MAKE_FLAGS += \
99 EXTRA_CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS)" \
100 EXTRA_LDFLAGS="$(TARGET_LDFLAGS)" \
101 LDLIBS="$(LDLIBS)" \
102 LD="$(TARGET_CC)" \
103 SKIP_STRIP=y
104 ifneq ($(findstring c,$(OPENWRT_VERBOSE)),)
105 MAKE_FLAGS += V=1
106 endif
107
108 define Build/Configure
109 rm -f $(PKG_BUILD_DIR)/.config
110 touch $(PKG_BUILD_DIR)/.config
111 ifeq ($(DEVICE_TYPE),nas)
112 echo "CONFIG_HDPARM=y" >> $(PKG_BUILD_DIR)/.config
113 endif
114 ifeq ($(BUILD_VARIANT),selinux)
115 cat $(TOPDIR)/$(SOURCE)/selinux.config >> $(PKG_BUILD_DIR)/.config
116 endif
117 grep 'CONFIG_BUSYBOX_$(BUSYBOX_SYM)' $(TOPDIR)/.config | sed -e "s,\\(# \)\\?CONFIG_BUSYBOX_$(BUSYBOX_SYM)_\\(.*\\),\\1CONFIG_\\2,g" >> $(PKG_BUILD_DIR)/.config
118 yes 'n' | $(MAKE) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS) oldconfig
119 endef
120
121 define Build/Compile
122 $(call Build/Compile/Default, \
123 CONFIG_PREFIX="$(PKG_INSTALL_DIR)" \
124 all install \
125 )
126 endef
127
128 define Package/busybox/install
129 $(INSTALL_DIR) $(1)/etc/init.d
130 $(INSTALL_DIR) $(1)/usr/sbin
131 $(CP) $(PKG_INSTALL_DIR)/* $(1)/
132 ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_CROND),)
133 $(INSTALL_BIN) ./files/cron $(1)/etc/init.d/cron
134 endif
135 ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_NTPD),)
136 $(INSTALL_BIN) ./files/sysntpd $(1)/etc/init.d/sysntpd
137 $(INSTALL_BIN) ./files/ntpd-hotplug $(1)/usr/sbin/ntpd-hotplug
138 $(INSTALL_DIR) $(1)/etc/capabilities $(1)/usr/share/acl.d
139 $(INSTALL_DATA) ./files/ntpd.capabilities $(1)/etc/capabilities/ntpd.json
140 $(INSTALL_DATA) ./files/ntpd_acl.json $(1)/usr/share/acl.d/ntpd.json
141 endif
142 -rm -rf $(1)/lib64
143 endef
144
145 Package/busybox-selinux/install = $(Package/busybox/install)
146
147 $(eval $(call BuildPackage,busybox))
148 $(eval $(call BuildPackage,busybox-selinux))