Makefile revision 0198d6ebb457d11797deb414c51b8897c67f7f10
1# Put some miscellaneous rules here
2
3# Pick a reasonable string to use to identify files.
4ifneq "" "$(filter eng.%,$(BUILD_NUMBER))"
5  # BUILD_NUMBER has a timestamp in it, which means that
6  # it will change every time.  Pick a stable value.
7  FILE_NAME_TAG := eng.$(USER)
8else
9  FILE_NAME_TAG := $(BUILD_NUMBER)
10endif
11
12# -----------------------------------------------------------------
13# Define rules to copy PRODUCT_COPY_FILES defined by the product.
14# PRODUCT_COPY_FILES contains words like <source file>:<dest file>.
15# <dest file> is relative to $(PRODUCT_OUT), so it should look like,
16# e.g., "system/etc/file.xml".
17# The filter part means "only eval the copy-one-file rule if this
18# src:dest pair is the first one to match %:dest"
19$(foreach cf,$(PRODUCT_COPY_FILES), \
20  $(eval _src := $(call word-colon,1,$(cf))) \
21  $(eval _dest := $(call word-colon,2,$(cf))) \
22  $(eval _fulldest := $(call append-path,$(PRODUCT_OUT),$(_dest))) \
23  $(if $(filter $(_src):$(_dest),$(firstword $(filter %:$(_dest),$(PRODUCT_COPY_FILES)))), \
24    $(eval $(call copy-one-file,$(_src),$(_fulldest))),) \
25  $(eval ALL_DEFAULT_INSTALLED_MODULES += $(_fulldest)) \
26 )
27
28# -----------------------------------------------------------------
29# docs/index.html
30gen := $(OUT_DOCS)/index.html
31ALL_DOCS += $(gen)
32$(gen): frameworks/base/docs/docs-redirect-index.html
33	@mkdir -p $(dir $@)
34	@cp -f $< $@
35
36# -----------------------------------------------------------------
37# default.prop
38INSTALLED_DEFAULT_PROP_TARGET := $(TARGET_ROOT_OUT)/default.prop
39ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_DEFAULT_PROP_TARGET)
40ADDITIONAL_DEFAULT_PROPERTIES := \
41	$(call collapse-pairs, $(ADDITIONAL_DEFAULT_PROPERTIES))
42
43$(INSTALLED_DEFAULT_PROP_TARGET):
44	@echo Target buildinfo: $@
45	@mkdir -p $(dir $@)
46	$(hide) echo "#" > $@; \
47	        echo "# ADDITIONAL_DEFAULT_PROPERTIES" >> $@; \
48	        echo "#" >> $@;
49	$(hide) $(foreach line,$(ADDITIONAL_DEFAULT_PROPERTIES), \
50		echo "$(line)" >> $@;)
51
52# -----------------------------------------------------------------
53# build.prop
54INSTALLED_BUILD_PROP_TARGET := $(TARGET_OUT)/build.prop
55ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_BUILD_PROP_TARGET)
56ADDITIONAL_BUILD_PROPERTIES := \
57	$(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))
58
59# A list of arbitrary tags describing the build configuration.
60# Force ":=" so we can use +=
61BUILD_VERSION_TAGS := $(BUILD_VERSION_TAGS)
62ifeq ($(TARGET_BUILD_TYPE),debug)
63  BUILD_VERSION_TAGS += debug
64endif
65# Apps are always signed with test keys, and may be re-signed in a post-build
66# step.  If that happens, the "test-keys" tag will be removed by that step.
67BUILD_VERSION_TAGS += test-keys
68BUILD_VERSION_TAGS := $(subst $(space),$(comma),$(sort $(BUILD_VERSION_TAGS)))
69
70# A human-readable string that descibes this build in detail.
71build_desc := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT) $(PLATFORM_VERSION) $(BUILD_ID) $(BUILD_NUMBER) $(BUILD_VERSION_TAGS)
72$(INSTALLED_BUILD_PROP_TARGET): PRIVATE_BUILD_DESC := $(build_desc)
73
74# The string used to uniquely identify this build;  used by the OTA server.
75ifeq (,$(strip $(BUILD_FINGERPRINT)))
76  BUILD_FINGERPRINT := $(PRODUCT_BRAND)/$(TARGET_PRODUCT)/$(TARGET_DEVICE)/$(TARGET_BOOTLOADER_BOARD_NAME):$(PLATFORM_VERSION)/$(BUILD_ID)/$(BUILD_NUMBER):$(TARGET_BUILD_VARIANT)/$(BUILD_VERSION_TAGS)
77endif
78ifneq ($(words $(BUILD_FINGERPRINT)),1)
79  $(error BUILD_FINGERPRINT cannot contain spaces: "$(BUILD_FINGERPRINT)")
80endif
81
82# Display parameters shown under Settings -> About Phone
83ifeq ($(TARGET_BUILD_VARIANT),user)
84  # User builds should show:
85  # release build number or branch.buld_number non-release builds
86
87  # Dev. branches should have DISPLAY_BUILD_NUMBER set
88  ifeq "true" "$(DISPLAY_BUILD_NUMBER)"
89    BUILD_DISPLAY_ID := $(BUILD_ID).$(BUILD_NUMBER)
90  else
91    BUILD_DISPLAY_ID := $(BUILD_ID)
92  endif
93else
94  # Non-user builds should show detailed build information
95  BUILD_DISPLAY_ID := $(build_desc)
96endif
97
98# Selects the first locale in the list given as the argument,
99# and splits it into language and region, which each may be
100# empty.
101define default-locale
102$(subst _, , $(firstword $(1)))
103endef
104
105# Selects the first locale in the list given as the argument
106# and returns the language (or the region)
107define default-locale-language
108$(word 2, 2, $(call default-locale, $(1)))
109endef
110define default-locale-region
111$(word 3, 3, $(call default-locale, $(1)))
112endef
113
114BUILDINFO_SH := build/tools/buildinfo.sh
115$(INSTALLED_BUILD_PROP_TARGET): $(BUILDINFO_SH) $(INTERNAL_BUILD_ID_MAKEFILE)
116	@echo Target buildinfo: $@
117	@mkdir -p $(dir $@)
118	$(hide) TARGET_BUILD_TYPE="$(TARGET_BUILD_VARIANT)" \
119			TARGET_DEVICE="$(TARGET_DEVICE)" \
120			PRODUCT_NAME="$(TARGET_PRODUCT)" \
121			PRODUCT_BRAND="$(PRODUCT_BRAND)" \
122			PRODUCT_DEFAULT_LANGUAGE="$(call default-locale-language,$(PRODUCT_LOCALES))" \
123			PRODUCT_DEFAULT_REGION="$(call default-locale-region,$(PRODUCT_LOCALES))" \
124			PRODUCT_DEFAULT_WIFI_CHANNELS="$(PRODUCT_DEFAULT_WIFI_CHANNELS)" \
125			PRODUCT_MODEL="$(PRODUCT_MODEL)" \
126			PRODUCT_MANUFACTURER="$(PRODUCT_MANUFACTURER)" \
127			PRIVATE_BUILD_DESC="$(PRIVATE_BUILD_DESC)" \
128			BUILD_ID="$(BUILD_ID)" \
129			BUILD_DISPLAY_ID="$(BUILD_DISPLAY_ID)" \
130			BUILD_NUMBER="$(BUILD_NUMBER)" \
131			PLATFORM_VERSION="$(PLATFORM_VERSION)" \
132			PLATFORM_SDK_VERSION="$(PLATFORM_SDK_VERSION)" \
133			PLATFORM_VERSION_CODENAME="$(PLATFORM_VERSION_CODENAME)" \
134			BUILD_VERSION_TAGS="$(BUILD_VERSION_TAGS)" \
135			TARGET_BOOTLOADER_BOARD_NAME="$(TARGET_BOOTLOADER_BOARD_NAME)" \
136			BUILD_FINGERPRINT="$(BUILD_FINGERPRINT)" \
137			TARGET_BOARD_PLATFORM="$(TARGET_BOARD_PLATFORM)" \
138			TARGET_CPU_ABI="$(TARGET_CPU_ABI)" \
139			TARGET_CPU_ABI2="$(TARGET_CPU_ABI2)" \
140	        bash $(BUILDINFO_SH) > $@
141	$(hide) if [ -f $(TARGET_DEVICE_DIR)/system.prop ]; then \
142	          cat $(TARGET_DEVICE_DIR)/system.prop >> $@; \
143	        fi
144	$(if $(ADDITIONAL_BUILD_PROPERTIES), \
145		$(hide) echo >> $@; \
146		        echo "#" >> $@; \
147		        echo "# ADDITIONAL_BUILD_PROPERTIES" >> $@; \
148		        echo "#" >> $@; )
149	$(hide) $(foreach line,$(ADDITIONAL_BUILD_PROPERTIES), \
150		echo "$(line)" >> $@;)
151
152build_desc :=
153
154# -----------------------------------------------------------------
155# sdk-build.prop
156#
157# There are certain things in build.prop that we don't want to
158# ship with the sdk; remove them.
159
160# This must be a list of entire property keys followed by
161# "=" characters, without any internal spaces.
162sdk_build_prop_remove := \
163	ro.build.user= \
164	ro.build.host= \
165	ro.product.brand= \
166	ro.product.manufacturer= \
167	ro.product.device=
168# TODO: Remove this soon-to-be obsolete property
169sdk_build_prop_remove += ro.build.product=
170INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop
171$(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET)
172	@echo SDK buildinfo: $@
173	@mkdir -p $(dir $@)
174	$(hide) grep -v "$(subst $(space),\|,$(strip \
175				$(sdk_build_prop_remove)))" $< > $@.tmp
176	$(hide) for x in $(sdk_build_prop_remove); do \
177				echo "$$x"generic >> $@.tmp; done
178	$(hide) mv $@.tmp $@
179
180# -----------------------------------------------------------------
181# package stats
182PACKAGE_STATS_FILE := $(PRODUCT_OUT)/package-stats.txt
183PACKAGES_TO_STAT := \
184    $(sort $(filter $(TARGET_OUT)/% $(TARGET_OUT_DATA)/%, \
185	$(filter %.jar %.apk, $(ALL_DEFAULT_INSTALLED_MODULES))))
186$(PACKAGE_STATS_FILE): $(PACKAGES_TO_STAT)
187	@echo Package stats: $@
188	@mkdir -p $(dir $@)
189	$(hide) rm -f $@
190	$(hide) build/tools/dump-package-stats $^ > $@
191
192.PHONY: package-stats
193package-stats: $(PACKAGE_STATS_FILE)
194
195# -----------------------------------------------------------------
196# Cert-to-package mapping.  Used by the post-build signing tools.
197name := $(TARGET_PRODUCT)
198ifeq ($(TARGET_BUILD_TYPE),debug)
199  name := $(name)_debug
200endif
201name := $(name)-apkcerts-$(FILE_NAME_TAG)
202intermediates := \
203	$(call intermediates-dir-for,PACKAGING,apkcerts)
204APKCERTS_FILE := $(intermediates)/$(name).txt
205# Depending on the built packages isn't exactly right,
206# but it should guarantee that the apkcerts file is rebuilt
207# if any packages change which certs they're signed with.
208all_built_packages := $(foreach p,$(PACKAGES),$(ALL_MODULES.$(p).BUILT))
209$(APKCERTS_FILE): $(all_built_packages)
210	@echo APK certs list: $@
211	@mkdir -p $(dir $@)
212	@rm -f $@
213	$(hide) $(foreach p,$(PACKAGES),\
214          $(if $(PACKAGES.$(p).EXTERNAL_KEY),\
215	    echo 'name="$(p).apk" certificate="EXTERNAL" \
216	         private_key=""' >> $@;,\
217	    echo 'name="$(p).apk" certificate="$(PACKAGES.$(p).CERTIFICATE)" \
218	         private_key="$(PACKAGES.$(p).PRIVATE_KEY)"' >> $@;))
219
220.PHONY: apkcerts-list
221apkcerts-list: $(APKCERTS_FILE)
222
223# -----------------------------------------------------------------
224# module info file
225ifdef CREATE_MODULE_INFO_FILE
226  MODULE_INFO_FILE := $(PRODUCT_OUT)/module-info.txt
227  $(info Generating $(MODULE_INFO_FILE)...)
228  $(shell rm -f $(MODULE_INFO_FILE))
229  $(foreach m,$(ALL_MODULES), \
230    $(shell echo "NAME=\"$(m)\"" \
231	"PATH=\"$(strip $(ALL_MODULES.$(m).PATH))\"" \
232	"TAGS=\"$(strip $(filter-out _%,$(ALL_MODULES.$(m).TAGS)))\"" \
233	"BUILT=\"$(strip $(ALL_MODULES.$(m).BUILT))\"" \
234	"INSTALLED=\"$(strip $(ALL_MODULES.$(m).INSTALLED))\"" >> $(MODULE_INFO_FILE)))
235endif
236
237# -----------------------------------------------------------------
238
239# The test key is used to sign this package, and as the key required
240# for future OTA packages installed by this system.  Actual product
241# deliverables will be re-signed by hand.  We expect this file to
242# exist with the suffixes ".x509.pem" and ".pk8".
243DEFAULT_KEY_CERT_PAIR := $(SRC_TARGET_DIR)/product/security/testkey
244
245
246# Rules that need to be present for the simulator, even
247# if they don't do anything.
248.PHONY: systemimage
249systemimage:
250
251# -----------------------------------------------------------------
252
253.PHONY: event-log-tags
254
255event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags
256ALL_PREBUILT += $(event_log_tag_file)
257
258# Include tags from all packages included in this product.
259event_log_tags_src := \
260    $(sort $(foreach m,\
261      $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES) \
262      $(call module-names-for-tag-list,user), \
263      $(ALL_MODULES.$(m).EVENT_LOG_TAGS)))
264
265$(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src)
266$(event_log_tags_file): $(event_log_tags_src)
267	$(hide) mkdir -p $(dir $@)
268	$(hide) build/tools/merge-event-log-tags.py -o $@ $(PRIVATE_SRC_FILES)
269
270event-log-tags: $(event_log_tags_file)
271
272ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file)
273
274ifneq ($(TARGET_SIMULATOR),true)
275
276# #################################################################
277# Targets for boot/OS images
278# #################################################################
279
280# -----------------------------------------------------------------
281# the ramdisk
282INTERNAL_RAMDISK_FILES := $(filter $(TARGET_ROOT_OUT)/%, \
283	$(ALL_PREBUILT) \
284	$(ALL_COPIED_HEADERS) \
285	$(ALL_GENERATED_SOURCES) \
286	$(ALL_DEFAULT_INSTALLED_MODULES))
287
288BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img
289
290# We just build this directly to the install location.
291INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET)
292$(INSTALLED_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_RAMDISK_FILES) | $(MINIGZIP)
293	$(call pretty,"Target ram disk: $@")
294	$(hide) $(MKBOOTFS) $(TARGET_ROOT_OUT) | $(MINIGZIP) > $@
295
296
297ifneq ($(strip $(TARGET_NO_KERNEL)),true)
298
299# -----------------------------------------------------------------
300# the boot image, which is a collection of other images.
301INTERNAL_BOOTIMAGE_ARGS := \
302	$(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \
303	--kernel $(INSTALLED_KERNEL_TARGET) \
304	--ramdisk $(INSTALLED_RAMDISK_TARGET)
305
306INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS))
307
308BOARD_KERNEL_CMDLINE := $(strip $(BOARD_KERNEL_CMDLINE))
309ifdef BOARD_KERNEL_CMDLINE
310  INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(BOARD_KERNEL_CMDLINE)"
311endif
312
313BOARD_KERNEL_BASE := $(strip $(BOARD_KERNEL_BASE))
314ifdef BOARD_KERNEL_BASE
315  INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE)
316endif
317
318INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img
319
320ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true)
321tmp_dir_for_image := $(call intermediates-dir-for,EXECUTABLES,boot_img)/bootimg
322INTERNAL_BOOTIMAGE_ARGS += --tmpdir $(tmp_dir_for_image)
323INTERNAL_BOOTIMAGE_ARGS += --genext2fs $(MKEXT2IMG)
324$(INSTALLED_BOOTIMAGE_TARGET): $(MKEXT2IMG) $(INTERNAL_BOOTIMAGE_FILES)
325	$(call pretty,"Target boot image: $@")
326	$(hide) $(MKEXT2BOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) --output $@
327
328else # TARGET_BOOTIMAGE_USE_EXT2 != true
329
330$(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES)
331	$(call pretty,"Target boot image: $@")
332	$(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) --output $@
333	$(hide) $(call assert-max-image-size,$@,$(BOARD_BOOTIMAGE_PARTITION_SIZE),raw)
334endif # TARGET_BOOTIMAGE_USE_EXT2
335
336else	# TARGET_NO_KERNEL
337# HACK: The top-level targets depend on the bootimage.  Not all targets
338# can produce a bootimage, though, and emulator targets need the ramdisk
339# instead.  Fake it out by calling the ramdisk the bootimage.
340# TODO: make the emulator use bootimages, and make mkbootimg accept
341#       kernel-less inputs.
342INSTALLED_BOOTIMAGE_TARGET := $(INSTALLED_RAMDISK_TARGET)
343endif
344
345# -----------------------------------------------------------------
346# NOTICE files
347#
348# This needs to be before the systemimage rules, because it adds to
349# ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files
350# go into the systemimage.
351
352.PHONY: notice_files
353
354# Create the rule to combine the files into text and html forms
355# $(1) - Plain text output file
356# $(2) - HTML output file
357# $(3) - File title
358# $(4) - Directory to use.  Notice files are all $(4)/src.  Other
359#		 directories in there will be used for scratch
360# $(5) - Dependencies for the output files
361#
362# The algorithm here is that we go collect a hash for each of the notice
363# files and write the names of the files that match that hash.  Then
364# to generate the real files, we go print out all of the files and their
365# hashes.
366#
367# These rules are fairly complex, so they depend on this makefile so if
368# it changes, they'll run again.
369#
370# TODO: We could clean this up so that we just record the locations of the
371# original notice files instead of making rules to copy them somwehere.
372# Then we could traverse that without quite as much bash drama.
373define combine-notice-files
374$(1) $(2): PRIVATE_MESSAGE := $(3)
375$(1) $(2) $(4)/hash-timestamp: PRIVATE_DIR := $(4)
376$(4)/hash-timestamp: $(5) $(BUILD_SYSTEM)/Makefile
377	@echo Finding NOTICE files: $$@
378	$$(hide) rm -rf $$@ $$(PRIVATE_DIR)/hash
379	$$(hide) mkdir -p $$(PRIVATE_DIR)/hash
380	$$(hide) for file in $$$$(find $$(PRIVATE_DIR)/src -type f); do \
381			hash=$$$$($(MD5SUM) $$$$file | sed -e "s/ .*//"); \
382			hashfile=$$(PRIVATE_DIR)/hash/$$$$hash; \
383			echo $$$$file >> $$$$hashfile; \
384		done
385	$$(hide) touch $$@
386$(1): $(4)/hash-timestamp
387	@echo Combining NOTICE files: $$@
388	$$(hide) mkdir -p $$(dir $$@)
389	$$(hide) echo $$(PRIVATE_MESSAGE) > $$@
390	$$(hide) find $$(PRIVATE_DIR)/hash -type f | xargs cat | sort | \
391		sed -e "s:$$(PRIVATE_DIR)/src\(.*\)\.txt:  \1:" >> $$@
392	$$(hide) echo >> $$@
393	$$(hide) echo >> $$@
394	$$(hide) echo >> $$@
395	$$(hide) for hashfile in $$$$(find $$(PRIVATE_DIR)/hash -type f); do \
396			echo "============================================================"\
397				>> $$@; \
398			echo "Notices for file(s):" >> $$@; \
399			cat $$$$hashfile | sort | \
400				sed -e "s:$$(PRIVATE_DIR)/src\(.*\)\.txt:  \1:" >> \
401				$$@; \
402			echo "------------------------------------------------------------"\
403				>> $$@; \
404			echo >> $$@; \
405			orig=$$$$(head -n 1 $$$$hashfile); \
406			cat $$$$orig >> $$@; \
407			echo >> $$@; \
408			echo >> $$@; \
409			echo >> $$@; \
410		done
411$(2): $(4)/hash-timestamp
412	@echo Combining NOTICE files: $$@
413	$$(hide) mkdir -p $$(dir $$@)
414	$$(hide) echo "<html><head>" > $$@
415	$$(hide) echo "<style type=\"text/css\">" >> $$@
416	$$(hide) echo "body { padding: 0; font-family: sans-serif; }" >> $$@
417	$$(hide) echo ".same-license { background-color: #eeeeee; border-top: 20px solid white; padding: 10px; }" >> $$@
418	$$(hide) echo ".label { font-weight: bold; }" >> $$@
419	$$(hide) echo ".file-list { margin-left: 1em; font-color: blue; }" >> $$@
420	$$(hide) echo "</style>" >> $$@
421	$$(hide) echo "</head><body topmargin=\"0\" leftmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\">" >> $$@
422	$$(hide) echo "<table cellpading=\"0\" cellspacing=\"0\" border=\"0\">" \
423		>> $$@
424	$$(hide) for hashfile in $$$$(find $$(PRIVATE_DIR)/hash -type f); do \
425			cat $$$$hashfile | sort | \
426				sed -e "s:$$(PRIVATE_DIR)/src\(.*\)\.txt:  <a name=\"\1\"></a>:" >> \
427				$$@; \
428			echo "<tr><td class=\"same-license\">" >> $$@; \
429			echo "<div class=\"label\">Notices for file(s):</div>" >> $$@; \
430			echo "<div class=\"file-list\">" >> $$@; \
431			cat $$$$hashfile | sort | \
432				sed -e "s:$$(PRIVATE_DIR)/src\(.*\)\.txt:  \1<br/>:" >> $$@; \
433			echo "</div><!-- file-list -->" >> $$@; \
434			echo >> $$@; \
435			orig=$$$$(head -n 1 $$$$hashfile); \
436			echo "<pre class=\"license-text\">" >> $$@; \
437			cat $$$$orig | sed -e "s/\&/\&amp;/g" | sed -e "s/</\&lt;/g" \
438					| sed -e "s/>/\&gt;/g" >> $$@; \
439			echo "</pre><!-- license-text -->" >> $$@; \
440			echo "</td></tr><!-- same-license -->" >> $$@; \
441			echo >> $$@; \
442			echo >> $$@; \
443			echo >> $$@; \
444		done
445	$$(hide) echo "</table>" >> $$@
446	$$(hide) echo "</body></html>" >> $$@
447notice_files: $(1) $(2)
448endef
449
450# TODO These intermediate NOTICE.txt/NOTICE.html files should go into
451# TARGET_OUT_NOTICE_FILES now that the notice files are gathered from
452# the src subdirectory.
453
454target_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE.txt
455target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html
456target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz
457tools_notice_file_txt := $(HOST_OUT_INTERMEDIATES)/NOTICE.txt
458tools_notice_file_html := $(HOST_OUT_INTERMEDIATES)/NOTICE.html
459
460kernel_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/kernel.txt
461
462$(eval $(call combine-notice-files, \
463			$(target_notice_file_txt), \
464			$(target_notice_file_html), \
465			"Notices for files contained in the filesystem images in this directory:", \
466			$(TARGET_OUT_NOTICE_FILES), \
467			$(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file)))
468
469$(eval $(call combine-notice-files, \
470			$(tools_notice_file_txt), \
471			$(tools_notice_file_html), \
472			"Notices for files contained in the tools directory:", \
473			$(HOST_OUT_NOTICE_FILES), \
474			$(ALL_DEFAULT_INSTALLED_MODULES)))
475
476# Install the html file at /system/etc/NOTICE.html.gz.
477# This is not ideal, but this is very late in the game, after a lot of
478# the module processing has already been done -- in fact, we used the
479# fact that all that has been done to get the list of modules that we
480# need notice files for.
481$(target_notice_file_html_gz): $(target_notice_file_html) | $(MINIGZIP)
482	$(hide) $(MINIGZIP) -9 < $< > $@
483installed_notice_html_gz := $(TARGET_OUT)/etc/NOTICE.html.gz
484$(installed_notice_html_gz): $(target_notice_file_html_gz) | $(ACP)
485	$(copy-file-to-target)
486
487# if we've been run my mm, mmm, etc, don't reinstall this every time
488ifeq ($(ONE_SHOT_MAKEFILE),)
489ALL_DEFAULT_INSTALLED_MODULES += $(installed_notice_html_gz)
490endif
491
492# The kernel isn't really a module, so to get its module file in there, we
493# make the target NOTICE files depend on this particular file too, which will
494# then be in the right directory for the find in combine-notice-files to work.
495$(kernel_notice_file): \
496	    prebuilt/$(TARGET_PREBUILT_TAG)/kernel/LINUX_KERNEL_COPYING \
497	    | $(ACP)
498	@echo Copying: $@
499	$(hide) mkdir -p $(dir $@)
500	$(hide) $(ACP) $< $@
501
502
503# -----------------------------------------------------------------
504# Build a keystore with the authorized keys in it, used to verify the
505# authenticity of downloaded OTA packages.
506#
507# This rule adds to ALL_DEFAULT_INSTALLED_MODULES, so it needs to come
508# before the rules that use that variable to build the image.
509ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT_ETC)/security/otacerts.zip
510$(TARGET_OUT_ETC)/security/otacerts.zip: KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR)
511$(TARGET_OUT_ETC)/security/otacerts.zip: $(addsuffix .x509.pem,$(DEFAULT_KEY_CERT_PAIR))
512	$(hide) rm -f $@
513	$(hide) mkdir -p $(dir $@)
514	$(hide) zip -qj $@ $<
515
516.PHONY: otacerts
517otacerts: $(TARGET_OUT_ETC)/security/otacerts.zip
518
519
520# #################################################################
521# Targets for user images
522# #################################################################
523
524ifeq ($(TARGET_USERIMAGES_USE_EXT2),true)
525include external/genext2fs/Config.mk
526INTERNAL_MKUSERFS := $(MKEXT2IMG)
527else
528INTERNAL_MKUSERFS := $(MKYAFFS2)
529endif
530
531# -----------------------------------------------------------------
532# Recovery image
533
534# If neither TARGET_NO_KERNEL nor TARGET_NO_RECOVERY are true
535ifeq (,$(filter true, $(TARGET_NO_KERNEL) $(TARGET_NO_RECOVERY) $(BUILD_TINY_ANDROID)))
536
537INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img
538
539recovery_initrc := $(call include-path-for, recovery)/etc/init.rc
540recovery_kernel := $(INSTALLED_KERNEL_TARGET) # same as a non-recovery system
541recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img
542recovery_build_prop := $(INSTALLED_BUILD_PROP_TARGET)
543recovery_binary := $(call intermediates-dir-for,EXECUTABLES,recovery)/recovery
544recovery_resources_common := $(call include-path-for, recovery)/res
545recovery_resources_private := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery/res))
546recovery_resource_deps := $(shell find $(recovery_resources_common) \
547  $(recovery_resources_private) -type f)
548
549ifeq ($(recovery_resources_private),)
550  $(info No private recovery resources for TARGET_DEVICE $(TARGET_DEVICE))
551endif
552
553INTERNAL_RECOVERYIMAGE_ARGS := \
554	$(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \
555	--kernel $(recovery_kernel) \
556	--ramdisk $(recovery_ramdisk)
557
558# Assumes this has already been stripped
559ifdef BOARD_KERNEL_CMDLINE
560  INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(BOARD_KERNEL_CMDLINE)"
561endif
562ifdef BOARD_KERNEL_BASE
563  INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE)
564endif
565
566# Keys authorized to sign OTA packages this build will accept.  The
567# build always uses test-keys for this; release packaging tools will
568# substitute other keys for this one.
569OTA_PUBLIC_KEYS := $(SRC_TARGET_DIR)/product/security/testkey.x509.pem
570
571# Generate a file containing the keys that will be read by the
572# recovery binary.
573RECOVERY_INSTALL_OTA_KEYS := \
574	$(call intermediates-dir-for,PACKAGING,ota_keys)/keys
575DUMPKEY_JAR := $(HOST_OUT_JAVA_LIBRARIES)/dumpkey.jar
576$(RECOVERY_INSTALL_OTA_KEYS): PRIVATE_OTA_PUBLIC_KEYS := $(OTA_PUBLIC_KEYS)
577$(RECOVERY_INSTALL_OTA_KEYS): $(OTA_PUBLIC_KEYS) $(DUMPKEY_JAR)
578	@echo "DumpPublicKey: $@ <= $(PRIVATE_OTA_PUBLIC_KEYS)"
579	@rm -rf $@
580	@mkdir -p $(dir $@)
581	java -jar $(DUMPKEY_JAR) $(PRIVATE_OTA_PUBLIC_KEYS) > $@
582
583$(INSTALLED_RECOVERYIMAGE_TARGET): $(MKBOOTFS) $(MKBOOTIMG) $(MINIGZIP) \
584		$(INSTALLED_RAMDISK_TARGET) \
585		$(INSTALLED_BOOTIMAGE_TARGET) \
586		$(recovery_binary) \
587		$(recovery_initrc) $(recovery_kernel) \
588		$(INSTALLED_2NDBOOTLOADER_TARGET) \
589		$(recovery_build_prop) $(recovery_resource_deps) \
590		$(RECOVERY_INSTALL_OTA_KEYS)
591	@echo ----- Making recovery image ------
592	rm -rf $(TARGET_RECOVERY_OUT)
593	mkdir -p $(TARGET_RECOVERY_OUT)
594	mkdir -p $(TARGET_RECOVERY_ROOT_OUT)
595	mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/etc
596	mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/tmp
597	echo Copying baseline ramdisk...
598	cp -R $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT)
599	echo Modifying ramdisk contents...
600	cp -f $(recovery_initrc) $(TARGET_RECOVERY_ROOT_OUT)/
601	cp -f $(recovery_binary) $(TARGET_RECOVERY_ROOT_OUT)/sbin/
602	cp -rf $(recovery_resources_common) $(TARGET_RECOVERY_ROOT_OUT)/
603	$(foreach item,$(recovery_resources_private), \
604	  cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/)
605	cp $(RECOVERY_INSTALL_OTA_KEYS) $(TARGET_RECOVERY_ROOT_OUT)/res/keys
606	cat $(INSTALLED_DEFAULT_PROP_TARGET) $(recovery_build_prop) \
607	        > $(TARGET_RECOVERY_ROOT_OUT)/default.prop
608	$(MKBOOTFS) $(TARGET_RECOVERY_ROOT_OUT) | $(MINIGZIP) > $(recovery_ramdisk)
609	$(MKBOOTIMG) $(INTERNAL_RECOVERYIMAGE_ARGS) --output $@
610	@echo ----- Made recovery image -------- $@
611	$(hide) $(call assert-max-image-size,$@,$(BOARD_RECOVERYIMAGE_PARTITION_SIZE),raw)
612
613else
614INSTALLED_RECOVERYIMAGE_TARGET :=
615endif
616
617.PHONY: recoveryimage
618recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET)
619
620ifneq ($(BOARD_NAND_PAGE_SIZE),)
621mkyaffs2_extra_flags := -c $(BOARD_NAND_PAGE_SIZE)
622else
623mkyaffs2_extra_flags :=
624endif
625
626
627# -----------------------------------------------------------------
628# system yaffs image
629#
630# First, the "unoptimized" image, which contains .apk/.jar files
631# that contain regular, unoptimized/unverified .dex entries.
632#
633systemimage_unopt_intermediates := \
634	$(call intermediates-dir-for,PACKAGING,systemimage_unopt)
635BUILT_SYSTEMIMAGE_UNOPT := $(systemimage_unopt_intermediates)/system.img
636
637INTERNAL_SYSTEMIMAGE_FILES := $(filter $(TARGET_OUT)/%, \
638	$(ALL_PREBUILT) \
639	$(ALL_COPIED_HEADERS) \
640	$(ALL_GENERATED_SOURCES) \
641	$(ALL_DEFAULT_INSTALLED_MODULES))
642
643ifeq ($(TARGET_USERIMAGES_USE_EXT2),true)
644## generate an ext2 image
645# $(1): output file
646define build-systemimage-target
647    @echo "Target system fs image: $(1)"
648    $(call build-userimage-ext2-target,$(TARGET_OUT),$(1),system,)
649endef
650
651else # TARGET_USERIMAGES_USE_EXT2 != true
652
653## generate a yaffs2 image
654# $(1): output file
655define build-systemimage-target
656    @echo "Target system fs image: $(1)"
657    @mkdir -p $(dir $(1))
658    $(hide) $(MKYAFFS2) -f $(mkyaffs2_extra_flags) $(TARGET_OUT) $(1)
659endef
660endif # TARGET_USERIMAGES_USE_EXT2
661
662$(BUILT_SYSTEMIMAGE_UNOPT): $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_MKUSERFS)
663	$(call build-systemimage-target,$@)
664
665# The installed image, which may be optimized or unoptimized.
666#
667INSTALLED_SYSTEMIMAGE := $(PRODUCT_OUT)/system.img
668
669ifdef WITH_DEXPREOPT
670  ifndef DISABLE_DEXPREOPT
671    with_dexpreopt := true
672  endif
673endif
674ifdef with_dexpreopt
675  # This file will set BUILT_SYSTEMIMAGE and SYSTEMIMAGE_SOURCE_DIR
676  include build/tools/dexpreopt/Config.mk
677else
678  BUILT_SYSTEMIMAGE := $(BUILT_SYSTEMIMAGE_UNOPT)
679  SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT)
680endif
681
682# The system partition needs room for the recovery image as well.  We
683# now store the recovery image as a binary patch using the boot image
684# as the source (since they are very similar).  Generate the patch so
685# we can see how big it's going to be, and include that in the system
686# image size check calculation.
687ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),)
688intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch)
689RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p
690$(RECOVERY_FROM_BOOT_PATCH): $(INSTALLED_RECOVERYIMAGE_TARGET) \
691                             $(INSTALLED_BOOTIMAGE_TARGET) \
692			     $(HOST_OUT_EXECUTABLES)/imgdiff \
693	                     $(HOST_OUT_EXECUTABLES)/bsdiff
694	@echo "Construct recovery from boot"
695	mkdir -p $(dir $@)
696	PATH=$(HOST_OUT_EXECUTABLES):$$PATH $(HOST_OUT_EXECUTABLES)/imgdiff $(INSTALLED_BOOTIMAGE_TARGET) $(INSTALLED_RECOVERYIMAGE_TARGET) $@
697endif
698
699
700$(INSTALLED_SYSTEMIMAGE): $(BUILT_SYSTEMIMAGE) $(RECOVERY_FROM_BOOT_PATCH) | $(ACP)
701	@echo "Install system fs image: $@"
702	$(copy-file-to-target)
703	$(hide) $(call assert-max-image-size,$@ $(RECOVERY_FROM_BOOT_PATCH),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE),yaffs)
704
705systemimage: $(INSTALLED_SYSTEMIMAGE)
706
707.PHONY: systemimage-nodeps snod
708systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \
709	            | $(INTERNAL_MKUSERFS)
710	@echo "make $@: ignoring dependencies"
711	$(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE))
712	$(hide) $(call assert-max-image-size,$(INSTALLED_SYSTEMIMAGE),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE),yaffs)
713
714#######
715## system tarball
716define build-systemtarball-target
717    $(call pretty,"Target system fs tarball: $(INSTALLED_SYSTEMTARBALL_TARGET)")
718    $(MKTARBALL) $(FS_GET_STATS) \
719		$(PRODUCT_OUT) system $(PRIVATE_SYSTEM_TAR) \
720		$(INSTALLED_SYSTEMTARBALL_TARGET)
721endef
722
723system_tar := $(PRODUCT_OUT)/system.tar
724INSTALLED_SYSTEMTARBALL_TARGET := $(system_tar).bz2
725$(INSTALLED_SYSTEMTARBALL_TARGET): PRIVATE_SYSTEM_TAR := $(system_tar)
726$(INSTALLED_SYSTEMTARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_SYSTEMIMAGE_FILES)
727	$(build-systemtarball-target)
728
729.PHONY: systemtarball-nodeps
730systemtarball-nodeps: $(FS_GET_STATS) \
731                      $(filter-out systemtarball-nodeps stnod,$(MAKECMDGOALS))
732	$(build-systemtarball-target)
733
734.PHONY: stnod
735stnod: systemtarball-nodeps
736
737
738# -----------------------------------------------------------------
739# data partition image
740INTERNAL_USERDATAIMAGE_FILES := \
741	$(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES))
742
743ifeq ($(TARGET_USERIMAGES_USE_EXT2),true)
744## Generate an ext2 image
745define build-userdataimage-target
746    $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)")
747    @mkdir -p $(TARGET_OUT_DATA)
748    $(call build-userimage-ext2-target,$(TARGET_OUT_DATA),$(INSTALLED_USERDATAIMAGE_TARGET),userdata,)
749    $(hide) $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE),yaffs)
750endef
751
752else # TARGET_USERIMAGES_USE_EXT2 != true
753
754## Generate a yaffs2 image
755define build-userdataimage-target
756    $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)")
757    @mkdir -p $(TARGET_OUT_DATA)
758    $(hide) $(MKYAFFS2) -f $(mkyaffs2_extra_flags) $(TARGET_OUT_DATA) $(INSTALLED_USERDATAIMAGE_TARGET)
759    $(hide) $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE),yaffs)
760endef
761endif # TARGET_USERIMAGES_USE_EXT2
762
763BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img
764
765# We just build this directly to the install location.
766INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET)
767$(INSTALLED_USERDATAIMAGE_TARGET): $(INTERNAL_MKUSERFS) \
768                                   $(INTERNAL_USERDATAIMAGE_FILES)
769	$(build-userdataimage-target)
770
771.PHONY: userdataimage-nodeps
772userdataimage-nodeps: $(INTERNAL_MKUSERFS)
773	$(build-userdataimage-target)
774
775#######
776## data partition tarball
777define build-userdatatarball-target
778    $(call pretty,"Target userdata fs tarball: " \
779                  "$(INSTALLED_USERDATATARBALL_TARGET)")
780    $(MKTARBALL) $(FS_GET_STATS) \
781		$(PRODUCT_OUT) data $(PRIVATE_USERDATA_TAR) \
782		$(INSTALLED_USERDATATARBALL_TARGET)
783endef
784
785userdata_tar := $(PRODUCT_OUT)/userdata.tar
786INSTALLED_USERDATATARBALL_TARGET := $(userdata_tar).bz2
787$(INSTALLED_USERDATATARBALL_TARGET): PRIVATE_USERDATA_TAR := $(userdata_tar)
788$(INSTALLED_USERDATATARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_USERDATAIMAGE_FILES)
789	$(build-userdatatarball-target)
790
791.PHONY: userdatatarball-nodeps
792userdatatarball-nodeps: $(FS_GET_STATS)
793	$(build-userdatatarball-target)
794
795
796# -----------------------------------------------------------------
797# bring in the installer image generation defines if necessary
798ifeq ($(TARGET_USE_DISKINSTALLER),true)
799include bootable/diskinstaller/config.mk
800endif
801
802# -----------------------------------------------------------------
803# host tools needed to build OTA packages
804
805.PHONY: otatools
806otatools: $(HOST_OUT_EXECUTABLES)/minigzip \
807	  $(HOST_OUT_EXECUTABLES)/mkbootfs \
808	  $(HOST_OUT_EXECUTABLES)/mkbootimg \
809	  $(HOST_OUT_EXECUTABLES)/fs_config \
810	  $(HOST_OUT_EXECUTABLES)/mkyaffs2image \
811	  $(HOST_OUT_EXECUTABLES)/zipalign \
812	  $(HOST_OUT_EXECUTABLES)/aapt \
813	  $(HOST_OUT_EXECUTABLES)/bsdiff \
814	  $(HOST_OUT_EXECUTABLES)/imgdiff \
815	  $(HOST_OUT_JAVA_LIBRARIES)/dumpkey.jar \
816	  $(HOST_OUT_JAVA_LIBRARIES)/signapk.jar
817
818# -----------------------------------------------------------------
819# A zip of the directories that map to the target filesystem.
820# This zip can be used to create an OTA package or filesystem image
821# as a post-build step.
822#
823name := $(TARGET_PRODUCT)
824ifeq ($(TARGET_BUILD_TYPE),debug)
825  name := $(name)_debug
826endif
827name := $(name)-target_files-$(FILE_NAME_TAG)
828
829intermediates := $(call intermediates-dir-for,PACKAGING,target_files)
830BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip
831$(BUILT_TARGET_FILES_PACKAGE): intermediates := $(intermediates)
832$(BUILT_TARGET_FILES_PACKAGE): \
833		zip_root := $(intermediates)/$(name)
834
835# $(1): Directory to copy
836# $(2): Location to copy it to
837# The "ls -A" is to prevent "acp s/* d" from failing if s is empty.
838define package_files-copy-root
839  if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \
840    mkdir -p $(2) && \
841    $(ACP) -rd $(strip $(1))/* $(2); \
842  fi
843endef
844
845built_ota_tools := \
846	$(call intermediates-dir-for,EXECUTABLES,applypatch)/applypatch \
847	$(call intermediates-dir-for,EXECUTABLES,applypatch_static)/applypatch_static \
848	$(call intermediates-dir-for,EXECUTABLES,check_prereq)/check_prereq \
849	$(call intermediates-dir-for,EXECUTABLES,updater)/updater
850$(BUILT_TARGET_FILES_PACKAGE): PRIVATE_OTA_TOOLS := $(built_ota_tools)
851
852$(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_API_VERSION := $(RECOVERY_API_VERSION)
853
854ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),)
855# default to common dir for device vendor
856$(BUILT_TARGET_FILES_PACKAGE): tool_extensions := $(TARGET_DEVICE_DIR)/../common
857else
858$(BUILT_TARGET_FILES_PACKAGE): tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS)
859endif
860
861# Depending on the various images guarantees that the underlying
862# directories are up-to-date.
863$(BUILT_TARGET_FILES_PACKAGE): \
864		$(INSTALLED_BOOTIMAGE_TARGET) \
865		$(INSTALLED_RADIOIMAGE_TARGET) \
866		$(INSTALLED_RECOVERYIMAGE_TARGET) \
867		$(INSTALLED_SYSTEMIMAGE) \
868		$(INSTALLED_USERDATAIMAGE_TARGET) \
869		$(INSTALLED_ANDROID_INFO_TXT_TARGET) \
870		$(built_ota_tools) \
871		$(APKCERTS_FILE) \
872		$(HOST_OUT_EXECUTABLES)/fs_config \
873		| $(ACP)
874	@echo "Package target files: $@"
875	$(hide) rm -rf $@ $(zip_root)
876	$(hide) mkdir -p $(dir $@) $(zip_root)
877	@# Components of the recovery image
878	$(hide) mkdir -p $(zip_root)/RECOVERY
879	$(hide) $(call package_files-copy-root, \
880		$(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/RECOVERY/RAMDISK)
881ifdef INSTALLED_KERNEL_TARGET
882	$(hide) $(ACP) $(INSTALLED_KERNEL_TARGET) $(zip_root)/RECOVERY/kernel
883endif
884ifdef INSTALLED_2NDBOOTLOADER_TARGET
885	$(hide) $(ACP) \
886		$(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/RECOVERY/second
887endif
888ifdef BOARD_KERNEL_CMDLINE
889	$(hide) echo "$(BOARD_KERNEL_CMDLINE)" > $(zip_root)/RECOVERY/cmdline
890endif
891ifdef BOARD_KERNEL_BASE
892	$(hide) echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/RECOVERY/base
893endif
894	@# Components of the boot image
895	$(hide) mkdir -p $(zip_root)/BOOT
896	$(hide) $(call package_files-copy-root, \
897		$(TARGET_ROOT_OUT),$(zip_root)/BOOT/RAMDISK)
898ifdef INSTALLED_KERNEL_TARGET
899	$(hide) $(ACP) $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/kernel
900endif
901ifdef INSTALLED_2NDBOOTLOADER_TARGET
902	$(hide) $(ACP) \
903		$(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second
904endif
905ifdef BOARD_KERNEL_CMDLINE
906	$(hide) echo "$(BOARD_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline
907endif
908ifdef BOARD_KERNEL_BASE
909	$(hide) echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base
910endif
911	$(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\
912	            mkdir -p $(zip_root)/RADIO; \
913	            $(ACP) $(t) $(zip_root)/RADIO/$(notdir $(t));)
914	@# Contents of the system image
915	$(hide) $(call package_files-copy-root, \
916		$(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM)
917	@# Contents of the data image
918	$(hide) $(call package_files-copy-root, \
919		$(TARGET_OUT_DATA),$(zip_root)/DATA)
920	@# Extra contents of the OTA package
921	$(hide) mkdir -p $(zip_root)/OTA/bin
922	$(hide) $(ACP) $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/
923	$(hide) $(ACP) $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/
924	@# Files that do not end up in any images, but are necessary to
925	@# build them.
926	$(hide) mkdir -p $(zip_root)/META
927	$(hide) $(ACP) $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt
928	$(hide)	echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt
929	$(hide) echo "$(PRIVATE_RECOVERY_API_VERSION)" > $(zip_root)/META/recovery-api-version.txt
930	$(hide) echo "blocksize $(BOARD_FLASH_BLOCK_SIZE)" > $(zip_root)/META/imagesizes.txt
931	$(hide) echo "boot $(call image-size-from-data-size,$(BOARD_BOOTIMAGE_PARTITION_SIZE))" >> $(zip_root)/META/imagesizes.txt
932	$(hide) echo "recovery $(call image-size-from-data-size,$(BOARD_RECOVERYIMAGE_PARTITION_SIZE))" >> $(zip_root)/META/imagesizes.txt
933	$(hide) echo "system $(call image-size-from-data-size,$(BOARD_SYSTEMIMAGE_PARTITION_SIZE))" >> $(zip_root)/META/imagesizes.txt
934	$(hide) echo "userdata $(call image-size-from-data-size,$(BOARD_USERDATAIMAGE_PARTITION_SIZE))" >> $(zip_root)/META/imagesizes.txt
935	$(hide) echo "$(tool_extensions)" > $(zip_root)/META/tool-extensions.txt
936	@# Zip everything up, preserving symlinks
937	$(hide) (cd $(zip_root) && zip -qry ../$(notdir $@) .)
938	@# Run fs_config on all the system files in the zip, and save the output
939	$(hide) zipinfo -1 $@ | awk -F/ 'BEGIN { OFS="/" } /^SYSTEM\// {$$1 = "system"; print}' | $(HOST_OUT_EXECUTABLES)/fs_config > $(zip_root)/META/filesystem_config.txt
940	$(hide) (cd $(zip_root) && zip -q ../$(notdir $@) META/filesystem_config.txt)
941
942
943target-files-package: $(BUILT_TARGET_FILES_PACKAGE)
944
945# -----------------------------------------------------------------
946# OTA update package
947
948ifneq ($(TARGET_SIMULATOR),true)
949ifneq ($(TARGET_PRODUCT),sdk)
950ifneq ($(TARGET_DEVICE),generic)
951
952name := $(TARGET_PRODUCT)
953ifeq ($(TARGET_BUILD_TYPE),debug)
954  name := $(name)_debug
955endif
956name := $(name)-ota-$(FILE_NAME_TAG)
957
958INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip
959
960$(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR)
961
962$(INTERNAL_OTA_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) otatools
963	@echo "Package OTA: $@"
964	$(hide) ./build/tools/releasetools/ota_from_target_files \
965	   -p $(HOST_OUT) \
966           -k $(KEY_CERT_PAIR) \
967           $(BUILT_TARGET_FILES_PACKAGE) $@
968
969.PHONY: otapackage
970otapackage: $(INTERNAL_OTA_PACKAGE_TARGET)
971
972endif    # TARGET_DEVICE != generic
973endif    # TARGET_PRODUCT != sdk
974endif    # TARGET_SIMULATOR != true
975
976# -----------------------------------------------------------------
977# installed file list
978# Depending on $(INSTALLED_SYSTEMIMAGE) ensures that it
979# gets the DexOpt one if we're doing that.
980INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt
981$(INSTALLED_FILES_FILE): $(INSTALLED_SYSTEMIMAGE)
982	@echo Installed file list: $@
983	@mkdir -p $(dir $@)
984	@rm -f $@
985	$(hide) build/tools/fileslist.py $(TARGET_OUT) $(TARGET_OUT_DATA) > $@
986
987.PHONY: installed-file-list
988installed-file-list: $(INSTALLED_FILES_FILE)
989$(call dist-for-goals, sdk, $(INSTALLED_FILES_FILE))
990$(call dist-for-goals, sdk_addon, $(INSTALLED_FILES_FILE))
991
992# -----------------------------------------------------------------
993# A zip of the tests that are built when running "make tests".
994# This is very similar to BUILT_TARGET_FILES_PACKAGE, but we
995# only grab SYSTEM and DATA, and it's called "*-tests-*.zip".
996#
997name := $(TARGET_PRODUCT)
998ifeq ($(TARGET_BUILD_TYPE),debug)
999  name := $(name)_debug
1000endif
1001name := $(name)-tests-$(FILE_NAME_TAG)
1002
1003intermediates := $(call intermediates-dir-for,PACKAGING,tests_zip)
1004BUILT_TESTS_ZIP_PACKAGE := $(intermediates)/$(name).zip
1005$(BUILT_TESTS_ZIP_PACKAGE): intermediates := $(intermediates)
1006$(BUILT_TESTS_ZIP_PACKAGE): zip_root := $(intermediates)/$(name)
1007
1008# Depending on the images guarantees that the underlying
1009# directories are up-to-date.
1010$(BUILT_TESTS_ZIP_PACKAGE): \
1011		$(BUILT_SYSTEMIMAGE) \
1012		$(INSTALLED_USERDATAIMAGE_TARGET) \
1013		| $(ACP)
1014	@echo "Package test files: $@"
1015	$(hide) rm -rf $@ $(zip_root)
1016	$(hide) mkdir -p $(dir $@) $(zip_root)
1017	@# Some parts of the system image
1018	$(hide) $(call package_files-copy-root, \
1019		$(SYSTEMIMAGE_SOURCE_DIR)/xbin,$(zip_root)/SYSTEM/xbin)
1020	$(hide) $(call package_files-copy-root, \
1021		$(SYSTEMIMAGE_SOURCE_DIR)/lib,$(zip_root)/SYSTEM/lib)
1022	$(hide) $(call package_files-copy-root, \
1023		$(SYSTEMIMAGE_SOURCE_DIR)/framework, \
1024		$(zip_root)/SYSTEM/framework)
1025	$(hide) $(ACP) $(SYSTEMIMAGE_SOURCE_DIR)/build.prop $(zip_root)/SYSTEM
1026	@# Contents of the data image
1027	$(hide) $(call package_files-copy-root, \
1028		$(TARGET_OUT_DATA),$(zip_root)/DATA)
1029	$(hide) (cd $(zip_root) && zip -qry ../$(notdir $@) .)
1030
1031tests-zip-package: $(BUILT_TESTS_ZIP_PACKAGE)
1032
1033# -----------------------------------------------------------------
1034# A zip of the symbols directory.  Keep the full paths to make it
1035# more obvious where these files came from.
1036#
1037name := $(TARGET_PRODUCT)
1038ifeq ($(TARGET_BUILD_TYPE),debug)
1039  name := $(name)_debug
1040endif
1041name := $(name)-symbols-$(FILE_NAME_TAG)
1042
1043SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name).zip
1044$(SYMBOLS_ZIP): $(INSTALLED_SYSTEMIMAGE) $(INSTALLED_BOOTIMAGE_TARGET)
1045	@echo "Package symbols: $@"
1046	$(hide) rm -rf $@
1047	$(hide) mkdir -p $(dir $@)
1048	$(hide) zip -qr $@ $(TARGET_OUT_UNSTRIPPED)
1049
1050# -----------------------------------------------------------------
1051# A zip of the Android Apps. Not keeping full path so that we don't
1052# include product names when distributing
1053#
1054name := $(TARGET_PRODUCT)
1055ifeq ($(TARGET_BUILD_TYPE),debug)
1056  name := $(name)_debug
1057endif
1058name := $(name)-apps-$(FILE_NAME_TAG)
1059
1060APPS_ZIP := $(PRODUCT_OUT)/$(name).zip
1061$(APPS_ZIP): $(INSTALLED_SYSTEMIMAGE)
1062	@echo "Package apps: $@"
1063	$(hide) rm -rf $@
1064	$(hide) mkdir -p $(dir $@)
1065	$(hide) zip -qj $@ $(TARGET_OUT_APPS)/*
1066
1067
1068#------------------------------------------------------------------
1069# A zip of emma code coverage meta files. Generated for fully emma
1070# instrumented build.
1071#
1072EMMA_META_ZIP := $(PRODUCT_OUT)/emma_meta.zip
1073$(EMMA_META_ZIP): $(INSTALLED_SYSTEMIMAGE)
1074	@echo "Collecting Emma coverage meta files."
1075	$(hide) find $(TARGET_COMMON_OUT_ROOT) -name "coverage.em" | \
1076		zip -@ -q $@
1077
1078endif	# TARGET_SIMULATOR != true
1079
1080# -----------------------------------------------------------------
1081# dalvik something
1082.PHONY: dalvikfiles
1083dalvikfiles: $(INTERNAL_DALVIK_MODULES)
1084
1085# -----------------------------------------------------------------
1086# The update package
1087
1088ifneq ($(TARGET_SIMULATOR),true)
1089ifneq ($(TARGET_PRODUCT),sdk)
1090
1091name := $(TARGET_PRODUCT)
1092ifeq ($(TARGET_BUILD_TYPE),debug)
1093  name := $(name)_debug
1094endif
1095name := $(name)-img-$(FILE_NAME_TAG)
1096
1097INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip
1098
1099ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),)
1100# default to common dir for device vendor
1101$(INTERNAL_UPDATE_PACKAGE_TARGET): extensions := $(TARGET_DEVICE_DIR)/../common
1102else
1103$(INTERNAL_UPDATE_PACKAGE_TARGET): extensions := $(TARGET_RELEASETOOLS_EXTENSIONS)
1104endif
1105
1106$(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) otatools
1107	@echo "Package: $@"
1108	$(hide) ./build/tools/releasetools/img_from_target_files \
1109	   -s $(extensions) \
1110	   -p $(HOST_OUT) \
1111	   $(BUILT_TARGET_FILES_PACKAGE) $@
1112
1113.PHONY: updatepackage
1114updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET)
1115
1116endif    # TARGET_PRODUCT != sdk
1117endif    # TARGET_SIMULATOR != true
1118
1119# -----------------------------------------------------------------
1120# The emulator package
1121
1122ifneq ($(TARGET_SIMULATOR),true)
1123
1124INTERNAL_EMULATOR_PACKAGE_FILES += \
1125        $(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \
1126        prebuilt/android-arm/kernel/kernel-qemu \
1127        $(INSTALLED_RAMDISK_TARGET) \
1128		$(INSTALLED_SYSTEMIMAGE) \
1129		$(INSTALLED_USERDATAIMAGE_TARGET)
1130
1131name := $(TARGET_PRODUCT)-emulator-$(FILE_NAME_TAG)
1132
1133INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip
1134
1135$(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES)
1136	@echo "Package: $@"
1137	$(hide) zip -qj $@ $(INTERNAL_EMULATOR_PACKAGE_FILES)
1138
1139endif
1140
1141# -----------------------------------------------------------------
1142# The pdk package (Platform Development Kit)
1143
1144ifneq (,$(filter pdk,$(MAKECMDGOALS)))
1145  include development/pdk/Pdk.mk
1146endif
1147
1148# -----------------------------------------------------------------
1149# The SDK
1150
1151ifneq ($(TARGET_SIMULATOR),true)
1152
1153# The SDK includes host-specific components, so it belongs under HOST_OUT.
1154sdk_dir := $(HOST_OUT)/sdk
1155
1156# Build a name that looks like:
1157#
1158#     linux-x86   --> android-sdk_12345_linux-x86
1159#     darwin-x86  --> android-sdk_12345_mac-x86
1160#     windows-x86 --> android-sdk_12345_windows
1161#
1162sdk_name := android-sdk_$(FILE_NAME_TAG)
1163ifeq ($(HOST_OS),darwin)
1164  INTERNAL_SDK_HOST_OS_NAME := mac
1165else
1166  INTERNAL_SDK_HOST_OS_NAME := $(HOST_OS)
1167endif
1168ifneq ($(HOST_OS),windows)
1169  INTERNAL_SDK_HOST_OS_NAME := $(INTERNAL_SDK_HOST_OS_NAME)-$(HOST_ARCH)
1170endif
1171sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME)
1172
1173sdk_dep_file := $(sdk_dir)/sdk_deps.mk
1174
1175ATREE_FILES :=
1176-include $(sdk_dep_file)
1177
1178# if we don't have a real list, then use "everything"
1179ifeq ($(strip $(ATREE_FILES)),)
1180ATREE_FILES := \
1181	$(ALL_PREBUILT) \
1182	$(ALL_COPIED_HEADERS) \
1183	$(ALL_GENERATED_SOURCES) \
1184	$(ALL_DEFAULT_INSTALLED_MODULES) \
1185	$(INSTALLED_RAMDISK_TARGET) \
1186	$(ALL_DOCS) \
1187	$(ALL_SDK_FILES)
1188endif
1189
1190atree_dir := development/build
1191
1192sdk_atree_files := \
1193	$(atree_dir)/sdk.exclude.atree \
1194	$(atree_dir)/sdk.atree \
1195	$(atree_dir)/sdk-$(HOST_OS)-$(HOST_ARCH).atree
1196
1197deps := \
1198	$(target_notice_file_txt) \
1199	$(tools_notice_file_txt) \
1200	$(OUT_DOCS)/offline-sdk-timestamp \
1201	$(SYMBOLS_ZIP) \
1202	$(INSTALLED_SYSTEMIMAGE) \
1203	$(INSTALLED_USERDATAIMAGE_TARGET) \
1204	$(INSTALLED_RAMDISK_TARGET) \
1205	$(INSTALLED_SDK_BUILD_PROP_TARGET) \
1206	$(INSTALLED_BUILD_PROP_TARGET) \
1207	$(ATREE_FILES) \
1208	$(atree_dir)/sdk.atree \
1209	$(HOST_OUT_EXECUTABLES)/atree \
1210    $(HOST_OUT_EXECUTABLES)/line_endings
1211
1212INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip
1213$(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name)
1214$(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name)
1215$(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file)
1216$(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files)
1217
1218# Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built.
1219#
1220#SDK_GNU_ERROR := true
1221
1222$(INTERNAL_SDK_TARGET): $(deps)
1223	@echo "Package SDK: $@"
1224	$(hide) rm -rf $(PRIVATE_DIR) $@
1225	$(hide) for f in $(target_gnu_MODULES); do \
1226	  if [ -f $$f ]; then \
1227	    echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \
1228	        including GNU target $$f >&2; \
1229	    FAIL=$(SDK_GNU_ERROR); \
1230	  fi; \
1231	done; \
1232	if [ $$FAIL ]; then exit 1; fi
1233	$(hide) ( \
1234		$(HOST_OUT_EXECUTABLES)/atree \
1235		$(addprefix -f ,$(PRIVATE_INPUT_FILES)) \
1236			-m $(PRIVATE_DEP_FILE) \
1237			-I . \
1238			-I $(PRODUCT_OUT) \
1239			-I $(HOST_OUT) \
1240			-I $(TARGET_COMMON_OUT_ROOT) \
1241			-v "PLATFORM_NAME=android-$(PLATFORM_VERSION)" \
1242			-o $(PRIVATE_DIR) && \
1243		cp -f $(target_notice_file_txt) \
1244				$(PRIVATE_DIR)/platforms/android-$(PLATFORM_VERSION)/images/NOTICE.txt && \
1245		cp -f $(tools_notice_file_txt) $(PRIVATE_DIR)/tools/NOTICE.txt && \
1246		HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \
1247                development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \
1248		chmod -R ug+rwX $(PRIVATE_DIR) && \
1249		cd $(dir $@) && zip -rq $(notdir $@) $(PRIVATE_NAME) \
1250	) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 )
1251
1252
1253# Is a Windows SDK requested? If so, we need some definitions from here
1254# in order to find the Linux SDK used to create the Windows one.
1255ifneq ($(filter win_sdk,$(MAKECMDGOALS)),)
1256LINUX_SDK_NAME := $(sdk_name)
1257LINUX_SDK_DIR  := $(sdk_dir)
1258include $(TOPDIR)development/build/tools/windows_sdk.mk
1259endif
1260
1261endif # !simulator
1262
1263# -----------------------------------------------------------------
1264# Findbugs
1265INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml
1266INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html
1267$(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES)
1268	@echo UnionBugs: $@
1269	$(hide) prebuilt/common/findbugs/bin/unionBugs $(ALL_FINDBUGS_FILES) \
1270	> $@
1271$(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET)
1272	@echo ConvertXmlToText: $@
1273	$(hide) prebuilt/common/findbugs/bin/convertXmlToText -html:fancy.xsl \
1274	$(INTERNAL_FINDBUGS_XML_TARGET)	> $@
1275
1276# -----------------------------------------------------------------
1277# Findbugs
1278
1279# -----------------------------------------------------------------
1280# These are some additional build tasks that need to be run.
1281include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk))
1282