2021-05-18 13:36:10 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2015-03-13 08:38:56 +00:00
|
|
|
#
|
2021-05-18 13:36:10 +00:00
|
|
|
# Copyright (C) 2006-2021 OpenWrt.org
|
2005-03-31 22:25:58 +00:00
|
|
|
|
2005-03-06 03:34:52 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2005-03-31 22:25:58 +00:00
|
|
|
PKG_NAME:=busybox
|
2023-05-21 21:54:31 +00:00
|
|
|
PKG_VERSION:=1.36.1
|
2023-01-03 21:48:51 +00:00
|
|
|
PKG_RELEASE:=1
|
2010-11-11 16:23:16 +00:00
|
|
|
PKG_FLAGS:=essential
|
2005-03-31 22:25:58 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2016-10-14 08:09:47 +00:00
|
|
|
PKG_SOURCE_URL:=https://www.busybox.net/downloads \
|
|
|
|
http://sources.buildroot.net
|
2023-05-21 21:54:31 +00:00
|
|
|
PKG_HASH:=b8cc24c9574d809e7279c3be349795c5d5ceb6fdf19ca709f80cde50e47de314
|
2005-03-31 22:25:58 +00:00
|
|
|
|
2018-08-13 11:14:17 +00:00
|
|
|
PKG_BUILD_DEPENDS:=BUSYBOX_CONFIG_PAM:libpam
|
2010-09-07 10:00:34 +00:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
2023-02-02 20:33:38 +00:00
|
|
|
PKG_BUILD_FLAGS:=lto
|
2014-06-30 08:19:48 +00:00
|
|
|
PKG_CHECK_FORMAT_SECURITY:=0
|
2010-09-07 10:00:34 +00:00
|
|
|
|
2014-11-03 09:56:44 +00:00
|
|
|
PKG_LICENSE:=GPL-2.0
|
2012-10-19 15:34:28 +00:00
|
|
|
PKG_LICENSE_FILES:=LICENSE archival/libarchive/bz/LICENSE
|
2017-09-28 02:55:46 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:busybox:busybox
|
2012-10-19 15:34:28 +00:00
|
|
|
|
2020-12-23 22:58:01 +00:00
|
|
|
BUSYBOX_SYM=$(if $(CONFIG_BUSYBOX_CUSTOM),CONFIG,DEFAULT)
|
|
|
|
BUSYBOX_IF_ENABLED=$(if $(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_$(1)),$(2))
|
|
|
|
|
2020-08-07 21:13:01 +00:00
|
|
|
ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_FEATURE_SUID),)
|
|
|
|
PKG_FILE_MODES:=/bin/busybox:root:root:4755
|
|
|
|
endif
|
|
|
|
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-03-31 22:25:58 +00:00
|
|
|
|
2014-01-31 13:50:16 +00:00
|
|
|
ifeq ($(DUMP),)
|
2021-05-09 20:28:15 +00:00
|
|
|
STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell grep '^CONFIG_BUSYBOX_' $(TOPDIR)/.config | $(MKHASH) md5)
|
2014-01-31 13:50:16 +00:00
|
|
|
endif
|
|
|
|
|
2019-06-14 01:49:42 +00:00
|
|
|
# All files provided by busybox will serve as fallback alternatives by opkg.
|
|
|
|
# There should be no need to enumerate ALTERNATIVES entries here
|
2020-08-19 21:40:27 +00:00
|
|
|
define Package/busybox/Default
|
2006-09-24 20:49:31 +00:00
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
2016-06-07 06:58:31 +00:00
|
|
|
MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
2006-09-24 20:49:31 +00:00
|
|
|
TITLE:=Core utilities for embedded Linux
|
|
|
|
URL:=http://busybox.net/
|
2018-08-13 11:14:17 +00:00
|
|
|
DEPENDS:=+BUSYBOX_CONFIG_PAM:libpam +BUSYBOX_CONFIG_NTPD:jsonfilter
|
2020-10-25 17:24:03 +00:00
|
|
|
USERID:=ntp=123:ntp=123
|
2020-08-19 21:40:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/busybox
|
|
|
|
$(call Package/busybox/Default)
|
|
|
|
CONFLICTS:=busybox-selinux
|
|
|
|
VARIANT:=default
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/busybox-selinux
|
|
|
|
$(call Package/busybox/Default)
|
|
|
|
TITLE += with SELinux support
|
|
|
|
DEPENDS += +libselinux
|
|
|
|
VARIANT:=selinux
|
|
|
|
PROVIDES:=busybox
|
2006-10-10 15:30:50 +00:00
|
|
|
endef
|
|
|
|
|
2006-10-10 15:45:36 +00:00
|
|
|
define Package/busybox/description
|
2007-09-07 08:34:51 +00:00
|
|
|
The Swiss Army Knife of embedded Linux.
|
|
|
|
It slices, it dices, it makes Julian Fries.
|
2006-10-10 15:45:36 +00:00
|
|
|
endef
|
|
|
|
|
2006-10-10 15:30:50 +00:00
|
|
|
define Package/busybox/config
|
2010-04-16 10:42:10 +00:00
|
|
|
source "$(SOURCE)/Config.in"
|
2006-04-14 01:22:55 +00:00
|
|
|
endef
|
2005-03-31 22:25:58 +00:00
|
|
|
|
2021-05-05 23:43:55 +00:00
|
|
|
ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_FEATURE_SYSLOG)$(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_FEATURE_SYSLOGD_CFG),)
|
|
|
|
define Package/busybox/conffiles/syslog
|
2018-12-20 20:04:43 +00:00
|
|
|
/etc/syslog.conf
|
|
|
|
endef
|
2021-05-05 23:43:55 +00:00
|
|
|
endif
|
2020-08-19 21:40:27 +00:00
|
|
|
|
2021-05-05 23:43:55 +00:00
|
|
|
ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_CROND),)
|
|
|
|
define Package/busybox/conffiles/crond
|
|
|
|
/etc/crontabs/
|
|
|
|
endef
|
2018-12-20 20:04:43 +00:00
|
|
|
endif
|
|
|
|
|
2021-05-05 23:43:55 +00:00
|
|
|
define Package/busybox/conffiles
|
|
|
|
$(Package/busybox/conffiles/syslog)
|
|
|
|
$(Package/busybox/conffiles/crond)
|
|
|
|
endef
|
|
|
|
|
|
|
|
Package/busybox-selinux/conffiles = $(Package/busybox/conffiles)
|
|
|
|
|
2018-07-11 16:30:03 +00:00
|
|
|
ifndef CONFIG_USE_MUSL
|
2014-01-31 13:50:16 +00:00
|
|
|
LDLIBS:=m crypt
|
2018-07-11 16:30:03 +00:00
|
|
|
endif
|
|
|
|
|
2017-12-10 17:01:42 +00:00
|
|
|
LDLIBS += $(call BUSYBOX_IF_ENABLED,PAM,pam pam_misc pthread)
|
2014-08-18 13:10:08 +00:00
|
|
|
|
2021-05-20 08:34:28 +00:00
|
|
|
ifeq ($(CONFIG_USE_GLIBC),y)
|
|
|
|
LDLIBS += $(call BUSYBOX_IF_ENABLED,NSLOOKUP,resolv)
|
|
|
|
endif
|
|
|
|
|
2020-08-19 21:40:27 +00:00
|
|
|
ifeq ($(BUILD_VARIANT),selinux)
|
|
|
|
LDLIBS += selinux sepol
|
|
|
|
endif
|
|
|
|
|
2017-12-10 17:01:42 +00:00
|
|
|
MAKE_VARS :=
|
|
|
|
MAKE_FLAGS += \
|
2017-12-10 17:04:53 +00:00
|
|
|
EXTRA_CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS)" \
|
|
|
|
EXTRA_LDFLAGS="$(TARGET_LDFLAGS)" \
|
2017-12-10 17:01:42 +00:00
|
|
|
LDLIBS="$(LDLIBS)" \
|
2018-07-11 16:30:03 +00:00
|
|
|
LD="$(TARGET_CC)" \
|
2017-12-10 17:01:42 +00:00
|
|
|
SKIP_STRIP=y
|
|
|
|
ifneq ($(findstring c,$(OPENWRT_VERBOSE)),)
|
|
|
|
MAKE_FLAGS += V=1
|
2017-04-12 16:02:30 +00:00
|
|
|
endif
|
|
|
|
|
2017-12-10 17:01:42 +00:00
|
|
|
define Build/Configure
|
2020-01-15 20:17:13 +00:00
|
|
|
rm -f $(PKG_BUILD_DIR)/.config
|
|
|
|
touch $(PKG_BUILD_DIR)/.config
|
2020-01-01 13:34:11 +00:00
|
|
|
ifeq ($(DEVICE_TYPE),nas)
|
|
|
|
echo "CONFIG_HDPARM=y" >> $(PKG_BUILD_DIR)/.config
|
2020-08-19 21:40:27 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(BUILD_VARIANT),selinux)
|
|
|
|
cat $(TOPDIR)/$(SOURCE)/selinux.config >> $(PKG_BUILD_DIR)/.config
|
2020-01-01 13:34:11 +00:00
|
|
|
endif
|
2020-01-15 20:17:13 +00:00
|
|
|
grep 'CONFIG_BUSYBOX_$(BUSYBOX_SYM)' $(TOPDIR)/.config | sed -e "s,\\(# \)\\?CONFIG_BUSYBOX_$(BUSYBOX_SYM)_\\(.*\\),\\1CONFIG_\\2,g" >> $(PKG_BUILD_DIR)/.config
|
2017-12-10 17:01:42 +00:00
|
|
|
yes 'n' | $(MAKE) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS) oldconfig
|
2009-03-22 20:18:19 +00:00
|
|
|
endef
|
|
|
|
|
2018-07-11 16:30:03 +00:00
|
|
|
define Build/Compile
|
|
|
|
$(call Build/Compile/Default, \
|
|
|
|
CONFIG_PREFIX="$(PKG_INSTALL_DIR)" \
|
|
|
|
all install \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2009-03-22 20:18:19 +00:00
|
|
|
define Package/busybox/install
|
2007-01-08 00:53:24 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
2019-03-01 17:59:31 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2009-03-22 20:18:19 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
2021-05-05 23:43:55 +00:00
|
|
|
ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_FEATURE_SYSLOG)$(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_FEATURE_SYSLOGD_CFG),)
|
|
|
|
touch $(1)/etc/syslog.conf
|
|
|
|
endif
|
2017-04-04 13:05:11 +00:00
|
|
|
ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_CROND),)
|
2013-12-17 17:17:00 +00:00
|
|
|
$(INSTALL_BIN) ./files/cron $(1)/etc/init.d/cron
|
2021-05-05 23:43:55 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/crontabs
|
2017-02-06 22:26:49 +00:00
|
|
|
endif
|
2017-04-04 13:05:11 +00:00
|
|
|
ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_NTPD),)
|
2013-12-17 17:17:00 +00:00
|
|
|
$(INSTALL_BIN) ./files/sysntpd $(1)/etc/init.d/sysntpd
|
2014-11-28 11:41:25 +00:00
|
|
|
$(INSTALL_BIN) ./files/ntpd-hotplug $(1)/usr/sbin/ntpd-hotplug
|
2021-01-01 12:45:48 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/capabilities $(1)/usr/share/acl.d
|
2020-10-19 20:22:30 +00:00
|
|
|
$(INSTALL_DATA) ./files/ntpd.capabilities $(1)/etc/capabilities/ntpd.json
|
2021-01-01 12:45:48 +00:00
|
|
|
$(INSTALL_DATA) ./files/ntpd_acl.json $(1)/usr/share/acl.d/ntpd.json
|
2017-02-06 22:26:49 +00:00
|
|
|
endif
|
2006-05-31 23:36:37 +00:00
|
|
|
-rm -rf $(1)/lib64
|
2006-04-14 03:03:32 +00:00
|
|
|
endef
|
|
|
|
|
2020-08-19 21:40:27 +00:00
|
|
|
Package/busybox-selinux/install = $(Package/busybox/install)
|
|
|
|
|
2006-04-14 03:03:32 +00:00
|
|
|
$(eval $(call BuildPackage,busybox))
|
2020-08-19 21:40:27 +00:00
|
|
|
$(eval $(call BuildPackage,busybox-selinux))
|