2007-09-29 17:27:54 +03:00
|
|
|
#
|
2012-01-08 17:30:37 +02:00
|
|
|
# Copyright (C) 2007-2012 OpenWrt.org
|
2010-01-25 19:11:17 +02:00
|
|
|
# Copyright (C) 2010 Vertical Communications
|
2006-06-27 03:35:46 +03:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-07-18 01:52:59 +03:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
[buildroot] include, base-files, opkg: introduce version configuration to override the embedded version info of generated images
- Introduce new Kconfig symbols VERSION_DIST, VERSION_NICK, VERSION_NUMBER and VERSION_REPO to specify distribution, release name, version and repository for a given build
- Introduce include/version.mk to provide common helpers for packages dealing with versions
- Make opkg use version.mk to populate the opkg.conf template
- Make base-files use version.mk to populate /etc/openwrt_version, /etc/openwrt_release and /etc/banner
The available placeholders are:
%D .. Replace with $(CONFIG_VERSION_DIST), default to "OpenWrt"
%d .. Like %D, but all characters made lowercase and spaces substituted with "_" (e.g. "openwrt")
%N .. Replace with $(CONFIG_VERSION_NICK), default to the build tree release (e.g. "Attitude Adjustment")
%n .. Like %N, but all characters made lowercase and spaces substituted with "_" (e.g. "attitude_adjustment")
%V .. Replace with $(CONFIG_VERSION_NUMBER), default to the build tree release (e.g. "r31262")
%v .. Like %V, but all characters made lowercase and spaces substituted with "_"
%C .. Replace with $(CONFIG_VERSION_NUMBER), default to "Bleeding Edge"
%c .. Like %C, but all characters made lowercase and spaces substituted with "_" (e.g. "bleeding_edge")
%U .. Replace with $(CONFIG_VERSION_REPO), default to "http://downloads.openwrt.org/snapshots/trunk/%T/packages"
%R .. Replace with the current build tree revision (e.g. "r31262" or "75488c4a05b8033cf69e91874a61852db7ba9c6c")
%T .. Replace with the current target (e.g. "ar71xx")
%S .. Replace with the current target/subtarget combo (e.g. "adm5120/router_le")
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31262 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-12 20:31:16 +03:00
|
|
|
include $(INCLUDE_DIR)/version.mk
|
2006-05-31 16:27:11 +03:00
|
|
|
|
2005-07-18 01:52:59 +03:00
|
|
|
PKG_NAME:=base-files
|
2012-06-26 18:25:33 +03:00
|
|
|
PKG_RELEASE:=111
|
2006-09-24 23:49:31 +03:00
|
|
|
|
2009-04-27 18:53:00 +03:00
|
|
|
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
2010-09-06 05:13:19 +03:00
|
|
|
PKG_BUILD_DEPENDS:=opkg/host
|
2005-07-18 01:52:59 +03:00
|
|
|
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-07-24 22:58:14 +03:00
|
|
|
|
2006-05-31 17:32:17 +03:00
|
|
|
ifneq ($(DUMP),1)
|
2007-12-13 08:25:54 +02:00
|
|
|
TARGET:=-$(BOARD)
|
2007-12-23 04:08:34 +02:00
|
|
|
ifneq ($(wildcard $(PLATFORM_DIR)/base-files-$(PROFILE) $(PLATFORM_SUBDIR)/base-files-$(PROFILE)),)
|
|
|
|
TARGET:=$(TARGET)-$(PROFILE)
|
|
|
|
endif
|
2010-05-01 16:29:04 +03:00
|
|
|
ifneq ($(findstring $(ARCH) , mips64 x86_64 ),)
|
2009-05-07 23:21:21 +03:00
|
|
|
LIB_SUFFIX:=64
|
|
|
|
endif
|
2006-05-31 17:32:17 +03:00
|
|
|
endif
|
|
|
|
|
2009-08-20 18:31:22 +03:00
|
|
|
define Package/base-files
|
2006-07-02 16:36:54 +03:00
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
2012-06-10 23:27:30 +03:00
|
|
|
DEPENDS:=+netifd +libc
|
2006-09-24 23:49:31 +03:00
|
|
|
TITLE:=Base filesystem for OpenWrt
|
|
|
|
URL:=http://openwrt.org/
|
2007-12-13 08:25:54 +02:00
|
|
|
VERSION:=$(PKG_RELEASE)-$(REVISION)
|
2006-05-30 23:22:58 +03:00
|
|
|
endef
|
|
|
|
|
2009-08-20 18:31:22 +03:00
|
|
|
define Package/base-files/conffiles
|
2006-06-18 16:38:23 +03:00
|
|
|
/etc/hosts
|
|
|
|
/etc/inittab
|
|
|
|
/etc/group
|
|
|
|
/etc/passwd
|
2010-10-23 18:49:04 +03:00
|
|
|
/etc/shadow
|
2006-06-18 16:38:23 +03:00
|
|
|
/etc/profile
|
|
|
|
/etc/shells
|
|
|
|
/etc/sysctl.conf
|
2010-10-05 10:32:37 +03:00
|
|
|
/etc/rc.local
|
2010-10-06 01:08:23 +03:00
|
|
|
/etc/sysupgrade.conf
|
2010-10-05 22:24:12 +03:00
|
|
|
/etc/config/
|
|
|
|
/etc/dropbear/
|
2011-05-24 12:27:23 +03:00
|
|
|
/etc/crontabs/
|
2006-06-18 16:38:23 +03:00
|
|
|
$(call $(TARGET)/conffiles)
|
|
|
|
endef
|
|
|
|
|
2009-08-20 18:31:22 +03:00
|
|
|
define Package/base-files/description
|
2007-09-07 11:34:51 +03:00
|
|
|
This package contains a base filesystem and system scripts for OpenWrt.
|
|
|
|
endef
|
2009-09-23 05:27:38 +03:00
|
|
|
|
2010-01-26 16:41:26 +02:00
|
|
|
ifneq ($(CONFIG_PREINITOPT),)
|
2010-01-25 19:11:17 +02:00
|
|
|
define ImageConfigOptions
|
|
|
|
mkdir -p $(1)/lib/preinit
|
|
|
|
echo 'pi_suppress_stderr="$(CONFIG_TARGET_PREINIT_SUPPRESS_STDERR)"' >$(1)/lib/preinit/00_preinit.conf
|
|
|
|
echo 'fs_failsafe_wait_timeout=$(if $(CONFIG_TARGET_PREINIT_TIMEOUT),$(CONFIG_TARGET_PREINIT_TIMEOUT),2)' >>$(1)/lib/preinit/00_preinit.conf
|
|
|
|
echo 'pi_init_path=$(if $(CONFIG_TARGET_INIT_PATH),$(CONFIG_TARGET_INIT_PATH),"/bin:/sbin:/usr/bin:/usr/sbin")' >>$(1)/lib/preinit/00_preinit.conf
|
|
|
|
echo 'pi_init_env=$(if $(CONFIG_TARGET_INIT_ENV),$(CONFIG_TARGET_INIT_ENV),"")' >>$(1)/lib/preinit/00_preinit.conf
|
|
|
|
echo 'pi_init_cmd=$(if $(CONFIG_TARGET_INIT_CMD),$(CONFIG_TARGET_INIT_CMD),"/sbin/init")' >>$(1)/lib/preinit/00_preinit.conf
|
|
|
|
echo 'pi_init_suppress_stderr="$(CONFIG_TARGET_INIT_SUPPRESS_STDERR)"' >>$(1)/lib/preinit/00_preinit.conf
|
|
|
|
echo 'pi_ifname=$(if $(CONFIG_TARGET_PREINIT_IFNAME),$(CONFIG_TARGET_PREINIT_IFNAME),"")' >>$(1)/lib/preinit/00_preinit.conf
|
|
|
|
echo 'pi_ip=$(if $(CONFIG_TARGET_PREINIT_IP),$(CONFIG_TARGET_PREINIT_IP),"192.168.1.1")' >>$(1)/lib/preinit/00_preinit.conf
|
|
|
|
echo 'pi_netmask=$(if $(CONFIG_TARGET_PREINIT_NETMASK),$(CONFIG_TARGET_PREINIT_NETMASK),"255.255.255.0")' >>$(1)/lib/preinit/00_preinit.conf
|
2010-01-26 16:41:26 +02:00
|
|
|
echo 'pi_broadcast=$(if $(CONFIG_TARGET_PREINIT_BROADCAST),$(CONFIG_TARGET_PREINIT_BROADCAST),"192.168.1.255")' >>$(1)/lib/preinit/00_preinit.conf
|
2010-01-25 19:11:17 +02:00
|
|
|
echo 'pi_preinit_net_messages="$(CONFIG_TARGET_PREINIT_SHOW_NETMSG)"' >>$(1)/lib/preinit/00_preinit.conf
|
2011-01-18 16:46:25 +02:00
|
|
|
echo 'pi_preinit_no_failsafe_netmsg="$(CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG)"' >>$(1)/lib/preinit/00_preinit.conf
|
2010-01-25 19:11:17 +02:00
|
|
|
endef
|
2010-01-26 16:41:26 +02:00
|
|
|
endif
|
2010-01-25 19:11:17 +02:00
|
|
|
|
2006-05-30 23:22:58 +03:00
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
2012-06-13 19:25:29 +03:00
|
|
|
define Build/Compile/Default
|
2011-03-01 07:40:38 +02:00
|
|
|
|
2006-05-30 23:22:58 +03:00
|
|
|
endef
|
2012-06-13 19:25:29 +03:00
|
|
|
Build/Compile = $(Build/Compile/Default)
|
2006-05-30 23:22:58 +03:00
|
|
|
|
2009-08-20 18:31:22 +03:00
|
|
|
define Package/base-files/install
|
2006-11-23 01:30:57 +02:00
|
|
|
$(CP) ./files/* $(1)/
|
2007-04-24 15:05:52 +03:00
|
|
|
if [ -d $(GENERIC_PLATFORM_DIR)/base-files/. ]; then \
|
|
|
|
$(CP) $(GENERIC_PLATFORM_DIR)/base-files/* $(1)/; \
|
|
|
|
fi
|
2007-09-29 17:27:54 +03:00
|
|
|
if [ -d $(PLATFORM_DIR)/base-files/. ]; then \
|
|
|
|
$(CP) $(PLATFORM_DIR)/base-files/* $(1)/; \
|
2007-03-02 20:17:40 +02:00
|
|
|
fi
|
2007-12-23 04:08:34 +02:00
|
|
|
if [ -d $(PLATFORM_DIR)/base-files-$(PROFILE)/. ]; then \
|
|
|
|
$(CP) $(PLATFORM_DIR)/base-files-$(PROFILE)/* $(1)/; \
|
|
|
|
fi
|
2009-05-04 15:39:21 +03:00
|
|
|
if [ -d $(PLATFORM_DIR)/$(PROFILE)/base-files/. ]; then \
|
|
|
|
$(CP) $(PLATFORM_DIR)/$(PROFILE)/base-files/* $(1)/; \
|
|
|
|
fi
|
2007-09-08 22:55:42 +03:00
|
|
|
$(if $(filter-out $(PLATFORM_DIR),$(PLATFORM_SUBDIR)), \
|
2007-09-29 17:27:54 +03:00
|
|
|
if [ -d $(PLATFORM_SUBDIR)/base-files/. ]; then \
|
|
|
|
$(CP) $(PLATFORM_SUBDIR)/base-files/* $(1)/; \
|
2007-12-23 04:13:57 +02:00
|
|
|
fi; \
|
2007-12-23 04:08:34 +02:00
|
|
|
if [ -d $(PLATFORM_SUBDIR)/base-files-$(PROFILE)/. ]; then \
|
|
|
|
$(CP) $(PLATFORM_SUBDIR)/base-files-$(PROFILE)/* $(1)/; \
|
2009-05-04 15:39:21 +03:00
|
|
|
fi; \
|
|
|
|
if [ -d $(PLATFORM_SUBDIR)/$(PROFILE)/base-files/. ]; then \
|
|
|
|
$(CP) $(PLATFORM_SUBDIR)/$(PROFILE)/base-files/* $(1)/; \
|
2007-12-23 04:08:34 +02:00
|
|
|
fi \
|
2007-09-08 22:55:42 +03:00
|
|
|
)
|
2011-11-10 14:55:01 +02:00
|
|
|
|
[buildroot] include, base-files, opkg: introduce version configuration to override the embedded version info of generated images
- Introduce new Kconfig symbols VERSION_DIST, VERSION_NICK, VERSION_NUMBER and VERSION_REPO to specify distribution, release name, version and repository for a given build
- Introduce include/version.mk to provide common helpers for packages dealing with versions
- Make opkg use version.mk to populate the opkg.conf template
- Make base-files use version.mk to populate /etc/openwrt_version, /etc/openwrt_release and /etc/banner
The available placeholders are:
%D .. Replace with $(CONFIG_VERSION_DIST), default to "OpenWrt"
%d .. Like %D, but all characters made lowercase and spaces substituted with "_" (e.g. "openwrt")
%N .. Replace with $(CONFIG_VERSION_NICK), default to the build tree release (e.g. "Attitude Adjustment")
%n .. Like %N, but all characters made lowercase and spaces substituted with "_" (e.g. "attitude_adjustment")
%V .. Replace with $(CONFIG_VERSION_NUMBER), default to the build tree release (e.g. "r31262")
%v .. Like %V, but all characters made lowercase and spaces substituted with "_"
%C .. Replace with $(CONFIG_VERSION_NUMBER), default to "Bleeding Edge"
%c .. Like %C, but all characters made lowercase and spaces substituted with "_" (e.g. "bleeding_edge")
%U .. Replace with $(CONFIG_VERSION_REPO), default to "http://downloads.openwrt.org/snapshots/trunk/%T/packages"
%R .. Replace with the current build tree revision (e.g. "r31262" or "75488c4a05b8033cf69e91874a61852db7ba9c6c")
%T .. Replace with the current target (e.g. "ar71xx")
%S .. Replace with the current target/subtarget combo (e.g. "adm5120/router_le")
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31262 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-12 20:31:16 +03:00
|
|
|
$(VERSION_SED) \
|
|
|
|
$(1)/etc/banner \
|
|
|
|
$(1)/etc/openwrt_version \
|
|
|
|
$(1)/etc/openwrt_release
|
|
|
|
|
2009-01-13 05:21:25 +02:00
|
|
|
mkdir -p $(1)/CONTROL
|
2006-05-30 23:22:58 +03:00
|
|
|
mkdir -p $(1)/dev
|
|
|
|
mkdir -p $(1)/etc/crontabs
|
2009-07-02 10:24:44 +03:00
|
|
|
mkdir -p $(1)/etc/rc.d
|
2010-03-21 19:16:50 +02:00
|
|
|
mkdir -p $(1)/overlay
|
2007-04-22 18:00:19 +03:00
|
|
|
mkdir -p $(1)/lib/firmware
|
2009-08-01 13:51:19 +03:00
|
|
|
$(if $(LIB_SUFFIX),-ln -s lib $(1)/lib$(LIB_SUFFIX))
|
2006-05-30 23:22:58 +03:00
|
|
|
mkdir -p $(1)/mnt
|
|
|
|
mkdir -p $(1)/proc
|
|
|
|
mkdir -p $(1)/tmp
|
|
|
|
mkdir -p $(1)/usr/lib
|
2009-08-01 13:51:19 +03:00
|
|
|
$(if $(LIB_SUFFIX),-ln -s lib $(1)/usr/lib$(LIB_SUFFIX))
|
2006-05-30 23:22:58 +03:00
|
|
|
mkdir -p $(1)/usr/bin
|
|
|
|
mkdir -p $(1)/sys
|
|
|
|
mkdir -p $(1)/www
|
2007-09-19 22:58:07 +03:00
|
|
|
mkdir -p $(1)/root
|
2006-05-30 23:22:58 +03:00
|
|
|
ln -sf /proc/mounts $(1)/etc/mtab
|
|
|
|
rm -f $(1)/var
|
|
|
|
ln -sf /tmp $(1)/var
|
|
|
|
mkdir -p $(1)/etc
|
2008-06-11 22:59:16 +03:00
|
|
|
ln -sf /tmp/resolv.conf /tmp/fstab /tmp/TZ $(1)/etc/
|
2012-06-05 21:02:00 +03:00
|
|
|
|
|
|
|
chmod 0600 $(1)/etc/shadow
|
|
|
|
chmod 1777 $(1)/tmp
|
|
|
|
|
2010-01-25 19:11:17 +02:00
|
|
|
$(call ImageConfigOptions,$(1))
|
2006-11-23 01:27:29 +02:00
|
|
|
$(call Package/base-files/install-target,$(1))
|
|
|
|
for conffile in $(1)/etc/config/*; do \
|
|
|
|
if [ -f "$$$$conffile" ]; then \
|
2009-09-20 02:04:34 +03:00
|
|
|
grep "$$$${conffile##$(1)}" $(1)/CONTROL/conffiles || \
|
2006-11-23 01:27:29 +02:00
|
|
|
echo "$$$${conffile##$(1)}" >> $(1)/CONTROL/conffiles; \
|
|
|
|
fi \
|
|
|
|
done
|
2006-05-30 23:22:58 +03:00
|
|
|
endef
|
|
|
|
|
2006-11-23 01:27:29 +02:00
|
|
|
ifneq ($(DUMP),1)
|
|
|
|
-include $(PLATFORM_DIR)/base-files.mk
|
|
|
|
endif
|
|
|
|
|
2009-08-20 18:31:22 +03:00
|
|
|
$(eval $(call BuildPackage,base-files))
|