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 ucert
/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 $(foreach feed
,$(FEEDS_AVAILABLE
),CONFIG_FEED_
$(feed
))
30 include $(INCLUDE_DIR
)/package.mk
33 STAMP_CONFIGURED
:=$(strip $(STAMP_CONFIGURED
))_
$(shell echo
$(CONFIG_TARGET_INIT_PATH
) | mkhash md5
)
37 define Package
/base-files
40 DEPENDS
:=+netifd
+libc
+procd
+jsonfilter
+SIGNED_PACKAGES
:usign
+SIGNED_PACKAGES
:openwrt-keyring
+NAND_SUPPORT
:ubi-utils
+fstools
+fwtool
41 TITLE
:=Base filesystem for OpenWrt
42 URL
:=http
://openwrt.org
/
43 VERSION
:=$(PKG_RELEASE
)-$(REVISION
)
46 define Package
/base-files
/conffiles
56 /etc
/iproute2
/rt_protos
57 /etc
/iproute2
/rt_tables
69 $(call
$(TARGET
)/conffiles
)
72 define Package
/base-files
/description
73 This package contains a base filesystem and system scripts for OpenWrt.
76 define ImageConfigOptions
77 mkdir
-p
$(1)/lib
/preinit
78 echo
'pi_suppress_stderr="$(CONFIG_TARGET_PREINIT_SUPPRESS_STDERR)"' >$(1)/lib
/preinit
/00_preinit.conf
79 echo
'fs_failsafe_wait_timeout=$(if $(CONFIG_TARGET_PREINIT_TIMEOUT),$(CONFIG_TARGET_PREINIT_TIMEOUT),2)' >>$(1)/lib
/preinit
/00_preinit.conf
80 echo
'pi_init_path="$(TARGET_INIT_PATH)"' >>$(1)/lib
/preinit
/00_preinit.conf
81 echo
'pi_init_env=$(if $(CONFIG_TARGET_INIT_ENV),$(CONFIG_TARGET_INIT_ENV),"")' >>$(1)/lib
/preinit
/00_preinit.conf
82 echo
'pi_init_cmd=$(if $(CONFIG_TARGET_INIT_CMD),$(CONFIG_TARGET_INIT_CMD),"/sbin/init")' >>$(1)/lib
/preinit
/00_preinit.conf
83 echo
'pi_init_suppress_stderr="$(CONFIG_TARGET_INIT_SUPPRESS_STDERR)"' >>$(1)/lib
/preinit
/00_preinit.conf
84 echo
'pi_ifname=$(if $(CONFIG_TARGET_PREINIT_IFNAME),$(CONFIG_TARGET_PREINIT_IFNAME),"")' >>$(1)/lib
/preinit
/00_preinit.conf
85 echo
'pi_ip=$(if $(CONFIG_TARGET_PREINIT_IP),$(CONFIG_TARGET_PREINIT_IP),"192.168.1.1")' >>$(1)/lib
/preinit
/00_preinit.conf
86 echo
'pi_netmask=$(if $(CONFIG_TARGET_PREINIT_NETMASK),$(CONFIG_TARGET_PREINIT_NETMASK),"255.255.255.0")' >>$(1)/lib
/preinit
/00_preinit.conf
87 echo
'pi_broadcast=$(if $(CONFIG_TARGET_PREINIT_BROADCAST),$(CONFIG_TARGET_PREINIT_BROADCAST),"192.168.1.255")' >>$(1)/lib
/preinit
/00_preinit.conf
88 echo
'pi_preinit_net_messages="$(CONFIG_TARGET_PREINIT_SHOW_NETMSG)"' >>$(1)/lib
/preinit
/00_preinit.conf
89 echo
'pi_preinit_no_failsafe_netmsg="$(CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG)"' >>$(1)/lib
/preinit
/00_preinit.conf
90 echo
'pi_preinit_no_failsafe="$(CONFIG_TARGET_PREINIT_DISABLE_FAILSAFE)"' >>$(1)/lib
/preinit
/00_preinit.conf
94 mkdir
-p
$(PKG_BUILD_DIR
)
97 define Build
/Compile
/Default
100 Build
/Compile
= $(Build
/Compile
/Default
)
102 ifdef CONFIG_SIGNED_PACKAGES
103 define Build
/Configure
104 [ -s
$(BUILD_KEY
) -a
-s
$(BUILD_KEY
).pub
] || \
105 $(STAGING_DIR_HOST
)/bin
/usign
-G
-s
$(BUILD_KEY
) -p
$(BUILD_KEY
).pub
-c
"Local build key"
107 [ -s
$(BUILD_KEY
).ucert
] || \
108 $(STAGING_DIR_HOST
)/bin
/ucert
-I
-c
$(BUILD_KEY
).ucert
-p
$(BUILD_KEY
).pub
-s
$(BUILD_KEY
)
112 ifndef CONFIG_BUILDBOT
113 define Package
/base-files
/install-key
114 mkdir
-p
$(1)/etc
/opkg
/keys
115 $(CP
) $(BUILD_KEY
).pub
$(1)/etc
/opkg
/keys
/`$(STAGING_DIR_HOST)/bin/usign -F -p $(BUILD_KEY).pub`
121 ifeq ($(CONFIG_NAND_SUPPORT
),)
122 define Package
/base-files
/nand-support
123 rm -f
$(1)/lib
/upgrade
/nand.sh
127 define Package
/base-files
/install
128 $(CP
) .
/files
/* $(1)/
129 $(Package
/base-files
/install-key
)
130 $(Package
/base-files
/nand-support
)
131 if
[ -d
$(GENERIC_PLATFORM_DIR
)/base-files
/.
]; then \
132 $(CP
) $(GENERIC_PLATFORM_DIR
)/base-files
/* $(1)/; \
134 if
[ -d
$(PLATFORM_DIR
)/base-files
/.
]; then \
135 $(CP
) $(PLATFORM_DIR
)/base-files
/* $(1)/; \
137 $(if
$(filter-out $(PLATFORM_DIR
),$(PLATFORM_SUBDIR
)), \
138 if
[ -d
$(PLATFORM_SUBDIR
)/base-files
/.
]; then \
139 $(CP
) $(PLATFORM_SUBDIR
)/base-files
/* $(1)/; \
143 $(VERSION_SED_SCRIPT
) \
145 $(1)/etc
/openwrt_version \
146 $(1)/usr
/lib
/os-release
148 $(VERSION_SED_SCRIPT
) \
149 $(1)/etc
/openwrt_release \
150 $(1)/etc
/device_info \
151 $(1)/usr
/lib
/os-release
153 $(SED
) "s#%PATH%#$(TARGET_INIT_PATH)#g" \
154 $(1)/sbin
/hotplug-call \
158 mkdir
-p
$(1)/CONTROL
160 mkdir
-p
$(1)/etc
/config
161 mkdir
-p
$(1)/etc
/crontabs
162 mkdir
-p
$(1)/etc
/rc.d
163 mkdir
-p
$(1)/overlay
164 mkdir
-p
$(1)/lib
/firmware
165 $(if
$(LIB_SUFFIX
),-$(LN
) lib
$(1)/lib
$(LIB_SUFFIX
))
169 mkdir
-p
$(1)/usr
/lib
170 $(if
$(LIB_SUFFIX
),-$(LN
) lib
$(1)/usr
/lib
$(LIB_SUFFIX
))
171 mkdir
-p
$(1)/usr
/bin
175 $(LN
) /proc
/mounts
$(1)/etc
/mtab
179 $(LN
) /tmp
/resolv.conf
/tmp
/TZ
/tmp
/localtime
$(1)/etc
/
181 chmod
0600 $(1)/etc
/shadow
184 $(call ImageConfigOptions
,$(1))
185 $(call Package
/base-files
/install-target
,$(1))
186 for conffile in
$(1)/etc
/config
/*; do \
187 if
[ -f
"$$$$conffile" ]; then \
188 grep
"$$$${conffile##$(1)}" $(1)/CONTROL
/conffiles || \
189 echo
"$$$${conffile##$(1)}" >> $(1)/CONTROL
/conffiles
; \
193 $(if
$(CONFIG_INCLUDE_CONFIG
), \
194 echo
-e
"# Build configuration for board $(BOARD)/$(SUBTARGET)/$(PROFILE)\n" >$(1)/etc
/build.config
; \
195 cat
$(BIN_DIR
)/config.buildinfo
>>$(1)/etc
/build.config
; \
196 cat
$(BIN_DIR
)/feeds.buildinfo
>>$(1)/etc
/build.feeds
; \
197 cat
$(BIN_DIR
)/version.buildinfo
>>$(1)/etc
/build.version
)
199 $(if
$(CONFIG_CLEAN_IPKG
),, \
200 mkdir
-p
$(1)/etc
/opkg
; \
201 $(call FeedSourcesAppend
,$(1)/etc
/opkg
/distfeeds.conf
); \
202 $(VERSION_SED_SCRIPT
) $(1)/etc
/opkg
/distfeeds.conf
)
203 $(if
$(CONFIG_IPK_FILES_CHECKSUMS
),, \
204 rm -f
$(1)/sbin
/pkg_check
)
208 -include $(PLATFORM_DIR
)/base-files.mk
209 -include $(PLATFORM_SUBDIR
)/base-files.mk
212 $(eval
$(call BuildPackage
,base-files
))