2 # Copyright (C) 2007-2016 OpenWrt.org
3 # Copyright (C) 2010 Vertical Communications
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
10 include $(INCLUDE_DIR
)/kernel.mk
11 include $(INCLUDE_DIR
)/version.mk
12 include $(INCLUDE_DIR
)/feeds.mk
18 PKG_FILE_DEPENDS
:=$(PLATFORM_DIR
)/ $(GENERIC_PLATFORM_DIR
)/base-files
/
19 PKG_BUILD_DEPENDS
:=usign
/host
22 # Extend depends from version.mk
23 PKG_CONFIG_DEPENDS
+= \
24 CONFIG_SIGNED_PACKAGES CONFIG_TARGET_INIT_PATH CONFIG_TARGET_PREINIT_DISABLE_FAILSAFE \
27 CONFIG_PER_FEED_REPO \
28 CONFIG_PER_FEED_REPO_ADD_DISABLED \
29 CONFIG_PER_FEED_REPO_ADD_COMMENTED \
30 $(foreach feed
,$(FEEDS_INSTALLED
),CONFIG_FEED_
$(feed
))
32 include $(INCLUDE_DIR
)/package.mk
35 STAMP_CONFIGURED
:=$(strip $(STAMP_CONFIGURED
))_
$(shell echo
$(CONFIG_TARGET_INIT_PATH
) | mkhash md5
)
39 define Package
/base-files
42 DEPENDS
:=+netifd
+libc
+procd
+jsonfilter
+SIGNED_PACKAGES
:usign
+SIGNED_PACKAGES
:lede-keyring
+NAND_SUPPORT
:ubi-utils
+fstools
+fwtool
43 TITLE
:=Base filesystem for OpenWrt
44 URL
:=http
://openwrt.org
/
45 VERSION
:=$(PKG_RELEASE
)-$(REVISION
)
48 define Package
/base-files
/conffiles
57 /etc
/iproute2
/rt_protos
58 /etc
/iproute2
/rt_tables
69 /etc
/sysctl.d
/local.conf
71 $(call
$(TARGET
)/conffiles
)
74 define Package
/base-files
/description
75 This package contains a base filesystem and system scripts for OpenWrt.
78 define ImageConfigOptions
79 mkdir
-p
$(1)/lib
/preinit
80 echo
'pi_suppress_stderr="$(CONFIG_TARGET_PREINIT_SUPPRESS_STDERR)"' >$(1)/lib
/preinit
/00_preinit.conf
81 echo
'fs_failsafe_wait_timeout=$(if $(CONFIG_TARGET_PREINIT_TIMEOUT),$(CONFIG_TARGET_PREINIT_TIMEOUT),2)' >>$(1)/lib
/preinit
/00_preinit.conf
82 echo
'pi_init_path="$(TARGET_INIT_PATH)"' >>$(1)/lib
/preinit
/00_preinit.conf
83 echo
'pi_init_env=$(if $(CONFIG_TARGET_INIT_ENV),$(CONFIG_TARGET_INIT_ENV),"")' >>$(1)/lib
/preinit
/00_preinit.conf
84 echo
'pi_init_cmd=$(if $(CONFIG_TARGET_INIT_CMD),$(CONFIG_TARGET_INIT_CMD),"/sbin/init")' >>$(1)/lib
/preinit
/00_preinit.conf
85 echo
'pi_init_suppress_stderr="$(CONFIG_TARGET_INIT_SUPPRESS_STDERR)"' >>$(1)/lib
/preinit
/00_preinit.conf
86 echo
'pi_ifname=$(if $(CONFIG_TARGET_PREINIT_IFNAME),$(CONFIG_TARGET_PREINIT_IFNAME),"")' >>$(1)/lib
/preinit
/00_preinit.conf
87 echo
'pi_ip=$(if $(CONFIG_TARGET_PREINIT_IP),$(CONFIG_TARGET_PREINIT_IP),"192.168.1.1")' >>$(1)/lib
/preinit
/00_preinit.conf
88 echo
'pi_netmask=$(if $(CONFIG_TARGET_PREINIT_NETMASK),$(CONFIG_TARGET_PREINIT_NETMASK),"255.255.255.0")' >>$(1)/lib
/preinit
/00_preinit.conf
89 echo
'pi_broadcast=$(if $(CONFIG_TARGET_PREINIT_BROADCAST),$(CONFIG_TARGET_PREINIT_BROADCAST),"192.168.1.255")' >>$(1)/lib
/preinit
/00_preinit.conf
90 echo
'pi_preinit_net_messages="$(CONFIG_TARGET_PREINIT_SHOW_NETMSG)"' >>$(1)/lib
/preinit
/00_preinit.conf
91 echo
'pi_preinit_no_failsafe_netmsg="$(CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG)"' >>$(1)/lib
/preinit
/00_preinit.conf
92 echo
'pi_preinit_no_failsafe="$(CONFIG_TARGET_PREINIT_DISABLE_FAILSAFE)"' >>$(1)/lib
/preinit
/00_preinit.conf
96 mkdir
-p
$(PKG_BUILD_DIR
)
99 define Build
/Compile
/Default
102 Build
/Compile
= $(Build
/Compile
/Default
)
104 ifdef CONFIG_SIGNED_PACKAGES
105 define Build
/Configure
106 [ -s
$(BUILD_KEY
) -a
-s
$(BUILD_KEY
).pub
] || \
107 $(STAGING_DIR_HOST
)/bin
/usign
-G
-s
$(BUILD_KEY
) -p
$(BUILD_KEY
).pub
-c
"Local build key"
111 define Package
/base-files
/install-key
112 mkdir
-p
$(1)/etc
/opkg
/keys
113 $(CP
) $(BUILD_KEY
).pub
$(1)/etc
/opkg
/keys
/`$(STAGING_DIR_HOST)/bin/usign -F -p $(BUILD_KEY).pub`
118 ifeq ($(CONFIG_NAND_SUPPORT
),)
119 define Package
/base-files
/nand-support
120 rm -f
$(1)/lib
/upgrade
/nand.sh
124 define Package
/base-files
/install
125 $(CP
) .
/files
/* $(1)/
126 $(Package
/base-files
/install-key
)
127 $(Package
/base-files
/nand-support
)
128 if
[ -d
$(GENERIC_PLATFORM_DIR
)/base-files
/.
]; then \
129 $(CP
) $(GENERIC_PLATFORM_DIR
)/base-files
/* $(1)/; \
131 if
[ -d
$(PLATFORM_DIR
)/base-files
/.
]; then \
132 $(CP
) $(PLATFORM_DIR
)/base-files
/* $(1)/; \
134 $(if
$(filter-out $(PLATFORM_DIR
),$(PLATFORM_SUBDIR
)), \
135 if
[ -d
$(PLATFORM_SUBDIR
)/base-files
/.
]; then \
136 $(CP
) $(PLATFORM_SUBDIR
)/base-files
/* $(1)/; \
142 $(1)/etc
/openwrt_version \
143 $(1)/usr
/lib
/os-release
145 $(VERSION_SED_SCRIPT
) \
146 $(1)/etc
/openwrt_release \
147 $(1)/etc
/device_info \
148 $(1)/usr
/lib
/os-release
150 $(SED
) "s#%PATH%#$(TARGET_INIT_PATH)#g" \
151 $(1)/sbin
/hotplug-call \
155 mkdir
-p
$(1)/CONTROL
157 mkdir
-p
$(1)/etc
/config
158 mkdir
-p
$(1)/etc
/crontabs
159 mkdir
-p
$(1)/etc
/rc.d
160 mkdir
-p
$(1)/overlay
161 mkdir
-p
$(1)/lib
/firmware
162 $(if
$(LIB_SUFFIX
),-$(LN
) lib
$(1)/lib
$(LIB_SUFFIX
))
166 mkdir
-p
$(1)/usr
/lib
167 $(if
$(LIB_SUFFIX
),-$(LN
) lib
$(1)/usr
/lib
$(LIB_SUFFIX
))
168 mkdir
-p
$(1)/usr
/bin
172 $(LN
) /proc
/mounts
$(1)/etc
/mtab
176 $(LN
) /tmp
/resolv.conf
/tmp
/TZ
/tmp
/localtime
$(1)/etc
/
178 chmod
0600 $(1)/etc
/shadow
181 $(call ImageConfigOptions
,$(1))
182 $(call Package
/base-files
/install-target
,$(1))
183 for conffile in
$(1)/etc
/config
/*; do \
184 if
[ -f
"$$$$conffile" ]; then \
185 grep
"$$$${conffile##$(1)}" $(1)/CONTROL
/conffiles || \
186 echo
"$$$${conffile##$(1)}" >> $(1)/CONTROL
/conffiles
; \
190 $(if
$(CONFIG_INCLUDE_CONFIG
), \
191 echo
-e
"# Build configuration for board $(BOARD)/$(SUBTARGET)/$(PROFILE)\n" >$(1)/etc
/build.config
; \
192 cat
$(BIN_DIR
)/config.seed
>>$(1)/etc
/build.config
)
194 $(if
$(CONFIG_CLEAN_IPKG
),, \
195 mkdir
-p
$(1)/etc
/opkg
; \
196 $(call FeedSourcesAppend
,$(1)/etc
/opkg
/distfeeds.conf
); \
197 $(VERSION_SED
) $(1)/etc
/opkg
/distfeeds.conf
)
201 -include $(PLATFORM_DIR
)/base-files.mk
202 -include $(PLATFORM_SUBDIR
)/base-files.mk
205 $(eval
$(call BuildPackage
,base-files
))