imagebuilder: create cache directory if needed (#18629)
[openwrt/svn-archive/archive.git] / target / imagebuilder / files / Makefile
1 # Makefile for OpenWrt
2 #
3 # Copyright (C) 2007-2015 OpenWrt.org
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 TOPDIR:=${CURDIR}
10 LC_ALL:=C
11 LANG:=C
12 export TOPDIR LC_ALL LANG
13 export OPENWRT_VERBOSE=s
14 all: help
15
16 include $(TOPDIR)/include/host.mk
17
18 ifneq ($(OPENWRT_BUILD),1)
19 override OPENWRT_BUILD=1
20 export OPENWRT_BUILD
21 endif
22
23 include rules.mk
24 include $(INCLUDE_DIR)/debug.mk
25 include $(INCLUDE_DIR)/depends.mk
26
27 include $(INCLUDE_DIR)/version.mk
28 export REVISION
29
30 define Helptext
31 Available Commands:
32 help: This help text
33 info: Show a list of available target profiles
34 clean: Remove images and temporary build files
35 image: Build an image (see below for more information).
36
37 Building images:
38 By default 'make image' will create an image with the default
39 target profile and package set. You can use the following parameters
40 to change that:
41
42 make image PROFILE="<profilename>" # override the default target profile
43 make image PACKAGES="<pkg1> [<pkg2> [<pkg3> ...]]" # include extra packages
44 make image FILES="<path>" # include extra files from <path>
45 make image BIN_DIR="<path>" # alternative output directory for the images
46
47 endef
48 $(eval $(call shexport,Helptext))
49
50 help: FORCE
51 echo "$$$(call shvar,Helptext)"
52
53
54 # override variables from rules.mk
55 PACKAGE_DIR:=$(TOPDIR)/packages
56 OPKG:= \
57 IPKG_NO_SCRIPT=1 \
58 IPKG_TMP="$(TMP_DIR)/ipkgtmp" \
59 IPKG_INSTROOT="$(TARGET_DIR)" \
60 IPKG_CONF_DIR="$(TMP_DIR)" \
61 IPKG_OFFLINE_ROOT="$(TARGET_DIR)" \
62 $(STAGING_DIR_HOST)/bin/opkg \
63 -f $(TOPDIR)/repositories.conf \
64 --force-depends \
65 --force-overwrite \
66 --force-postinstall \
67 --cache $(DL_DIR) \
68 --offline-root $(TARGET_DIR) \
69 --add-dest root:/ \
70 --add-arch all:100 \
71 --add-arch $(ARCH_PACKAGES):200
72
73 define Profile
74 $(eval $(call Profile/Default))
75 $(eval $(call Profile/$(1)))
76 ifeq ($(USER_PROFILE),)
77 USER_PROFILE:=$(1)
78 endif
79 $(1)_NAME:=$(NAME)
80 $(1)_PACKAGES:=$(PACKAGES)
81 PROFILE_NAMES += $(1)
82 PROFILE_LIST += \
83 echo '$(1):'; [ -z '$(NAME)' ] || echo ' $(NAME)'; echo ' Packages: $(PACKAGES)';
84 endef
85
86 include $(INCLUDE_DIR)/target.mk
87
88 _call_info: FORCE
89 echo 'Current Target: "$(BOARD)$(if $(SUBTARGET), ($(BOARDNAME)))"'
90 echo 'Default Packages: $(DEFAULT_PACKAGES)'
91 echo 'Available Profiles:'
92 echo; $(PROFILE_LIST)
93
94 BUILD_PACKAGES:=$(sort $(DEFAULT_PACKAGES) $(USER_PACKAGES) $($(USER_PROFILE)_PACKAGES) kernel)
95 # "-pkgname" in the package list means remove "pkgname" from the package list
96 BUILD_PACKAGES:=$(filter-out $(filter -%,$(BUILD_PACKAGES)) $(patsubst -%,%,$(filter -%,$(BUILD_PACKAGES))),$(BUILD_PACKAGES))
97 PACKAGES:=
98
99 _call_image:
100 echo 'Building images for $(BOARD)$(if $($(USER_PROFILE)_NAME), - $($(USER_PROFILE)_NAME))'
101 echo 'Packages: $(BUILD_PACKAGES)'
102 echo
103 rm -rf $(TARGET_DIR)
104 mkdir -p $(TARGET_DIR) $(BIN_DIR) $(TMP_DIR) $(DL_DIR)
105 if [ ! -f "$(PACKAGE_DIR)/Packages" ] || [ ! -f "$(PACKAGE_DIR)/Packages.gz" ] || [ "`find $(PACKAGE_DIR) -cnewer $(PACKAGE_DIR)/Packages.gz`" ]; then \
106 echo "Package list missing or not up-to-date, generating it.";\
107 $(MAKE) package_index; \
108 else \
109 mkdir -p $(TARGET_DIR)/tmp; \
110 $(OPKG) update || true; \
111 fi
112 $(MAKE) package_install
113 ifneq ($(USER_FILES),)
114 $(MAKE) copy_files
115 endif
116 $(MAKE) package_postinst
117 $(MAKE) build_image
118
119 package_index: FORCE
120 @echo
121 @echo Building package index...
122 @mkdir -p $(TMP_DIR) $(TARGET_DIR)/tmp
123 (cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages && \
124 gzip -9c Packages > Packages.gz \
125 ) >/dev/null 2>/dev/null
126 $(OPKG) update || true
127
128 package_install: FORCE
129 @echo
130 @echo Installing packages...
131 $(OPKG) install $(firstword $(wildcard $(PACKAGE_DIR)/libc_*.ipk $(PACKAGE_DIR)/base/libc_*.ipk))
132 $(OPKG) install $(firstword $(wildcard $(PACKAGE_DIR)/kernel_*.ipk $(PACKAGE_DIR)/base/kernel_*.ipk))
133 $(OPKG) install $(BUILD_PACKAGES)
134 rm -f $(TARGET_DIR)/usr/lib/opkg/lists/*
135
136 copy_files: FORCE
137 @echo
138 @echo Copying extra files
139 @$(call file_copy,$(USER_FILES)/*,$(TARGET_DIR)/)
140
141 package_postinst: FORCE
142 @echo
143 @echo Cleaning up
144 @rm -f $(TARGET_DIR)/tmp/opkg.lock
145 @echo
146 @echo Activating init scripts
147 @mkdir -p $(TARGET_DIR)/etc/rc.d
148 @( \
149 cd $(TARGET_DIR); \
150 for script in ./usr/lib/opkg/info/*.postinst; do \
151 IPKG_INSTROOT=$(TARGET_DIR) $$(which bash) $$script; \
152 done || true \
153 )
154 rm -f $(TARGET_DIR)/usr/lib/opkg/info/*.postinst
155 $(if $(CONFIG_CLEAN_IPKG),rm -rf $(TARGET_DIR)/usr/lib/opkg)
156
157 build_image: FORCE
158 @echo
159 @echo Building images...
160 $(NO_TRACE_MAKE) -C target/linux/$(BOARD)/image install TARGET_BUILD=1 IB=1 \
161 $(if $(USER_PROFILE),PROFILE="$(USER_PROFILE)")
162
163 clean:
164 rm -rf $(TMP_DIR) $(DL_DIR) $(TARGET_DIR) $(BIN_DIR)
165
166
167 info:
168 (unset PROFILE FILES PACKAGES MAKEFLAGS; $(MAKE) -s _call_info)
169
170 image:
171 ifneq ($(PROFILE),)
172 ifeq ($(filter $(PROFILE),$(PROFILE_NAMES)),)
173 @echo 'Profile "$(PROFILE)" does not exist!'
174 @echo 'Use "make info" to get a list of available profile names.'
175 @exit 1
176 endif
177 endif
178 (unset PROFILE FILES PACKAGES MAKEFLAGS; \
179 $(MAKE) _call_image \
180 $(if $(PROFILE),USER_PROFILE="$(PROFILE)") \
181 $(if $(FILES),USER_FILES="$(FILES)") \
182 $(if $(PACKAGES),USER_PACKAGES="$(PACKAGES)") \
183 $(if $(BIN_DIR),BIN_DIR="$(BIN_DIR)"))
184
185 .SILENT: help info image
186