forked from mozilla-b2g/gonk-misc
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathb2g.mk
executable file
·65 lines (54 loc) · 1.27 KB
/
b2g.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
PRODUCT_PACKAGES += \
ads-sdk \
b2g-info \
b2g-ps \
b2g-procrank \
b2g.sh \
b2gkillerd \
fakeappops \
gfxdebugger \
gonksched \
gonkservices \
init.b2g.rc \
init.bluetooth.rc \
gecko \
api-daemon \
bluetoothd \
librecovery \
gaia \
sources.xml \
$(NULL)
# Dhcpcd
DHCPCD_USE_SCRIPT := yes
PRODUCT_PACKAGES += \
dhcpcd-6.8.2 \
dhcpcd.conf \
dhcpcd-run-hooks \
20-dns.conf \
95-configured
ifeq ($(ENABLE_RADVD),true)
PRODUCT_PACKAGES += \
radvd
endif
ifeq ($(BOOTUPANIMATION_RESOLUTION),)
BOOTUPANIMATION_RESOLUTION := qvga
endif
ifeq ($(ENABLE_DEFAULT_BOOTANIMATION),true)
ifneq ($(CUSTOM_BUILD_CONFIG_NAME),)
CUSTOMER := $(CUSTOM_BUILD_CONFIG_NAME)
else
CUSTOMER := default
endif
PRODUCT_COPY_FILES += \
gonk-misc/animation/$(CUSTOMER)/bootanimation_$(BOOTUPANIMATION_RESOLUTION).zip:system/media/bootanimation.zip \
gonk-misc/poweron-sound.ogg:system/media/poweron-sound.ogg \
gonk-misc/fonts.xml:system/etc/fonts.xml
endif
# Enabled build librecovery.
ENABLE_LIBRECOVERY := true
# IME dictionaries from TouchPal
ifeq ($(IME_ENGINE), touchpal)
-include external/libtouchpal/touchpal.mk
endif
$(call inherit-product-if-exists, gaia/gaia.mk)
$(call inherit-product-if-exists, external/svox/pico/lang/all_pico_languages.mk)