OSDN Git Service

am ae0e037d: am 9bbc247d: am a334cee6: am 77c51357: docs: fix lang switcher for gae...
[android-x86/build.git] / core / Makefile
1 # Put some miscellaneous rules here
2
3 # Pick a reasonable string to use to identify files.
4 ifneq "" "$(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)
8 else
9   FILE_NAME_TAG := $(BUILD_NUMBER)
10 endif
11
12 is_tests_build := $(filter tests,$(MAKECMDGOALS))
13
14 # -----------------------------------------------------------------
15 # Define rules to copy PRODUCT_COPY_FILES defined by the product.
16 # PRODUCT_COPY_FILES contains words like <source file>:<dest file>[:<owner>].
17 # <dest file> is relative to $(PRODUCT_OUT), so it should look like,
18 # e.g., "system/etc/file.xml".
19 # The filter part means "only eval the copy-one-file rule if this
20 # src:dest pair is the first one to match the same dest"
21 #$(1): the src:dest pair
22 define check-product-copy-files
23 $(if $(filter %.apk, $(1)),$(error \
24     Prebuilt apk found in PRODUCT_COPY_FILES: $(1), use BUILD_PREBUILT instead!))
25 endef
26 # filter out the duplicate <source file>:<dest file> pairs.
27 unique_product_copy_files_pairs :=
28 $(foreach cf,$(PRODUCT_COPY_FILES), \
29     $(if $(filter $(unique_product_copy_files_pairs),$(cf)),,\
30         $(eval unique_product_copy_files_pairs += $(cf))))
31 unique_product_copy_files_destinations :=
32 $(foreach cf,$(unique_product_copy_files_pairs), \
33     $(eval _src := $(call word-colon,1,$(cf))) \
34     $(eval _dest := $(call word-colon,2,$(cf))) \
35     $(call check-product-copy-files,$(cf)) \
36     $(if $(filter $(unique_product_copy_files_destinations),$(_dest)), \
37         $(info PRODUCT_COPY_FILES $(cf) ignored.), \
38         $(eval _fulldest := $(call append-path,$(PRODUCT_OUT),$(_dest))) \
39         $(if $(filter %.xml,$(_dest)),\
40             $(eval $(call copy-xml-file-checked,$(_src),$(_fulldest))),\
41             $(eval $(call copy-one-file,$(_src),$(_fulldest)))) \
42         $(eval ALL_DEFAULT_INSTALLED_MODULES += $(_fulldest)) \
43         $(eval unique_product_copy_files_destinations += $(_dest))))
44 unique_product_copy_files_pairs :=
45 unique_product_copy_files_destinations :=
46
47 # -----------------------------------------------------------------
48 # docs/index.html
49 ifeq (,$(TARGET_BUILD_APPS))
50 gen := $(OUT_DOCS)/index.html
51 ALL_DOCS += $(gen)
52 $(gen): frameworks/base/docs/docs-redirect-index.html
53         @mkdir -p $(dir $@)
54         @cp -f $< $@
55 endif
56
57 # -----------------------------------------------------------------
58 # default.prop
59 INSTALLED_DEFAULT_PROP_TARGET := $(TARGET_ROOT_OUT)/default.prop
60 ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_DEFAULT_PROP_TARGET)
61 ADDITIONAL_DEFAULT_PROPERTIES := \
62     $(call collapse-pairs, $(ADDITIONAL_DEFAULT_PROPERTIES))
63 ADDITIONAL_DEFAULT_PROPERTIES += \
64     $(call collapse-pairs, $(PRODUCT_DEFAULT_PROPERTY_OVERRIDES))
65 ADDITIONAL_DEFAULT_PROPERTIES := $(call uniq-pairs-by-first-component, \
66     $(ADDITIONAL_DEFAULT_PROPERTIES),=)
67
68 $(INSTALLED_DEFAULT_PROP_TARGET):
69         @echo Target buildinfo: $@
70         @mkdir -p $(dir $@)
71         $(hide) echo "#" > $@; \
72                 echo "# ADDITIONAL_DEFAULT_PROPERTIES" >> $@; \
73                 echo "#" >> $@;
74         $(hide) $(foreach line,$(ADDITIONAL_DEFAULT_PROPERTIES), \
75                 echo "$(line)" >> $@;)
76         build/tools/post_process_props.py $@
77
78 # -----------------------------------------------------------------
79 # build.prop
80 INSTALLED_BUILD_PROP_TARGET := $(TARGET_OUT)/build.prop
81 ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_BUILD_PROP_TARGET)
82 ADDITIONAL_BUILD_PROPERTIES := \
83     $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))
84 ADDITIONAL_BUILD_PROPERTIES := $(call uniq-pairs-by-first-component, \
85     $(ADDITIONAL_BUILD_PROPERTIES),=)
86
87 # A list of arbitrary tags describing the build configuration.
88 # Force ":=" so we can use +=
89 BUILD_VERSION_TAGS := $(BUILD_VERSION_TAGS)
90 ifeq ($(TARGET_BUILD_TYPE),debug)
91   BUILD_VERSION_TAGS += debug
92 endif
93 # The "test-keys" tag marks builds signed with the old test keys,
94 # which are available in the SDK.  "dev-keys" marks builds signed with
95 # non-default dev keys (usually private keys from a vendor directory).
96 # Both of these tags will be removed and replaced with "release-keys"
97 # when the target-files is signed in a post-build step.
98 ifeq ($(DEFAULT_SYSTEM_DEV_CERTIFICATE),build/target/product/security/testkey)
99 BUILD_VERSION_TAGS += test-keys
100 else
101 BUILD_VERSION_TAGS += dev-keys
102 endif
103 BUILD_VERSION_TAGS := $(subst $(space),$(comma),$(sort $(BUILD_VERSION_TAGS)))
104
105 # A human-readable string that descibes this build in detail.
106 build_desc := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT) $(PLATFORM_VERSION) $(BUILD_ID) $(BUILD_NUMBER) $(BUILD_VERSION_TAGS)
107 $(INSTALLED_BUILD_PROP_TARGET): PRIVATE_BUILD_DESC := $(build_desc)
108
109 # The string used to uniquely identify this build;  used by the OTA server.
110 ifeq (,$(strip $(BUILD_FINGERPRINT)))
111   BUILD_FINGERPRINT := $(PRODUCT_BRAND)/$(TARGET_PRODUCT)/$(TARGET_DEVICE):$(PLATFORM_VERSION)/$(BUILD_ID)/$(BUILD_NUMBER):$(TARGET_BUILD_VARIANT)/$(BUILD_VERSION_TAGS)
112 endif
113 ifneq ($(words $(BUILD_FINGERPRINT)),1)
114   $(error BUILD_FINGERPRINT cannot contain spaces: "$(BUILD_FINGERPRINT)")
115 endif
116
117 # Display parameters shown under Settings -> About Phone
118 ifeq ($(TARGET_BUILD_VARIANT),user)
119   # User builds should show:
120   # release build number or branch.buld_number non-release builds
121
122   # Dev. branches should have DISPLAY_BUILD_NUMBER set
123   ifeq "true" "$(DISPLAY_BUILD_NUMBER)"
124     BUILD_DISPLAY_ID := $(BUILD_ID).$(BUILD_NUMBER)
125   else
126     BUILD_DISPLAY_ID := $(BUILD_ID)
127   endif
128 else
129   # Non-user builds should show detailed build information
130   BUILD_DISPLAY_ID := $(build_desc)
131 endif
132
133 # Whether there is default locale set in PRODUCT_PROPERTY_OVERRIDES
134 product_property_override_locale_language := $(strip \
135     $(patsubst ro.product.locale.language=%,%,\
136     $(filter ro.product.locale.language=%,$(PRODUCT_PROPERTY_OVERRIDES))))
137 product_property_overrides_locale_region := $(strip \
138     $(patsubst ro.product.locale.region=%,%,\
139     $(filter ro.product.locale.region=%,$(PRODUCT_PROPERTY_OVERRIDES))))
140
141 # Selects the first locale in the list given as the argument,
142 # and splits it into language and region, which each may be
143 # empty.
144 define default-locale
145 $(subst _, , $(firstword $(1)))
146 endef
147
148 # Selects the first locale in the list given as the argument
149 # and returns the language (or the region), if it's not set in PRODUCT_PROPERTY_OVERRIDES;
150 # Return empty string if it's already set in PRODUCT_PROPERTY_OVERRIDES.
151 define default-locale-language
152 $(if $(product_property_override_locale_language),,$(word 1, $(call default-locale, $(1))))
153 endef
154 define default-locale-region
155 $(if $(product_property_overrides_locale_region),,$(word 2, $(call default-locale, $(1))))
156 endef
157
158 BUILDINFO_SH := build/tools/buildinfo.sh
159
160 ifdef TARGET_SYSTEM_PROP
161 system_prop_file := $(TARGET_SYSTEM_PROP)
162 else
163 system_prop_file := $(wildcard $(TARGET_DEVICE_DIR)/system.prop)
164 endif
165
166 $(INSTALLED_BUILD_PROP_TARGET): $(BUILDINFO_SH) $(INTERNAL_BUILD_ID_MAKEFILE) $(BUILD_SYSTEM)/version_defaults.mk $(system_prop_file)
167         @echo Target buildinfo: $@
168         @mkdir -p $(dir $@)
169         $(hide) TARGET_BUILD_TYPE="$(TARGET_BUILD_VARIANT)" \
170                         TARGET_DEVICE="$(TARGET_DEVICE)" \
171                         PRODUCT_NAME="$(TARGET_PRODUCT)" \
172                         PRODUCT_BRAND="$(PRODUCT_BRAND)" \
173                         PRODUCT_DEFAULT_LANGUAGE="$(call default-locale-language,$(PRODUCT_LOCALES))" \
174                         PRODUCT_DEFAULT_REGION="$(call default-locale-region,$(PRODUCT_LOCALES))" \
175                         PRODUCT_DEFAULT_WIFI_CHANNELS="$(PRODUCT_DEFAULT_WIFI_CHANNELS)" \
176                         PRODUCT_MODEL="$(PRODUCT_MODEL)" \
177                         PRODUCT_MANUFACTURER="$(PRODUCT_MANUFACTURER)" \
178                         PRIVATE_BUILD_DESC="$(PRIVATE_BUILD_DESC)" \
179                         BUILD_ID="$(BUILD_ID)" \
180                         BUILD_DISPLAY_ID="$(BUILD_DISPLAY_ID)" \
181                         BUILD_NUMBER="$(BUILD_NUMBER)" \
182                         PLATFORM_VERSION="$(PLATFORM_VERSION)" \
183                         PLATFORM_SDK_VERSION="$(PLATFORM_SDK_VERSION)" \
184                         PLATFORM_VERSION_CODENAME="$(PLATFORM_VERSION_CODENAME)" \
185                         BUILD_VERSION_TAGS="$(BUILD_VERSION_TAGS)" \
186                         TARGET_BOOTLOADER_BOARD_NAME="$(TARGET_BOOTLOADER_BOARD_NAME)" \
187                         BUILD_FINGERPRINT="$(BUILD_FINGERPRINT)" \
188                         TARGET_BOARD_PLATFORM="$(TARGET_BOARD_PLATFORM)" \
189                         TARGET_CPU_ABI="$(TARGET_CPU_ABI)" \
190                         TARGET_CPU_ABI2="$(TARGET_CPU_ABI2)" \
191                         TARGET_AAPT_CHARACTERISTICS="$(TARGET_AAPT_CHARACTERISTICS)" \
192                 bash $(BUILDINFO_SH) > $@
193         $(hide) if [ -f "$(system_prop_file)" ]; then \
194                   cat $(system_prop_file) >> $@; \
195                 fi
196         $(if $(ADDITIONAL_BUILD_PROPERTIES), \
197                 $(hide) echo >> $@; \
198                         echo "#" >> $@; \
199                         echo "# ADDITIONAL_BUILD_PROPERTIES" >> $@; \
200                         echo "#" >> $@; )
201         $(hide) $(foreach line,$(ADDITIONAL_BUILD_PROPERTIES), \
202                 echo "$(line)" >> $@;)
203         $(hide) build/tools/post_process_props.py $@
204
205 build_desc :=
206
207 # -----------------------------------------------------------------
208 # sdk-build.prop
209 #
210 # There are certain things in build.prop that we don't want to
211 # ship with the sdk; remove them.
212
213 # This must be a list of entire property keys followed by
214 # "=" characters, without any internal spaces.
215 sdk_build_prop_remove := \
216         ro.build.user= \
217         ro.build.host= \
218         ro.product.brand= \
219         ro.product.manufacturer= \
220         ro.product.device=
221 # TODO: Remove this soon-to-be obsolete property
222 sdk_build_prop_remove += ro.build.product=
223 INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop
224 $(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET)
225         @echo SDK buildinfo: $@
226         @mkdir -p $(dir $@)
227         $(hide) grep -v "$(subst $(space),\|,$(strip \
228                                 $(sdk_build_prop_remove)))" $< > $@.tmp
229         $(hide) for x in $(sdk_build_prop_remove); do \
230                                 echo "$$x"generic >> $@.tmp; done
231         $(hide) mv $@.tmp $@
232
233 # -----------------------------------------------------------------
234 # package stats
235 PACKAGE_STATS_FILE := $(PRODUCT_OUT)/package-stats.txt
236 PACKAGES_TO_STAT := \
237     $(sort $(filter $(TARGET_OUT)/% $(TARGET_OUT_DATA)/%, \
238         $(filter %.jar %.apk, $(ALL_DEFAULT_INSTALLED_MODULES))))
239 $(PACKAGE_STATS_FILE): $(PACKAGES_TO_STAT)
240         @echo Package stats: $@
241         @mkdir -p $(dir $@)
242         $(hide) rm -f $@
243         $(hide) build/tools/dump-package-stats $^ > $@
244
245 .PHONY: package-stats
246 package-stats: $(PACKAGE_STATS_FILE)
247
248 # -----------------------------------------------------------------
249 # Cert-to-package mapping.  Used by the post-build signing tools.
250 # Use a macro to add newline to each echo command
251 define _apkcerts_echo_with_newline
252 $(hide) echo $(1)
253
254 endef
255
256 name := $(TARGET_PRODUCT)
257 ifeq ($(TARGET_BUILD_TYPE),debug)
258   name := $(name)_debug
259 endif
260 name := $(name)-apkcerts-$(FILE_NAME_TAG)
261 intermediates := \
262         $(call intermediates-dir-for,PACKAGING,apkcerts)
263 APKCERTS_FILE := $(intermediates)/$(name).txt
264 # We don't need to really build all the modules.
265 # TODO: rebuild APKCERTS_FILE if any app change its cert.
266 $(APKCERTS_FILE):
267         @echo APK certs list: $@
268         @mkdir -p $(dir $@)
269         @rm -f $@
270         $(foreach p,$(PACKAGES),\
271           $(if $(PACKAGES.$(p).EXTERNAL_KEY),\
272             $(call _apkcerts_echo_with_newline,\
273               'name="$(p).apk" certificate="EXTERNAL" \
274               private_key=""' >> $@),\
275             $(call _apkcerts_echo_with_newline,\
276               'name="$(p).apk" certificate="$(PACKAGES.$(p).CERTIFICATE)" \
277               private_key="$(PACKAGES.$(p).PRIVATE_KEY)"' >> $@)))
278         # In case value of PACKAGES is empty.
279         $(hide) touch $@
280
281 .PHONY: apkcerts-list
282 apkcerts-list: $(APKCERTS_FILE)
283
284 ifneq (,$(TARGET_BUILD_APPS))
285   $(call dist-for-goals, apps_only, $(APKCERTS_FILE):apkcerts.txt)
286 endif
287
288 # -----------------------------------------------------------------
289 # module info file
290 ifdef CREATE_MODULE_INFO_FILE
291   MODULE_INFO_FILE := $(PRODUCT_OUT)/module-info.txt
292   $(info Generating $(MODULE_INFO_FILE)...)
293   $(shell rm -f $(MODULE_INFO_FILE))
294   $(foreach m,$(ALL_MODULES), \
295     $(shell echo "NAME=\"$(m)\"" \
296         "PATH=\"$(strip $(ALL_MODULES.$(m).PATH))\"" \
297         "TAGS=\"$(strip $(filter-out _%,$(ALL_MODULES.$(m).TAGS)))\"" \
298         "BUILT=\"$(strip $(ALL_MODULES.$(m).BUILT))\"" \
299         "INSTALLED=\"$(strip $(ALL_MODULES.$(m).INSTALLED))\"" >> $(MODULE_INFO_FILE)))
300 endif
301
302 # -----------------------------------------------------------------
303
304 # The dev key is used to sign this package, and as the key required
305 # for future OTA packages installed by this system.  Actual product
306 # deliverables will be re-signed by hand.  We expect this file to
307 # exist with the suffixes ".x509.pem" and ".pk8".
308 DEFAULT_KEY_CERT_PAIR := $(DEFAULT_SYSTEM_DEV_CERTIFICATE)
309
310
311 # Rules that need to be present for the all targets, even
312 # if they don't do anything.
313 .PHONY: systemimage
314 systemimage:
315
316 # -----------------------------------------------------------------
317
318 .PHONY: event-log-tags
319
320 # Produce an event logs tag file for everything we know about, in order
321 # to properly allocate numbers.  Then produce a file that's filtered
322 # for what's going to be installed.
323
324 all_event_log_tags_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt
325
326 event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags
327
328 # Include tags from all packages that we know about
329 all_event_log_tags_src := \
330     $(sort $(foreach m, $(ALL_MODULES), $(ALL_MODULES.$(m).EVENT_LOG_TAGS)))
331
332 # PDK builds will already have a full list of tags that needs to get merged
333 # in with the ones from source
334 pdk_fusion_log_tags_file := $(patsubst $(PRODUCT_OUT)/%,$(_pdk_fusion_intermediates)/%,$(filter $(event_log_tags_file),$(ALL_PDK_FUSION_FILES)))
335
336 $(all_event_log_tags_file): PRIVATE_SRC_FILES := $(all_event_log_tags_src) $(pdk_fusion_log_tags_file)
337 $(all_event_log_tags_file): $(all_event_log_tags_src) $(pdk_fusion_log_tags_file)
338         $(hide) mkdir -p $(dir $@)
339         $(hide) build/tools/merge-event-log-tags.py -o $@ $(PRIVATE_SRC_FILES)
340
341 # Include tags from all packages included in this product, plus all
342 # tags that are part of the system (ie, not in a vendor/ or device/
343 # directory).
344 event_log_tags_src := \
345     $(sort $(foreach m,\
346       $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES) \
347       $(call module-names-for-tag-list,user), \
348       $(ALL_MODULES.$(m).EVENT_LOG_TAGS)) \
349       $(filter-out vendor/% device/% out/%,$(all_event_log_tags_src)))
350
351 $(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src) $(pdk_fusion_log_tags_file)
352 $(event_log_tags_file): PRIVATE_MERGED_FILE := $(all_event_log_tags_file)
353 $(event_log_tags_file): $(event_log_tags_src) $(all_event_log_tags_file) $(pdk_fusion_log_tags_file)
354         $(hide) mkdir -p $(dir $@)
355         $(hide) build/tools/merge-event-log-tags.py -o $@ -m $(PRIVATE_MERGED_FILE) $(PRIVATE_SRC_FILES)
356
357 event-log-tags: $(event_log_tags_file)
358
359 ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file)
360
361
362 # #################################################################
363 # Targets for boot/OS images
364 # #################################################################
365
366 # -----------------------------------------------------------------
367 # the ramdisk
368 INTERNAL_RAMDISK_FILES := $(filter $(TARGET_ROOT_OUT)/%, \
369         $(ALL_PREBUILT) \
370         $(ALL_COPIED_HEADERS) \
371         $(ALL_GENERATED_SOURCES) \
372         $(ALL_DEFAULT_INSTALLED_MODULES))
373
374 BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img
375
376 # We just build this directly to the install location.
377 INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET)
378 $(INSTALLED_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_RAMDISK_FILES) | $(MINIGZIP)
379         $(call pretty,"Target ram disk: $@")
380         $(hide) $(MKBOOTFS) $(TARGET_ROOT_OUT) | $(MINIGZIP) > $@
381
382
383 ifneq ($(strip $(TARGET_NO_KERNEL)),true)
384
385 # -----------------------------------------------------------------
386 # the boot image, which is a collection of other images.
387 INTERNAL_BOOTIMAGE_ARGS := \
388         $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \
389         --kernel $(INSTALLED_KERNEL_TARGET) \
390         --ramdisk $(INSTALLED_RAMDISK_TARGET)
391
392 INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS))
393
394 BOARD_KERNEL_CMDLINE := $(strip $(BOARD_KERNEL_CMDLINE))
395 ifdef BOARD_KERNEL_CMDLINE
396   INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(BOARD_KERNEL_CMDLINE)"
397 endif
398
399 BOARD_KERNEL_BASE := $(strip $(BOARD_KERNEL_BASE))
400 ifdef BOARD_KERNEL_BASE
401   INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE)
402 endif
403
404 BOARD_KERNEL_PAGESIZE := $(strip $(BOARD_KERNEL_PAGESIZE))
405 ifdef BOARD_KERNEL_PAGESIZE
406   INTERNAL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE)
407 endif
408
409 INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img
410
411 ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true)
412 tmp_dir_for_image := $(call intermediates-dir-for,EXECUTABLES,boot_img)/bootimg
413 INTERNAL_BOOTIMAGE_ARGS += --tmpdir $(tmp_dir_for_image)
414 INTERNAL_BOOTIMAGE_ARGS += --genext2fs $(MKEXT2IMG)
415 $(INSTALLED_BOOTIMAGE_TARGET): $(MKEXT2IMG) $(INTERNAL_BOOTIMAGE_FILES)
416         $(call pretty,"Target boot image: $@")
417         $(hide) $(MKEXT2BOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) --output $@
418
419 else # TARGET_BOOTIMAGE_USE_EXT2 != true
420
421 $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES)
422         $(call pretty,"Target boot image: $@")
423         $(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@
424         $(hide) $(call assert-max-image-size,$@,$(BOARD_BOOTIMAGE_PARTITION_SIZE),raw)
425 endif # TARGET_BOOTIMAGE_USE_EXT2
426
427 else    # TARGET_NO_KERNEL
428 # HACK: The top-level targets depend on the bootimage.  Not all targets
429 # can produce a bootimage, though, and emulator targets need the ramdisk
430 # instead.  Fake it out by calling the ramdisk the bootimage.
431 # TODO: make the emulator use bootimages, and make mkbootimg accept
432 #       kernel-less inputs.
433 INSTALLED_BOOTIMAGE_TARGET := $(INSTALLED_RAMDISK_TARGET)
434 endif
435
436 # -----------------------------------------------------------------
437 # NOTICE files
438 #
439 # We are required to publish the licenses for all code under BSD, GPL and
440 # Apache licenses (and possibly other more exotic ones as well). We err on the
441 # side of caution, so the licenses for other third-party code are included here
442 # too.
443 #
444 # This needs to be before the systemimage rules, because it adds to
445 # ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files
446 # go into the systemimage.
447
448 .PHONY: notice_files
449
450 # Create the rule to combine the files into text and html forms
451 # $(1) - Plain text output file
452 # $(2) - HTML output file
453 # $(3) - File title
454 # $(4) - Directory to use.  Notice files are all $(4)/src.  Other
455 #                directories in there will be used for scratch
456 # $(5) - Dependencies for the output files
457 #
458 # The algorithm here is that we go collect a hash for each of the notice
459 # files and write the names of the files that match that hash.  Then
460 # to generate the real files, we go print out all of the files and their
461 # hashes.
462 #
463 # These rules are fairly complex, so they depend on this makefile so if
464 # it changes, they'll run again.
465 #
466 # TODO: We could clean this up so that we just record the locations of the
467 # original notice files instead of making rules to copy them somwehere.
468 # Then we could traverse that without quite as much bash drama.
469 define combine-notice-files
470 $(1) $(2): PRIVATE_MESSAGE := $(3)
471 $(1) $(2): PRIVATE_DIR := $(4)
472 $(1) : $(2)
473 $(2) : $(5) $(BUILD_SYSTEM)/Makefile build/tools/generate-notice-files.py
474         build/tools/generate-notice-files.py $(1) $(2) $$(PRIVATE_MESSAGE) $$(PRIVATE_DIR)/src
475 notice_files: $(1) $(2)
476 endef
477
478 # TODO These intermediate NOTICE.txt/NOTICE.html files should go into
479 # TARGET_OUT_NOTICE_FILES now that the notice files are gathered from
480 # the src subdirectory.
481
482 target_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE.txt
483 target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html
484 target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz
485 tools_notice_file_txt := $(HOST_OUT_INTERMEDIATES)/NOTICE.txt
486 tools_notice_file_html := $(HOST_OUT_INTERMEDIATES)/NOTICE.html
487
488 kernel_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/kernel.txt
489 pdk_fusion_notice_files := $(filter $(TARGET_OUT_NOTICE_FILES)/%, $(ALL_PDK_FUSION_FILES))
490
491 $(eval $(call combine-notice-files, \
492                         $(target_notice_file_txt), \
493                         $(target_notice_file_html), \
494                         "Notices for files contained in the filesystem images in this directory:", \
495                         $(TARGET_OUT_NOTICE_FILES), \
496                         $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file) $(pdk_fusion_notice_files)))
497
498 $(eval $(call combine-notice-files, \
499                         $(tools_notice_file_txt), \
500                         $(tools_notice_file_html), \
501                         "Notices for files contained in the tools directory:", \
502                         $(HOST_OUT_NOTICE_FILES), \
503                         $(ALL_DEFAULT_INSTALLED_MODULES)))
504
505 # Install the html file at /system/etc/NOTICE.html.gz.
506 # This is not ideal, but this is very late in the game, after a lot of
507 # the module processing has already been done -- in fact, we used the
508 # fact that all that has been done to get the list of modules that we
509 # need notice files for.
510 $(target_notice_file_html_gz): $(target_notice_file_html) | $(MINIGZIP)
511         $(hide) $(MINIGZIP) -9 < $< > $@
512 installed_notice_html_gz := $(TARGET_OUT)/etc/NOTICE.html.gz
513 $(installed_notice_html_gz): $(target_notice_file_html_gz) | $(ACP)
514         $(copy-file-to-target)
515
516 # if we've been run my mm, mmm, etc, don't reinstall this every time
517 ifeq ($(ONE_SHOT_MAKEFILE),)
518 ALL_DEFAULT_INSTALLED_MODULES += $(installed_notice_html_gz)
519 endif
520
521 # The kernel isn't really a module, so to get its module file in there, we
522 # make the target NOTICE files depend on this particular file too, which will
523 # then be in the right directory for the find in combine-notice-files to work.
524 $(kernel_notice_file): \
525             prebuilts/qemu-kernel/arm/LINUX_KERNEL_COPYING \
526             | $(ACP)
527         @echo Copying: $@
528         $(hide) mkdir -p $(dir $@)
529         $(hide) $(ACP) $< $@
530
531
532 # -----------------------------------------------------------------
533 # Build a keystore with the authorized keys in it, used to verify the
534 # authenticity of downloaded OTA packages.
535 #
536 # This rule adds to ALL_DEFAULT_INSTALLED_MODULES, so it needs to come
537 # before the rules that use that variable to build the image.
538 ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT_ETC)/security/otacerts.zip
539 $(TARGET_OUT_ETC)/security/otacerts.zip: KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR)
540 $(TARGET_OUT_ETC)/security/otacerts.zip: $(addsuffix .x509.pem,$(DEFAULT_KEY_CERT_PAIR))
541         $(hide) rm -f $@
542         $(hide) mkdir -p $(dir $@)
543         $(hide) zip -qj $@ $<
544
545 .PHONY: otacerts
546 otacerts: $(TARGET_OUT_ETC)/security/otacerts.zip
547
548
549 # #################################################################
550 # Targets for user images
551 # #################################################################
552
553 INTERNAL_USERIMAGES_EXT_VARIANT :=
554 ifeq ($(TARGET_USERIMAGES_USE_EXT2),true)
555 INTERNAL_USERIMAGES_USE_EXT := true
556 INTERNAL_USERIMAGES_EXT_VARIANT := ext2
557 else
558 ifeq ($(TARGET_USERIMAGES_USE_EXT3),true)
559 INTERNAL_USERIMAGES_USE_EXT := true
560 INTERNAL_USERIMAGES_EXT_VARIANT := ext3
561 else
562 ifeq ($(TARGET_USERIMAGES_USE_EXT4),true)
563 INTERNAL_USERIMAGES_USE_EXT := true
564 INTERNAL_USERIMAGES_EXT_VARIANT := ext4
565 endif
566 endif
567 endif
568
569 ifneq (true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED))
570   INTERNAL_USERIMAGES_SPARSE_EXT_FLAG := -s
571 endif
572
573 ifeq ($(INTERNAL_USERIMAGES_USE_EXT),true)
574 INTERNAL_USERIMAGES_DEPS := $(MKEXTUSERIMG) $(MAKE_EXT4FS) $(SIMG2IMG) $(E2FSCK)
575 else
576 INTERNAL_USERIMAGES_DEPS := $(MKYAFFS2)
577 endif
578 INTERNAL_USERIMAGES_BINARY_PATHS := $(sort $(dir $(INTERNAL_USERIMAGES_DEPS)))
579
580 SELINUX_FC := $(TARGET_ROOT_OUT)/file_contexts
581 INTERNAL_USERIMAGES_DEPS += $(SELINUX_FC)
582
583 # $(1): the path of the output dictionary file
584 define generate-userimage-prop-dictionary
585 $(if $(INTERNAL_USERIMAGES_EXT_VARIANT),$(hide) echo "fs_type=$(INTERNAL_USERIMAGES_EXT_VARIANT)" >> $(1))
586 $(if $(BOARD_SYSTEMIMAGE_PARTITION_SIZE),$(hide) echo "system_size=$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)" >> $(1))
587 $(if $(BOARD_USERDATAIMAGE_PARTITION_SIZE),$(hide) echo "userdata_size=$(BOARD_USERDATAIMAGE_PARTITION_SIZE)" >> $(1))
588 $(if $(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "cache_fs_type=$(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE)" >> $(1))
589 $(if $(BOARD_CACHEIMAGE_PARTITION_SIZE),$(hide) echo "cache_size=$(BOARD_CACHEIMAGE_PARTITION_SIZE)" >> $(1))
590 $(if $(INTERNAL_USERIMAGES_SPARSE_EXT_FLAG),$(hide) echo "extfs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_EXT_FLAG)" >> $(1))
591 $(if $(mkyaffs2_extra_flags),$(hide) echo "mkyaffs2_extra_flags=$(mkyaffs2_extra_flags)" >> $(1))
592 $(hide) echo "selinux_fc=$(SELINUX_FC)" >> $(1)
593 endef
594
595 # -----------------------------------------------------------------
596 # Recovery image
597
598 # If neither TARGET_NO_KERNEL nor TARGET_NO_RECOVERY are true
599 ifeq (,$(filter true, $(TARGET_NO_KERNEL) $(TARGET_NO_RECOVERY)))
600
601 INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img
602
603 recovery_initrc := $(call include-path-for, recovery)/etc/init.rc
604 recovery_kernel := $(INSTALLED_KERNEL_TARGET) # same as a non-recovery system
605 recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img
606 recovery_build_prop := $(INSTALLED_BUILD_PROP_TARGET)
607 recovery_binary := $(call intermediates-dir-for,EXECUTABLES,recovery)/recovery
608 recovery_resources_common := $(call include-path-for, recovery)/res
609 recovery_resources_private := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery/res))
610 recovery_resource_deps := $(shell find $(recovery_resources_common) \
611   $(recovery_resources_private) -type f)
612 ifdef TARGET_RECOVERY_FSTAB
613 recovery_fstab := $(TARGET_RECOVERY_FSTAB)
614 else
615 recovery_fstab := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery.fstab))
616 endif
617 # Named '.dat' so we don't attempt to use imgdiff for patching it.
618 RECOVERY_RESOURCE_ZIP := $(TARGET_OUT)/etc/recovery-resource.dat
619
620 ifeq ($(recovery_resources_private),)
621   $(info No private recovery resources for TARGET_DEVICE $(TARGET_DEVICE))
622 endif
623
624 ifeq ($(recovery_fstab),)
625   $(info No recovery.fstab for TARGET_DEVICE $(TARGET_DEVICE))
626 endif
627
628 INTERNAL_RECOVERYIMAGE_ARGS := \
629         $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \
630         --kernel $(recovery_kernel) \
631         --ramdisk $(recovery_ramdisk)
632
633 # Assumes this has already been stripped
634 ifdef BOARD_KERNEL_CMDLINE
635   INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(BOARD_KERNEL_CMDLINE)"
636 endif
637 ifdef BOARD_KERNEL_BASE
638   INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE)
639 endif
640 BOARD_KERNEL_PAGESIZE := $(strip $(BOARD_KERNEL_PAGESIZE))
641 ifdef BOARD_KERNEL_PAGESIZE
642   INTERNAL_RECOVERYIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE)
643 endif
644
645 # Keys authorized to sign OTA packages this build will accept.  The
646 # build always uses dev-keys for this; release packaging tools will
647 # substitute other keys for this one.
648 OTA_PUBLIC_KEYS := $(DEFAULT_SYSTEM_DEV_CERTIFICATE).x509.pem
649
650 # Generate a file containing the keys that will be read by the
651 # recovery binary.
652 RECOVERY_INSTALL_OTA_KEYS := \
653         $(call intermediates-dir-for,PACKAGING,ota_keys)/keys
654 DUMPKEY_JAR := $(HOST_OUT_JAVA_LIBRARIES)/dumpkey.jar
655 $(RECOVERY_INSTALL_OTA_KEYS): PRIVATE_OTA_PUBLIC_KEYS := $(OTA_PUBLIC_KEYS)
656 $(RECOVERY_INSTALL_OTA_KEYS): extra_keys := $(patsubst %,%.x509.pem,$(PRODUCT_EXTRA_RECOVERY_KEYS))
657 $(RECOVERY_INSTALL_OTA_KEYS): $(OTA_PUBLIC_KEYS) $(DUMPKEY_JAR) $(extra_keys)
658         @echo "DumpPublicKey: $@ <= $(PRIVATE_OTA_PUBLIC_KEYS) $(extra_keys)"
659         @rm -rf $@
660         @mkdir -p $(dir $@)
661         java -jar $(DUMPKEY_JAR) $(PRIVATE_OTA_PUBLIC_KEYS) $(extra_keys) > $@
662
663 $(INSTALLED_RECOVERYIMAGE_TARGET): $(MKBOOTFS) $(MKBOOTIMG) $(MINIGZIP) \
664                 $(INSTALLED_RAMDISK_TARGET) \
665                 $(INSTALLED_BOOTIMAGE_TARGET) \
666                 $(recovery_binary) \
667                 $(recovery_initrc) $(recovery_kernel) \
668                 $(INSTALLED_2NDBOOTLOADER_TARGET) \
669                 $(recovery_build_prop) $(recovery_resource_deps) \
670                 $(recovery_fstab) \
671                 $(RECOVERY_INSTALL_OTA_KEYS)
672         @echo ----- Making recovery image ------
673         $(hide) rm -rf $(TARGET_RECOVERY_OUT)
674         $(hide) mkdir -p $(TARGET_RECOVERY_OUT)
675         $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/etc $(TARGET_RECOVERY_ROOT_OUT)/tmp
676         @echo Copying baseline ramdisk...
677         $(hide) cp -R $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT)
678         @echo Modifying ramdisk contents...
679         $(hide) rm -f $(TARGET_RECOVERY_ROOT_OUT)/init*.rc
680         $(hide) cp -f $(recovery_initrc) $(TARGET_RECOVERY_ROOT_OUT)/
681         $(hide) -cp $(TARGET_ROOT_OUT)/init.recovery.*.rc $(TARGET_RECOVERY_ROOT_OUT)/
682         $(hide) cp -f $(recovery_binary) $(TARGET_RECOVERY_ROOT_OUT)/sbin/
683         $(hide) cp -rf $(recovery_resources_common) $(TARGET_RECOVERY_ROOT_OUT)/
684         $(hide) $(foreach item,$(recovery_resources_private), \
685           cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/)
686         $(hide) $(foreach item,$(recovery_fstab), \
687           cp -f $(item) $(TARGET_RECOVERY_ROOT_OUT)/etc/recovery.fstab)
688         $(hide) cp $(RECOVERY_INSTALL_OTA_KEYS) $(TARGET_RECOVERY_ROOT_OUT)/res/keys
689         $(hide) cat $(INSTALLED_DEFAULT_PROP_TARGET) $(recovery_build_prop) \
690                 > $(TARGET_RECOVERY_ROOT_OUT)/default.prop
691         $(hide) $(MKBOOTFS) $(TARGET_RECOVERY_ROOT_OUT) | $(MINIGZIP) > $(recovery_ramdisk)
692         $(hide) $(MKBOOTIMG) $(INTERNAL_RECOVERYIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@
693         $(hide) $(call assert-max-image-size,$@,$(BOARD_RECOVERYIMAGE_PARTITION_SIZE),raw)
694         @echo ----- Made recovery image: $@ --------
695
696 $(RECOVERY_RESOURCE_ZIP): $(INSTALLED_RECOVERYIMAGE_TARGET)
697         $(hide) mkdir -p $(dir $@)
698         $(hide) find $(TARGET_RECOVERY_ROOT_OUT)/res -type f | sort | zip -0qrj $@ -@
699
700 else
701 INSTALLED_RECOVERYIMAGE_TARGET :=
702 RECOVERY_RESOURCE_ZIP :=
703 endif
704
705 .PHONY: recoveryimage
706 recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET) $(RECOVERY_RESOURCE_ZIP)
707
708 ifneq ($(BOARD_NAND_PAGE_SIZE),)
709 mkyaffs2_extra_flags := -c $(BOARD_NAND_PAGE_SIZE)
710 else
711 mkyaffs2_extra_flags :=
712 BOARD_NAND_PAGE_SIZE := 2048
713 endif
714
715 ifneq ($(BOARD_NAND_SPARE_SIZE),)
716 mkyaffs2_extra_flags += -s $(BOARD_NAND_SPARE_SIZE)
717 else
718 BOARD_NAND_SPARE_SIZE := 64
719 endif
720
721 # -----------------------------------------------------------------
722 # system image
723 #
724 # Remove overridden packages from $(ALL_PDK_FUSION_FILES)
725 PDK_FUSION_SYSIMG_FILES := \
726     $(filter-out $(foreach p,$(overridden_packages),$(p) %/$(p).apk), \
727         $(ALL_PDK_FUSION_FILES))
728
729 INTERNAL_SYSTEMIMAGE_FILES := $(filter $(TARGET_OUT)/%, \
730     $(ALL_PREBUILT) \
731     $(ALL_COPIED_HEADERS) \
732     $(ALL_GENERATED_SOURCES) \
733     $(ALL_DEFAULT_INSTALLED_MODULES) \
734     $(PDK_FUSION_SYSIMG_FILES) \
735     $(RECOVERY_RESOURCE_ZIP))
736
737 ifdef is_tests_build
738 # We don't want to install tests modules to the system partition
739 # when building "tests", because now "tests" may be built in a user, userdebug
740 # or eng build variant and we don't want to pollute the system partition.
741 # INTERNAL_SYSTEMIMAGE_FILES += $(filter $(TARGET_OUT)/%, \
742 #    $(tests_MODULES))
743 endif
744
745 FULL_SYSTEMIMAGE_DEPS := $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_USERIMAGES_DEPS)
746 # -----------------------------------------------------------------
747 # installed file list
748 # Depending on anything that $(BUILT_SYSTEMIMAGE) depends on.
749 # We put installed-files.txt ahead of image itself in the dependency graph
750 # so that we can get the size stat even if the build fails due to too large
751 # system image.
752 INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt
753 $(INSTALLED_FILES_FILE): $(FULL_SYSTEMIMAGE_DEPS)
754         @echo Installed file list: $@
755         @mkdir -p $(dir $@)
756         @rm -f $@
757         $(hide) build/tools/fileslist.py $(TARGET_OUT) > $@
758
759 .PHONY: installed-file-list
760 installed-file-list: $(INSTALLED_FILES_FILE)
761 ifneq ($(filter sdk win_sdk,$(MAKECMDGOALS)),)
762 $(call dist-for-goals, sdk win_sdk, $(INSTALLED_FILES_FILE))
763 endif
764 ifneq ($(filter sdk_addon,$(MAKECMDGOALS)),)
765 $(call dist-for-goals, sdk_addon, $(INSTALLED_FILES_FILE))
766 endif
767
768 systemimage_intermediates := \
769     $(call intermediates-dir-for,PACKAGING,systemimage)
770 BUILT_SYSTEMIMAGE := $(systemimage_intermediates)/system.img
771
772 # $(1): output file
773 define build-systemimage-target
774   @echo "Target system fs image: $(1)"
775   @mkdir -p $(dir $(1)) $(systemimage_intermediates) && rm -rf $(systemimage_intermediates)/system_image_info.txt
776   $(call generate-userimage-prop-dictionary, $(systemimage_intermediates)/system_image_info.txt)
777   $(hide) PATH=$(foreach p,$(INTERNAL_USERIMAGES_BINARY_PATHS),$(p):)$$PATH \
778       ./build/tools/releasetools/build_image.py \
779       $(TARGET_OUT) $(systemimage_intermediates)/system_image_info.txt $(1)
780 endef
781
782 $(BUILT_SYSTEMIMAGE): $(FULL_SYSTEMIMAGE_DEPS) $(INSTALLED_FILES_FILE)
783         $(call build-systemimage-target,$@)
784
785 INSTALLED_SYSTEMIMAGE := $(PRODUCT_OUT)/system.img
786 SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT)
787
788 # The system partition needs room for the recovery image as well.  We
789 # now store the recovery image as a binary patch using the boot image
790 # as the source (since they are very similar).  Generate the patch so
791 # we can see how big it's going to be, and include that in the system
792 # image size check calculation.
793 ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),)
794 intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch)
795 RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p
796 $(RECOVERY_FROM_BOOT_PATCH): $(INSTALLED_RECOVERYIMAGE_TARGET) \
797                              $(INSTALLED_BOOTIMAGE_TARGET) \
798                              $(HOST_OUT_EXECUTABLES)/imgdiff \
799                              $(HOST_OUT_EXECUTABLES)/bsdiff
800         @echo "Construct recovery from boot"
801         mkdir -p $(dir $@)
802         PATH=$(HOST_OUT_EXECUTABLES):$$PATH $(HOST_OUT_EXECUTABLES)/imgdiff $(INSTALLED_BOOTIMAGE_TARGET) $(INSTALLED_RECOVERYIMAGE_TARGET) $@
803 endif
804
805
806 $(INSTALLED_SYSTEMIMAGE): $(BUILT_SYSTEMIMAGE) $(RECOVERY_FROM_BOOT_PATCH) | $(ACP)
807         @echo "Install system fs image: $@"
808         $(copy-file-to-target)
809         $(hide) $(call assert-max-image-size,$@ $(RECOVERY_FROM_BOOT_PATCH),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE),yaffs)
810
811 systemimage: $(INSTALLED_SYSTEMIMAGE)
812
813 .PHONY: systemimage-nodeps snod
814 systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \
815                     | $(INTERNAL_USERIMAGES_DEPS)
816         @echo "make $@: ignoring dependencies"
817         $(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE))
818         $(hide) $(call assert-max-image-size,$(INSTALLED_SYSTEMIMAGE),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE),yaffs)
819
820 ifneq (,$(filter systemimage-nodeps snod, $(MAKECMDGOALS)))
821 ifeq (true,$(WITH_DEXPREOPT))
822 $(warning Warning: with dexpreopt enabled, you may need a full rebuild.)
823 endif
824 endif
825
826 #######
827 ## system tarball
828 define build-systemtarball-target
829     $(call pretty,"Target system fs tarball: $(INSTALLED_SYSTEMTARBALL_TARGET)")
830     $(MKTARBALL) $(FS_GET_STATS) \
831                 $(PRODUCT_OUT) system $(PRIVATE_SYSTEM_TAR) \
832                 $(INSTALLED_SYSTEMTARBALL_TARGET)
833 endef
834
835 ifndef SYSTEM_TARBALL_FORMAT
836     SYSTEM_TARBALL_FORMAT := bz2
837 endif
838
839 system_tar := $(PRODUCT_OUT)/system.tar
840 INSTALLED_SYSTEMTARBALL_TARGET := $(system_tar).$(SYSTEM_TARBALL_FORMAT)
841 $(INSTALLED_SYSTEMTARBALL_TARGET): PRIVATE_SYSTEM_TAR := $(system_tar)
842 $(INSTALLED_SYSTEMTARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_SYSTEMIMAGE_FILES)
843         $(build-systemtarball-target)
844
845 .PHONY: systemtarball-nodeps
846 systemtarball-nodeps: $(FS_GET_STATS) \
847                       $(filter-out systemtarball-nodeps stnod,$(MAKECMDGOALS))
848         $(build-systemtarball-target)
849
850 .PHONY: stnod
851 stnod: systemtarball-nodeps
852
853 # For platform-java goal, add platform as well
854 ifneq (,$(filter platform-java, $(MAKECMDGOALS)))
855 PLATFORM_ZIP_ADD_JAVA := true
856 endif
857
858 #######
859 ## platform.zip: system, plus other files to be used in PDK fusion build,
860 ## in a zip file
861 INSTALLED_PLATFORM_ZIP := $(PRODUCT_OUT)/platform.zip
862 $(INSTALLED_PLATFORM_ZIP) : $(INTERNAL_SYSTEMIMAGE_FILES)
863         $(call pretty,"Platform zip package: $(INSTALLED_PLATFORM_ZIP)")
864         $(hide) rm -f $@
865         $(hide) cd $(dir $@) && zip -qry $(notdir $@) \
866                 $(TARGET_COPY_OUT_SYSTEM) \
867                 $(patsubst $(PRODUCT_OUT)/%, %, $(TARGET_OUT_NOTICE_FILES)) \
868                 $(addprefix symbols/,$(PDK_SYMBOL_FILES_LIST))
869 ifeq (true,$(PLATFORM_ZIP_ADD_JAVA))
870         $(hide) cd $(OUT_DIR) && zip -qry $(patsubst $(OUT_DIR)/%,%,$@) $(PDK_PLATFORM_JAVA_ZIP_CONTENTS)
871 endif
872
873
874 .PHONY: platform
875 platform: $(INSTALLED_PLATFORM_ZIP)
876
877 .PHONY: platform-java
878 platform-java: platform
879
880 # Dist the platform.zip
881 ifneq (,$(filter platform platform-java, $(MAKECMDGOALS)))
882 $(call dist-for-goals, platform platform-java, $(INSTALLED_PLATFORM_ZIP))
883 endif
884
885 #######
886 ## boot tarball
887 define build-boottarball-target
888     $(hide) echo "Target boot fs tarball: $(INSTALLED_BOOTTARBALL_TARGET)"
889     $(hide) mkdir -p $(PRODUCT_OUT)/boot
890     $(hide) cp -f $(INTERNAL_BOOTIMAGE_FILES) $(PRODUCT_OUT)/boot/.
891     $(hide) echo $(BOARD_KERNEL_CMDLINE) > $(PRODUCT_OUT)/boot/cmdline
892     $(hide) $(MKTARBALL) $(FS_GET_STATS) \
893                  $(PRODUCT_OUT) boot $(PRIVATE_BOOT_TAR) \
894                  $(INSTALLED_BOOTTARBALL_TARGET)
895 endef
896
897 ifndef BOOT_TARBALL_FORMAT
898     BOOT_TARBALL_FORMAT := bz2
899 endif
900
901 boot_tar := $(PRODUCT_OUT)/boot.tar
902 INSTALLED_BOOTTARBALL_TARGET := $(boot_tar).$(BOOT_TARBALL_FORMAT)
903 $(INSTALLED_BOOTTARBALL_TARGET): PRIVATE_BOOT_TAR := $(boot_tar)
904 $(INSTALLED_BOOTTARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_BOOTIMAGE_FILES)
905         $(build-boottarball-target)
906
907 .PHONY: boottarball-nodeps btnod
908 boottarball-nodeps btnod: $(FS_GET_STATS) \
909                       $(filter-out boottarball-nodeps btnod,$(MAKECMDGOALS))
910         $(build-boottarball-target)
911
912
913 # -----------------------------------------------------------------
914 # data partition image
915 INTERNAL_USERDATAIMAGE_FILES := \
916     $(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES))
917
918 # If we build "tests" at the same time, make sure $(tests_MODULES) get covered.
919 ifdef is_tests_build
920 INTERNAL_USERDATAIMAGE_FILES += \
921     $(filter $(TARGET_OUT_DATA)/%,$(tests_MODULES))
922 endif
923
924 ifneq (true,$(BOARD_DONT_BUILD_USERDATA_IMG))
925 userdataimage_intermediates := \
926     $(call intermediates-dir-for,PACKAGING,userdata)
927 BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img
928
929 define build-userdataimage-target
930   $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)")
931   @mkdir -p $(TARGET_OUT_DATA)
932   @mkdir -p $(userdataimage_intermediates) && rm -rf $(userdataimage_intermediates)/userdata_image_info.txt
933   $(call generate-userimage-prop-dictionary, $(userdataimage_intermediates)/userdata_image_info.txt)
934   $(hide) PATH=$(foreach p,$(INTERNAL_USERIMAGES_BINARY_PATHS),$(p):)$$PATH \
935       ./build/tools/releasetools/build_image.py \
936       $(TARGET_OUT_DATA) $(userdataimage_intermediates)/userdata_image_info.txt $(INSTALLED_USERDATAIMAGE_TARGET)
937   $(hide) $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE),yaffs)
938 endef
939
940 # We just build this directly to the install location.
941 INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET)
942 $(INSTALLED_USERDATAIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) \
943                                    $(INTERNAL_USERDATAIMAGE_FILES)
944         $(build-userdataimage-target)
945
946 .PHONY: userdataimage-nodeps
947 userdataimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS)
948         $(build-userdataimage-target)
949
950 endif # no BOARD_DONT_BUILD_USERDATA_IMG
951
952 #######
953 ## data partition tarball
954 define build-userdatatarball-target
955     $(call pretty,"Target userdata fs tarball: " \
956                   "$(INSTALLED_USERDATATARBALL_TARGET)")
957     $(MKTARBALL) $(FS_GET_STATS) \
958                 $(PRODUCT_OUT) data $(PRIVATE_USERDATA_TAR) \
959                 $(INSTALLED_USERDATATARBALL_TARGET)
960 endef
961
962 userdata_tar := $(PRODUCT_OUT)/userdata.tar
963 INSTALLED_USERDATATARBALL_TARGET := $(userdata_tar).bz2
964 $(INSTALLED_USERDATATARBALL_TARGET): PRIVATE_USERDATA_TAR := $(userdata_tar)
965 $(INSTALLED_USERDATATARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_USERDATAIMAGE_FILES)
966         $(build-userdatatarball-target)
967
968 .PHONY: userdatatarball-nodeps
969 userdatatarball-nodeps: $(FS_GET_STATS)
970         $(build-userdatatarball-target)
971
972
973 # -----------------------------------------------------------------
974 # cache partition image
975 ifdef BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE
976 INTERNAL_CACHEIMAGE_FILES := \
977     $(filter $(TARGET_OUT_CACHE)/%,$(ALL_DEFAULT_INSTALLED_MODULES))
978
979 cacheimage_intermediates := \
980     $(call intermediates-dir-for,PACKAGING,cache)
981 BUILT_CACHEIMAGE_TARGET := $(PRODUCT_OUT)/cache.img
982
983 define build-cacheimage-target
984   $(call pretty,"Target cache fs image: $(INSTALLED_CACHEIMAGE_TARGET)")
985   @mkdir -p $(TARGET_OUT_CACHE)
986   @mkdir -p $(cacheimage_intermediates) && rm -rf $(cacheimage_intermediates)/cache_image_info.txt
987   $(call generate-userimage-prop-dictionary, $(cacheimage_intermediates)/cache_image_info.txt)
988   $(hide) PATH=$(foreach p,$(INTERNAL_USERIMAGES_BINARY_PATHS),$(p):)$$PATH \
989       ./build/tools/releasetools/build_image.py \
990       $(TARGET_OUT_CACHE) $(cacheimage_intermediates)/cache_image_info.txt $(INSTALLED_CACHEIMAGE_TARGET)
991   $(hide) $(call assert-max-image-size,$(INSTALLED_CACHEIMAGE_TARGET),$(BOARD_CACHEIMAGE_PARTITION_SIZE),yaffs)
992 endef
993
994 # We just build this directly to the install location.
995 INSTALLED_CACHEIMAGE_TARGET := $(BUILT_CACHEIMAGE_TARGET)
996 $(INSTALLED_CACHEIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES)
997         $(build-cacheimage-target)
998
999 .PHONY: cacheimage-nodeps
1000 cacheimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS)
1001         $(build-cacheimage-target)
1002
1003 endif # BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE
1004
1005 # -----------------------------------------------------------------
1006 # bring in the installer image generation defines if necessary
1007 ifeq ($(TARGET_USE_DISKINSTALLER),true)
1008 include bootable/diskinstaller/config.mk
1009 endif
1010
1011 # -----------------------------------------------------------------
1012 # host tools needed to build dist and OTA packages
1013
1014 DISTTOOLS :=  $(HOST_OUT_EXECUTABLES)/minigzip \
1015           $(HOST_OUT_EXECUTABLES)/mkbootfs \
1016           $(HOST_OUT_EXECUTABLES)/mkbootimg \
1017           $(HOST_OUT_EXECUTABLES)/fs_config \
1018           $(HOST_OUT_EXECUTABLES)/mkyaffs2image \
1019           $(HOST_OUT_EXECUTABLES)/zipalign \
1020           $(HOST_OUT_EXECUTABLES)/bsdiff \
1021           $(HOST_OUT_EXECUTABLES)/imgdiff \
1022           $(HOST_OUT_JAVA_LIBRARIES)/dumpkey.jar \
1023           $(HOST_OUT_JAVA_LIBRARIES)/signapk.jar \
1024           $(HOST_OUT_EXECUTABLES)/mkuserimg.sh \
1025           $(HOST_OUT_EXECUTABLES)/make_ext4fs \
1026           $(HOST_OUT_EXECUTABLES)/simg2img \
1027           $(HOST_OUT_EXECUTABLES)/e2fsck
1028
1029 OTATOOLS := $(DISTTOOLS) \
1030           $(HOST_OUT_EXECUTABLES)/aapt
1031
1032 .PHONY: otatools
1033 otatools: $(OTATOOLS)
1034
1035 # -----------------------------------------------------------------
1036 # A zip of the directories that map to the target filesystem.
1037 # This zip can be used to create an OTA package or filesystem image
1038 # as a post-build step.
1039 #
1040 name := $(TARGET_PRODUCT)
1041 ifeq ($(TARGET_BUILD_TYPE),debug)
1042   name := $(name)_debug
1043 endif
1044 name := $(name)-target_files-$(FILE_NAME_TAG)
1045
1046 intermediates := $(call intermediates-dir-for,PACKAGING,target_files)
1047 BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip
1048 $(BUILT_TARGET_FILES_PACKAGE): intermediates := $(intermediates)
1049 $(BUILT_TARGET_FILES_PACKAGE): \
1050                 zip_root := $(intermediates)/$(name)
1051
1052 # $(1): Directory to copy
1053 # $(2): Location to copy it to
1054 # The "ls -A" is to prevent "acp s/* d" from failing if s is empty.
1055 define package_files-copy-root
1056   if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \
1057     mkdir -p $(2) && \
1058     $(ACP) -rd $(strip $(1))/* $(2); \
1059   fi
1060 endef
1061
1062 built_ota_tools := \
1063         $(call intermediates-dir-for,EXECUTABLES,applypatch)/applypatch \
1064         $(call intermediates-dir-for,EXECUTABLES,applypatch_static)/applypatch_static \
1065         $(call intermediates-dir-for,EXECUTABLES,check_prereq)/check_prereq \
1066         $(call intermediates-dir-for,EXECUTABLES,sqlite3)/sqlite3 \
1067         $(call intermediates-dir-for,EXECUTABLES,updater)/updater
1068 $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_OTA_TOOLS := $(built_ota_tools)
1069
1070 $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_API_VERSION := $(RECOVERY_API_VERSION)
1071
1072 ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),)
1073 # default to common dir for device vendor
1074 $(BUILT_TARGET_FILES_PACKAGE): tool_extensions := $(TARGET_DEVICE_DIR)/../common
1075 else
1076 $(BUILT_TARGET_FILES_PACKAGE): tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS)
1077 endif
1078
1079 # Depending on the various images guarantees that the underlying
1080 # directories are up-to-date.
1081 $(BUILT_TARGET_FILES_PACKAGE): \
1082                 $(INSTALLED_BOOTIMAGE_TARGET) \
1083                 $(INSTALLED_RADIOIMAGE_TARGET) \
1084                 $(INSTALLED_RECOVERYIMAGE_TARGET) \
1085                 $(INSTALLED_SYSTEMIMAGE) \
1086                 $(INSTALLED_USERDATAIMAGE_TARGET) \
1087                 $(INSTALLED_CACHEIMAGE_TARGET) \
1088                 $(INSTALLED_ANDROID_INFO_TXT_TARGET) \
1089                 $(built_ota_tools) \
1090                 $(APKCERTS_FILE) \
1091                 $(HOST_OUT_EXECUTABLES)/fs_config \
1092                 | $(ACP)
1093         @echo "Package target files: $@"
1094         $(hide) rm -rf $@ $(zip_root)
1095         $(hide) mkdir -p $(dir $@) $(zip_root)
1096         @# Components of the recovery image
1097         $(hide) mkdir -p $(zip_root)/RECOVERY
1098         $(hide) $(call package_files-copy-root, \
1099                 $(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/RECOVERY/RAMDISK)
1100 ifdef INSTALLED_KERNEL_TARGET
1101         $(hide) $(ACP) $(INSTALLED_KERNEL_TARGET) $(zip_root)/RECOVERY/kernel
1102 endif
1103 ifdef INSTALLED_2NDBOOTLOADER_TARGET
1104         $(hide) $(ACP) \
1105                 $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/RECOVERY/second
1106 endif
1107 ifdef BOARD_KERNEL_CMDLINE
1108         $(hide) echo "$(BOARD_KERNEL_CMDLINE)" > $(zip_root)/RECOVERY/cmdline
1109 endif
1110 ifdef BOARD_KERNEL_BASE
1111         $(hide) echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/RECOVERY/base
1112 endif
1113 ifdef BOARD_KERNEL_PAGESIZE
1114         $(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/RECOVERY/pagesize
1115 endif
1116         @# Components of the boot image
1117         $(hide) mkdir -p $(zip_root)/BOOT
1118         $(hide) $(call package_files-copy-root, \
1119                 $(TARGET_ROOT_OUT),$(zip_root)/BOOT/RAMDISK)
1120 ifdef INSTALLED_KERNEL_TARGET
1121         $(hide) $(ACP) $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/kernel
1122 endif
1123 ifdef INSTALLED_2NDBOOTLOADER_TARGET
1124         $(hide) $(ACP) \
1125                 $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second
1126 endif
1127 ifdef BOARD_KERNEL_CMDLINE
1128         $(hide) echo "$(BOARD_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline
1129 endif
1130 ifdef BOARD_KERNEL_BASE
1131         $(hide) echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base
1132 endif
1133 ifdef BOARD_KERNEL_PAGESIZE
1134         $(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/BOOT/pagesize
1135 endif
1136         $(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\
1137                     mkdir -p $(zip_root)/RADIO; \
1138                     $(ACP) $(t) $(zip_root)/RADIO/$(notdir $(t));)
1139         @# Contents of the system image
1140         $(hide) $(call package_files-copy-root, \
1141                 $(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM)
1142         @# Contents of the data image
1143         $(hide) $(call package_files-copy-root, \
1144                 $(TARGET_OUT_DATA),$(zip_root)/DATA)
1145         @# Extra contents of the OTA package
1146         $(hide) mkdir -p $(zip_root)/OTA/bin
1147         $(hide) $(ACP) $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/
1148         $(hide) $(ACP) $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/
1149         @# Files that do not end up in any images, but are necessary to
1150         @# build them.
1151         $(hide) mkdir -p $(zip_root)/META
1152         $(hide) $(ACP) $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt
1153         $(hide) echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt
1154         $(hide) echo "recovery_api_version=$(PRIVATE_RECOVERY_API_VERSION)" > $(zip_root)/META/misc_info.txt
1155 ifdef BOARD_FLASH_BLOCK_SIZE
1156         $(hide) echo "blocksize=$(BOARD_FLASH_BLOCK_SIZE)" >> $(zip_root)/META/misc_info.txt
1157 endif
1158 ifdef BOARD_BOOTIMAGE_PARTITION_SIZE
1159         $(hide) echo "boot_size=$(BOARD_BOOTIMAGE_PARTITION_SIZE)" >> $(zip_root)/META/misc_info.txt
1160 endif
1161 ifdef BOARD_RECOVERYIMAGE_PARTITION_SIZE
1162         $(hide) echo "recovery_size=$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)" >> $(zip_root)/META/misc_info.txt
1163 endif
1164         $(hide) echo "tool_extensions=$(tool_extensions)" >> $(zip_root)/META/misc_info.txt
1165         $(hide) echo "default_system_dev_certificate=$(DEFAULT_SYSTEM_DEV_CERTIFICATE)" >> $(zip_root)/META/misc_info.txt
1166 ifdef PRODUCT_EXTRA_RECOVERY_KEYS
1167         $(hide) echo "extra_recovery_keys=$(PRODUCT_EXTRA_RECOVERY_KEYS)" >> $(zip_root)/META/misc_info.txt
1168 endif
1169         $(hide) echo "mkbootimg_args=$(BOARD_MKBOOTIMG_ARGS)" >> $(zip_root)/META/misc_info.txt
1170         $(call generate-userimage-prop-dictionary, $(zip_root)/META/misc_info.txt)
1171         @# Zip everything up, preserving symlinks
1172         $(hide) (cd $(zip_root) && zip -qry ../$(notdir $@) .)
1173         @# Run fs_config on all the system, boot ramdisk, and recovery ramdisk files in the zip, and save the output
1174         $(hide) zipinfo -1 $@ | awk 'BEGIN { FS="SYSTEM/" } /^SYSTEM\// {print "system/" $$2}' | $(HOST_OUT_EXECUTABLES)/fs_config > $(zip_root)/META/filesystem_config.txt
1175         $(hide) zipinfo -1 $@ | awk 'BEGIN { FS="BOOT/RAMDISK/" } /^BOOT\/RAMDISK\// {print $$2}' | $(HOST_OUT_EXECUTABLES)/fs_config > $(zip_root)/META/boot_filesystem_config.txt
1176         $(hide) zipinfo -1 $@ | awk 'BEGIN { FS="RECOVERY/RAMDISK/" } /^RECOVERY\/RAMDISK\// {print $$2}' | $(HOST_OUT_EXECUTABLES)/fs_config > $(zip_root)/META/recovery_filesystem_config.txt
1177         $(hide) (cd $(zip_root) && zip -q ../$(notdir $@) META/*filesystem_config.txt)
1178
1179
1180 target-files-package: $(BUILT_TARGET_FILES_PACKAGE)
1181
1182
1183 ifneq ($(TARGET_PRODUCT),sdk)
1184 ifeq ($(filter generic%,$(TARGET_DEVICE)),)
1185 ifneq ($(TARGET_NO_KERNEL),true)
1186 ifneq ($(recovery_fstab),)
1187
1188 # -----------------------------------------------------------------
1189 # OTA update package
1190
1191 name := $(TARGET_PRODUCT)
1192 ifeq ($(TARGET_BUILD_TYPE),debug)
1193   name := $(name)_debug
1194 endif
1195 name := $(name)-ota-$(FILE_NAME_TAG)
1196
1197 INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip
1198
1199 $(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR)
1200
1201 $(INTERNAL_OTA_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(DISTTOOLS)
1202         @echo "Package OTA: $@"
1203         $(hide) ./build/tools/releasetools/ota_from_target_files -v \
1204            -p $(HOST_OUT) \
1205            -k $(KEY_CERT_PAIR) \
1206            $(BUILT_TARGET_FILES_PACKAGE) $@
1207
1208 .PHONY: otapackage
1209 otapackage: $(INTERNAL_OTA_PACKAGE_TARGET)
1210
1211 # -----------------------------------------------------------------
1212 # The update package
1213
1214 name := $(TARGET_PRODUCT)
1215 ifeq ($(TARGET_BUILD_TYPE),debug)
1216   name := $(name)_debug
1217 endif
1218 name := $(name)-img-$(FILE_NAME_TAG)
1219
1220 INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip
1221
1222 ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),)
1223 # default to common dir for device vendor
1224 $(INTERNAL_UPDATE_PACKAGE_TARGET): extensions := $(TARGET_DEVICE_DIR)/../common
1225 else
1226 $(INTERNAL_UPDATE_PACKAGE_TARGET): extensions := $(TARGET_RELEASETOOLS_EXTENSIONS)
1227 endif
1228
1229 $(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(DISTTOOLS)
1230         @echo "Package: $@"
1231         $(hide) ./build/tools/releasetools/img_from_target_files -v \
1232            -s $(extensions) \
1233            -p $(HOST_OUT) \
1234            $(BUILT_TARGET_FILES_PACKAGE) $@
1235
1236 .PHONY: updatepackage
1237 updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET)
1238
1239 endif    # recovery_fstab is defined
1240 endif    # TARGET_NO_KERNEL != true
1241 endif    # TARGET_DEVICE != generic*
1242 endif    # TARGET_PRODUCT != sdk
1243
1244 ifdef is_tests_build
1245 # -----------------------------------------------------------------
1246 # A zip of the tests that are built when running "make tests".
1247 # This is very similar to BUILT_TARGET_FILES_PACKAGE, but we
1248 # only grab DATA, and it's called "*-tests-*.zip".
1249 #
1250 name := $(TARGET_PRODUCT)
1251 ifeq ($(TARGET_BUILD_TYPE),debug)
1252   name := $(name)_debug
1253 endif
1254 name := $(name)-tests-$(FILE_NAME_TAG)
1255
1256 intermediates := $(call intermediates-dir-for,PACKAGING,tests_zip)
1257 BUILT_TESTS_ZIP_PACKAGE := $(intermediates)/$(name).zip
1258 $(BUILT_TESTS_ZIP_PACKAGE): intermediates := $(intermediates)
1259 $(BUILT_TESTS_ZIP_PACKAGE): zip_root := $(intermediates)/$(name)
1260
1261 # Depending on the image dependency files, instead of the image files itself,
1262 # guarantees that the underlying directories are up-to-date,
1263 # but don't really build the image.
1264 $(BUILT_TESTS_ZIP_PACKAGE): \
1265     $(INTERNAL_USERDATAIMAGE_FILES) \
1266     | $(ACP)
1267         @echo "Package test files: $@"
1268         $(hide) rm -rf $@ $(zip_root)
1269         $(hide) mkdir -p $(dir $@) $(zip_root)
1270         @# Contents of the data image
1271         $(hide) $(call package_files-copy-root, \
1272                 $(TARGET_OUT_DATA),$(zip_root)/DATA)
1273         $(hide) (cd $(zip_root) && zip -qry ../$(notdir $@) .)
1274
1275 .PHONY: tests
1276 tests: $(BUILT_TESTS_ZIP_PACKAGE)
1277
1278 ifneq (,$(filter tests, $(MAKECMDGOALS)))
1279   $(call dist-for-goals, tests, $(BUILT_TESTS_ZIP_PACKAGE))
1280 endif
1281 endif # is_tests_build
1282
1283 # -----------------------------------------------------------------
1284 # A zip of the symbols directory.  Keep the full paths to make it
1285 # more obvious where these files came from.
1286 #
1287 name := $(TARGET_PRODUCT)
1288 ifeq ($(TARGET_BUILD_TYPE),debug)
1289   name := $(name)_debug
1290 endif
1291 name := $(name)-symbols-$(FILE_NAME_TAG)
1292
1293 SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name).zip
1294 $(SYMBOLS_ZIP): $(INSTALLED_SYSTEMIMAGE) $(INSTALLED_BOOTIMAGE_TARGET)
1295         @echo "Package symbols: $@"
1296         $(hide) rm -rf $@
1297         $(hide) mkdir -p $(dir $@)
1298         $(hide) zip -qr $@ $(TARGET_OUT_UNSTRIPPED)
1299
1300 # -----------------------------------------------------------------
1301 # A zip of the Android Apps. Not keeping full path so that we don't
1302 # include product names when distributing
1303 #
1304 name := $(TARGET_PRODUCT)
1305 ifeq ($(TARGET_BUILD_TYPE),debug)
1306   name := $(name)_debug
1307 endif
1308 name := $(name)-apps-$(FILE_NAME_TAG)
1309
1310 APPS_ZIP := $(PRODUCT_OUT)/$(name).zip
1311 $(APPS_ZIP): $(INSTALLED_SYSTEMIMAGE)
1312         @echo "Package apps: $@"
1313         $(hide) rm -rf $@
1314         $(hide) mkdir -p $(dir $@)
1315         $(hide) zip -qj $@ $(TARGET_OUT_APPS)/*
1316
1317
1318 #------------------------------------------------------------------
1319 # A zip of emma code coverage meta files. Generated for fully emma
1320 # instrumented build.
1321 #
1322 ifeq (true,$(EMMA_INSTRUMENT))
1323 EMMA_META_ZIP := $(PRODUCT_OUT)/emma_meta.zip
1324 # the dependency will be set up later in build/core/main.mk.
1325 $(EMMA_META_ZIP) :
1326         @echo "Collecting Emma coverage meta files."
1327         $(hide) find $(TARGET_COMMON_OUT_ROOT) -name "coverage.em" | \
1328                 zip -@ -q $@
1329
1330 endif # EMMA_INSTRUMENT=true
1331
1332 # -----------------------------------------------------------------
1333 # dalvik something
1334 .PHONY: dalvikfiles
1335 dalvikfiles: $(INTERNAL_DALVIK_MODULES)
1336
1337 # -----------------------------------------------------------------
1338 # The emulator package
1339 ifeq ($(BUILD_EMULATOR),true)
1340 INTERNAL_EMULATOR_PACKAGE_FILES += \
1341         $(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \
1342         prebuilts/qemu-kernel/$(TARGET_ARCH)/kernel-qemu \
1343         $(INSTALLED_RAMDISK_TARGET) \
1344                 $(INSTALLED_SYSTEMIMAGE) \
1345                 $(INSTALLED_USERDATAIMAGE_TARGET)
1346
1347 name := $(TARGET_PRODUCT)-emulator-$(FILE_NAME_TAG)
1348
1349 INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip
1350
1351 $(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES)
1352         @echo "Package: $@"
1353         $(hide) zip -qj $@ $(INTERNAL_EMULATOR_PACKAGE_FILES)
1354
1355 endif
1356 # -----------------------------------------------------------------
1357 # Old PDK stuffs, retired
1358 # The pdk package (Platform Development Kit)
1359
1360 #ifneq (,$(filter pdk,$(MAKECMDGOALS)))
1361 #  include development/pdk/Pdk.mk
1362 #endif
1363
1364
1365 # -----------------------------------------------------------------
1366 # The SDK
1367
1368 # The SDK includes host-specific components, so it belongs under HOST_OUT.
1369 sdk_dir := $(HOST_OUT)/sdk
1370
1371 # Build a name that looks like:
1372 #
1373 #     linux-x86   --> android-sdk_12345_linux-x86
1374 #     darwin-x86  --> android-sdk_12345_mac-x86
1375 #     windows-x86 --> android-sdk_12345_windows
1376 #
1377 sdk_name := android-sdk_$(FILE_NAME_TAG)
1378 ifeq ($(HOST_OS),darwin)
1379   INTERNAL_SDK_HOST_OS_NAME := mac
1380 else
1381   INTERNAL_SDK_HOST_OS_NAME := $(HOST_OS)
1382 endif
1383 ifneq ($(HOST_OS),windows)
1384   INTERNAL_SDK_HOST_OS_NAME := $(INTERNAL_SDK_HOST_OS_NAME)-$(HOST_ARCH)
1385 endif
1386 sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME)
1387
1388 sdk_dep_file := $(sdk_dir)/sdk_deps.mk
1389
1390 ATREE_FILES :=
1391 -include $(sdk_dep_file)
1392
1393 # if we don't have a real list, then use "everything"
1394 ifeq ($(strip $(ATREE_FILES)),)
1395 ATREE_FILES := \
1396         $(ALL_PREBUILT) \
1397         $(ALL_COPIED_HEADERS) \
1398         $(ALL_GENERATED_SOURCES) \
1399         $(ALL_DEFAULT_INSTALLED_MODULES) \
1400         $(INSTALLED_RAMDISK_TARGET) \
1401         $(ALL_DOCS) \
1402         $(ALL_SDK_FILES)
1403 endif
1404
1405 atree_dir := development/build
1406
1407 # sdk/build/tools.atree contains the generic rules, while
1408 #
1409 # sdk/build/tools.$(TARGET_ARCH).atree contains target-specific rules
1410 # the latter is optional.
1411 #
1412 sdk_tools_atree_files := sdk/build/tools.atree
1413 ifneq (,$(strip $(wildcard sdk/build/tools.$(TARGET_ARCH).atree)))
1414   sdk_tools_atree_files += sdk/build/tools.$(TARGET_ARCH).atree
1415 endif
1416 ifneq (,$(strip $(wildcard sdk/build/tools.$(HOST_OS).atree)))
1417   sdk_tools_atree_files += sdk/build/tools.$(HOST_OS).atree
1418 endif
1419 ifneq (,$(strip $(wildcard sdk/build/tools.$(HOST_OS)-$(HOST_ARCH).atree)))
1420   sdk_tools_atree_files += sdk/build/tools.$(HOST_OS)-$(HOST_ARCH).atree
1421 endif
1422
1423 sdk_atree_files := \
1424         $(atree_dir)/sdk.exclude.atree \
1425         $(atree_dir)/sdk.atree \
1426         $(atree_dir)/sdk-$(HOST_OS)-$(HOST_ARCH).atree \
1427         $(sdk_tools_atree_files)
1428
1429 # development/build/sdk-android-<abi>.atree is used to differentiate
1430 # between architecture models (e.g. ARMv5TE versus ARMv7) when copying
1431 # files like the kernel image. We use TARGET_CPU_ABI because we don't
1432 # have a better way to distinguish between CPU models.
1433 ifneq (,$(strip $(wildcard $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree)))
1434   sdk_atree_files += $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree
1435 endif
1436
1437 deps := \
1438         $(target_notice_file_txt) \
1439         $(tools_notice_file_txt) \
1440         $(OUT_DOCS)/offline-sdk-timestamp \
1441         $(SYMBOLS_ZIP) \
1442         $(INSTALLED_SYSTEMIMAGE) \
1443         $(INSTALLED_USERDATAIMAGE_TARGET) \
1444         $(INSTALLED_RAMDISK_TARGET) \
1445         $(INSTALLED_SDK_BUILD_PROP_TARGET) \
1446         $(INSTALLED_BUILD_PROP_TARGET) \
1447         $(ATREE_FILES) \
1448         $(atree_dir)/sdk.atree \
1449         $(sdk_tools_atree_files) \
1450         $(HOST_OUT_EXECUTABLES)/atree \
1451         $(HOST_OUT_EXECUTABLES)/line_endings
1452
1453 INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip
1454 $(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name)
1455 $(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name)
1456 $(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file)
1457 $(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files)
1458
1459 # Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built.
1460 #
1461 #SDK_GNU_ERROR := true
1462
1463 $(INTERNAL_SDK_TARGET): $(deps)
1464         @echo "Package SDK: $@"
1465         $(hide) rm -rf $(PRIVATE_DIR) $@
1466         $(hide) for f in $(target_gnu_MODULES); do \
1467           if [ -f $$f ]; then \
1468             echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \
1469                 including GNU target $$f >&2; \
1470             FAIL=$(SDK_GNU_ERROR); \
1471           fi; \
1472         done; \
1473         if [ $$FAIL ]; then exit 1; fi
1474         $(hide) ( \
1475                 ATREE_STRIP="strip -x" \
1476                 $(HOST_OUT_EXECUTABLES)/atree \
1477                 $(addprefix -f ,$(PRIVATE_INPUT_FILES)) \
1478                         -m $(PRIVATE_DEP_FILE) \
1479                         -I . \
1480                         -I $(PRODUCT_OUT) \
1481                         -I $(HOST_OUT) \
1482                         -I $(TARGET_COMMON_OUT_ROOT) \
1483                         -v "PLATFORM_NAME=android-$(PLATFORM_VERSION)" \
1484                         -v "OUT_DIR=$(OUT_DIR)" \
1485                         -v "HOST_OUT=$(HOST_OUT)" \
1486                         -v "TARGET_ARCH=$(TARGET_ARCH)" \
1487                         -v "TARGET_CPU_ABI=$(TARGET_CPU_ABI)" \
1488                         -v "DLL_EXTENSION=$(HOST_SHLIB_SUFFIX)" \
1489                         -o $(PRIVATE_DIR) && \
1490                 cp -f $(target_notice_file_txt) \
1491                                 $(PRIVATE_DIR)/system-images/android-$(PLATFORM_VERSION)/$(TARGET_CPU_ABI)/NOTICE.txt && \
1492                 cp -f $(tools_notice_file_txt) $(PRIVATE_DIR)/tools/NOTICE.txt && \
1493                 cp -f $(tools_notice_file_txt) $(PRIVATE_DIR)/platform-tools/NOTICE.txt && \
1494                 HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \
1495                         development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \
1496                 chmod -R ug+rwX $(PRIVATE_DIR) && \
1497                 cd $(dir $@) && zip -rq $(notdir $@) $(PRIVATE_NAME) \
1498         ) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 )
1499
1500
1501 # Is a Windows SDK requested? If so, we need some definitions from here
1502 # in order to find the Linux SDK used to create the Windows one.
1503 MAIN_SDK_NAME := $(sdk_name)
1504 MAIN_SDK_DIR  := $(sdk_dir)
1505 MAIN_SDK_ZIP  := $(INTERNAL_SDK_TARGET)
1506 ifneq ($(filter win_sdk,$(MAKECMDGOALS)),)
1507 include $(TOPDIR)development/build/tools/windows_sdk.mk
1508 endif
1509
1510 # -----------------------------------------------------------------
1511 # Findbugs
1512 INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml
1513 INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html
1514 $(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES)
1515         @echo UnionBugs: $@
1516         $(hide) prebuilt/common/findbugs/bin/unionBugs $(ALL_FINDBUGS_FILES) \
1517         > $@
1518 $(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET)
1519         @echo ConvertXmlToText: $@
1520         $(hide) prebuilt/common/findbugs/bin/convertXmlToText -html:fancy.xsl \
1521         $(INTERNAL_FINDBUGS_XML_TARGET) > $@
1522
1523 # -----------------------------------------------------------------
1524 # Findbugs
1525
1526 # -----------------------------------------------------------------
1527 # These are some additional build tasks that need to be run.
1528 include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk))
1529 -include $(sort $(wildcard vendor/*/build/tasks/*.mk))
1530 -include $(sort $(wildcard device/*/build/tasks/*.mk))
1531
1532 # -----------------------------------------------------------------
1533 # Create SDK repository packages. Must be done after tasks/* since
1534 # we need the addon rules defined.
1535 ifneq ($(sdk_repo_goal),)
1536 include $(TOPDIR)development/build/tools/sdk_repo.mk
1537 endif