129 lines
3.4 KiB
Makefile
Raw Normal View History

2017-09-06 19:19:45 +08:00
#
# Copyright (C) 2006-2016 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=busybox
2020-07-02 23:30:56 +08:00
PKG_VERSION:=1.31.1
2018-09-07 13:43:55 +08:00
PKG_RELEASE:=1
2017-09-06 19:19:45 +08:00
PKG_FLAGS:=essential
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=https://www.busybox.net/downloads \
http://sources.buildroot.net
2020-07-02 23:30:56 +08:00
PKG_HASH:=d0f940a72f648943c1f2211e0e3117387c31d765137d92bd8284a3fb9752a998
2017-09-06 19:19:45 +08:00
2020-07-02 23:30:56 +08:00
PKG_BUILD_DEPENDS:=BUSYBOX_CONFIG_PAM:libpam
2017-09-06 19:19:45 +08:00
PKG_BUILD_PARALLEL:=1
PKG_CHECK_FORMAT_SECURITY:=0
#Busybox use it's own PIE config flag and LDFLAGS are used with ld, not gcc.
PKG_ASLR_PIE:=0
2017-09-06 19:19:45 +08:00
PKG_LICENSE:=GPL-2.0
PKG_LICENSE_FILES:=LICENSE archival/libarchive/bz/LICENSE
2018-01-15 18:26:41 +08:00
PKG_CPE_ID:=cpe:/a:busybox:busybox
2017-09-06 19:19:45 +08:00
include $(INCLUDE_DIR)/package.mk
ifeq ($(DUMP),)
STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell grep '^CONFIG_BUSYBOX_' $(TOPDIR)/.config | mkhash md5)
endif
2018-01-15 18:26:41 +08:00
BUSYBOX_SYM=$(if $(CONFIG_BUSYBOX_CUSTOM),CONFIG,DEFAULT)
BUSYBOX_IF_ENABLED=$(if $(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_$(1)),$(2))
2017-09-06 19:19:45 +08:00
2020-07-02 23:30:56 +08:00
# All files provided by busybox will serve as fallback alternatives by opkg.
# There should be no need to enumerate ALTERNATIVES entries here
2017-09-06 19:19:45 +08:00
define Package/busybox
SECTION:=base
CATEGORY:=Base system
MAINTAINER:=Felix Fietkau <nbd@nbd.name>
TITLE:=Core utilities for embedded Linux
URL:=http://busybox.net/
2020-07-02 23:30:56 +08:00
DEPENDS:=+BUSYBOX_CONFIG_PAM:libpam +BUSYBOX_CONFIG_NTPD:jsonfilter
2017-09-06 19:19:45 +08:00
MENU:=1
endef
define Package/busybox/description
The Swiss Army Knife of embedded Linux.
It slices, it dices, it makes Julian Fries.
endef
define Package/busybox/config
source "$(SOURCE)/Config.in"
endef
2020-07-02 23:30:56 +08:00
ifdef CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOG
define Package/busybox/conffiles
/etc/syslog.conf
endef
endif
2017-09-06 19:19:45 +08:00
# don't create a version string containing the actual timestamp
export KCONFIG_NOTIMESTAMP=1
2018-09-07 13:43:55 +08:00
ifndef CONFIG_USE_MUSL
2017-09-06 19:19:45 +08:00
LDLIBS:=m crypt
2018-09-07 13:43:55 +08:00
endif
2018-01-15 18:26:41 +08:00
LDLIBS += $(call BUSYBOX_IF_ENABLED,PAM,pam pam_misc pthread)
ifeq ($(CONFIG_USE_GLIBC),y)
LDLIBS += $(call BUSYBOX_IF_ENABLED,NSLOOKUP_OPENWRT,resolv)
2017-09-06 19:19:45 +08:00
endif
2018-09-07 13:43:55 +08:00
TARGET_CFLAGS += -flto
TARGET_LDFLAGS += -flto=jobserver -fuse-linker-plugin
2018-01-15 18:26:41 +08:00
MAKE_VARS :=
MAKE_FLAGS += \
EXTRA_CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS)" \
EXTRA_LDFLAGS="$(TARGET_LDFLAGS)" \
LDLIBS="$(LDLIBS)" \
2018-09-07 13:43:55 +08:00
LD="$(TARGET_CC)" \
2018-01-15 18:26:41 +08:00
SKIP_STRIP=y
ifneq ($(findstring c,$(OPENWRT_VERBOSE)),)
MAKE_FLAGS += V=1
endif
2018-01-15 18:26:41 +08:00
define Build/Configure
2020-07-02 23:30:56 +08:00
rm -f $(PKG_BUILD_DIR)/.config
touch $(PKG_BUILD_DIR)/.config
ifeq ($(DEVICE_TYPE),nas)
echo "CONFIG_HDPARM=y" >> $(PKG_BUILD_DIR)/.config
endif
grep 'CONFIG_BUSYBOX_$(BUSYBOX_SYM)' $(TOPDIR)/.config | sed -e "s,\\(# \)\\?CONFIG_BUSYBOX_$(BUSYBOX_SYM)_\\(.*\\),\\1CONFIG_\\2,g" >> $(PKG_BUILD_DIR)/.config
2018-01-15 18:26:41 +08:00
yes 'n' | $(MAKE) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS) oldconfig
2017-09-06 19:19:45 +08:00
endef
2018-09-07 13:43:55 +08:00
define Build/Compile
$(call Build/Compile/Default, \
CONFIG_PREFIX="$(PKG_INSTALL_DIR)" \
all install \
)
endef
2017-09-06 19:19:45 +08:00
define Package/busybox/install
$(INSTALL_DIR) $(1)/etc/init.d
2020-07-02 23:30:56 +08:00
$(INSTALL_DIR) $(1)/usr/sbin
2017-09-06 19:19:45 +08:00
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_CROND),)
$(INSTALL_BIN) ./files/cron $(1)/etc/init.d/cron
endif
ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_NTPD),)
$(INSTALL_BIN) ./files/sysntpd $(1)/etc/init.d/sysntpd
$(INSTALL_BIN) ./files/ntpd-hotplug $(1)/usr/sbin/ntpd-hotplug
2020-07-02 23:30:56 +08:00
endif
ifneq ($(CONFIG_BUSYBOX_$(BUSYBOX_SYM)_FEATURE_SUID),)
$(INSTALL_SUID) $(PKG_INSTALL_DIR)/bin/busybox $(1)/bin/busybox
2017-09-06 19:19:45 +08:00
endif
-rm -rf $(1)/lib64
endef
$(eval $(call BuildPackage,busybox))