python-coherence : update SRCREV
[vuplus_openvuplus] / Makefile
1 #!/usr/bin/make -f
2 #
3 # Permission is hereby granted, free of charge, to any person obtaining a copy
4 # of this software and associated documentation files (the "Software"), to deal
5 # in the Software without restriction, including without limitation the rights
6 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 # copies of the Software, and to permit persons to whom the Software is
8 # furnished to do so, subject to the following conditions:
9 #
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
12 #
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 # THE SOFTWARE.
20 #
21
22 # Note: You can override all variables by storing them
23 # in an external file called "make.conf".
24 -include conf/make.conf
25
26 # Target platform:
27 # vusolo, bm750, vuuno, vuultimo, vusolo2
28 #
29 # This only sets the default value. All platforms now use a shared build
30 # directory. Run "MACHINE=vuultimo bitbake vuplus-image" to build an image
31 # for the vuultimo, if it is not the default.
32 MACHINE ?= vuultimo
33
34 MULTI_TEMPORARILY ?= YES
35
36 # Adjust according to the number CPU cores to use for parallel build.
37 # Default: Number of processors in /proc/cpuinfo, if present, or 1.
38 NR_CPU := $(shell [ -f /proc/cpuinfo ] && grep -c '^processor\s*:' /proc/cpuinfo || echo 1)
39 BB_NUMBER_THREADS ?= $(NR_CPU)
40 PARALLEL_MAKE ?= -j $(NR_CPU)
41
42 XSUM ?= md5sum
43
44 BUILD_DIR = $(CURDIR)/build
45 TOPDIR = $(BUILD_DIR)/$(MACHINE)
46 DL_DIR = $(CURDIR)/resource/sources
47
48 ifeq ($(MULTI_TEMPORARILY), YES)
49 SSTATE_DIR = $(TOPDIR)/sstate-cache
50 TMPDIR = $(TOPDIR)/tmp
51 DEPDIR = $(TOPDIR)/.deps
52 else
53 SSTATE_DIR = $(BUILD_DIR)/sstate-cache
54 TMPDIR = $(BUILD_DIR)/tmp
55 DEPDIR = $(BUILD_DIR)/.deps
56 endif
57
58 BBLAYERS ?= \
59         $(CURDIR)/meta-bsp/$(MACHINE) \
60         $(CURDIR)/meta-bsp/common \
61         $(CURDIR)/meta-openvuplus \
62         $(CURDIR)/meta-openembedded/meta-oe \
63         $(CURDIR)/openembedded-core/meta
64
65 CONFFILES = \
66         $(TOPDIR)/bitbake.env \
67         $(TOPDIR)/conf/bblayers.conf \
68         $(TOPDIR)/conf/local.conf
69
70 CONFDEPS = \
71         $(DEPDIR)/.bitbake.env.$(BITBAKE_ENV_HASH) \
72         $(DEPDIR)/.bblayers.conf.$(MACHINE).$(BBLAYERS_CONF_HASH) \
73         $(DEPDIR)/.local.conf.$(MACHINE).$(LOCAL_CONF_HASH)
74
75 GIT ?= git
76 GIT_REMOTE := $(shell $(GIT) remote)
77 GIT_USER_NAME := $(shell $(GIT) config user.name)
78 GIT_USER_EMAIL := $(shell $(GIT) config user.email)
79
80 hash = $(shell echo $(1) | $(XSUM) | awk '{print $$1}')
81
82 .DEFAULT_GOAL := all
83 all: init usage
84
85 $(BBLAYERS):
86         [ -d $@ ] || $(MAKE) $(MFLAGS) update
87
88 init: $(BBLAYERS) $(CONFFILES)
89
90 help:
91         @echo "Your options:"
92         @echo
93         @echo "  * Update the SDK"
94         @echo "      $$ $(MAKE) update"
95         @echo
96         @echo "  * Select a new target machine:"
97         @echo "      $$ echo MACHINE=vuultimo >> conf/make.conf"
98         @echo "    [Valid values: vusolo, bm750, vuuno, vuultimo, vusolo2]"
99         @echo
100         @echo "  * Build a firmware image for the selected target machine:"
101         @echo "      $$ $(MAKE) image"
102         @echo
103         @echo "  * Build a firmware image for a different target machine:"
104         @echo "      $$ $(MAKE) image MACHINE=vuultimo"
105         @echo "    [Valid values: vusolo, bm750, vuuno, vuultimo, vusolo2]"
106         @echo
107         @echo "  * Download all source files at once:"
108         @echo "      $$ $(MAKE) download"
109         @echo
110         @echo "  * Set up the environment to build recipes manually:"
111         @echo "      $$ cd $(BUILD_DIR)"
112         @echo "      $$ source bitbake.env"
113         @echo "      $$ bitbake <target>"
114         @echo "    [Replace <target> with a recipe name, e.g. vuplus-image or enigma2]"
115         @echo
116         @echo "Your current settings:"
117         @echo "  MACHINE = $(MACHINE)"
118         @echo
119         @echo "  BB_NUMBER_THREADS = $(BB_NUMBER_THREADS)"
120         @echo "  PARALLEL_MAKE = $(PARALLEL_MAKE)"
121         @echo
122         @echo "Trouble finding a recipe? Try ./scripts/drepo grep 'search string'"
123         @echo "or ./scripts/drepo find -name \"*recipe*\"."
124         @echo
125
126 usage:
127         @echo "[*] Please run '$(MAKE) help' to display further information!"
128
129 clean:
130         @echo '[*] Deleting generated configuration files'
131         @$(RM) $(CONFFILES) $(CONFDEPS)
132
133 distclean: clean
134         @echo '[*] Deleting dependencies directory'
135         @$(RM) -r $(DEPDIR)
136         @echo '[*] Deleting download directory'
137         @$(RM) -r $(DL_DIR)
138         @echo '[*] Deleting tmp directory'
139         @$(RM) -r $(TMPDIR)
140         @echo '[*] Deleting sstate directory'
141         @$(RM) -r $(SSTATE_DIR)
142         @echo '[*] Deleting build directory'
143         @$(RM) -r $(BUILD_DIR)
144         @echo '[*] Deleting git submodules'
145         @$(GIT) submodule foreach 'rm -rf .* * 2>/dev/null || true'
146
147 image: init
148         @echo '[*] Building image for $(MACHINE)'
149         @. $(TOPDIR)/bitbake.env && cd $(TOPDIR) && bitbake vuplus-image
150
151 download: init
152         @echo '[*] Downloading sources'
153         @. $(TOPDIR)/bitbake.env && cd $(TOPDIR) && bitbake -cfetchall -k vuplus-image
154
155 update:
156         @echo '[*] Updating Git repositories...'
157         @HASH=`$(XSUM) $(MAKEFILE_LIST)`; \
158         if [ -n "$(GIT_REMOTE)" ]; then \
159                 $(GIT) pull --ff-only || $(GIT) pull --rebase; \
160         fi; \
161         if [ "$$HASH" != "`$(XSUM) $(MAKEFILE_LIST)`" ]; then \
162                 echo '[*] Makefile changed. Restarting...'; \
163                 $(MAKE) $(MFLAGS) --no-print-directory $(MAKECMDGOALS); \
164         else \
165                 $(GIT) submodule sync && \
166                 $(GIT) submodule update --init && \
167                 echo "[*] The Vuplus SDK is now up-to-date."; \
168         fi
169
170 .PHONY: all clean help image init update usage
171
172 MACHINE_INCLUDE_CONF = $(CURDIR)/conf/$(basename $(@F))-$(MACHINE)-ext.conf
173 DISTRO_INCLUDE_CONF = $(CURDIR)/conf/$(basename $(@F))-ext.conf
174
175 BITBAKE_ENV_HASH := $(call hash, \
176         'BITBAKE_ENV_VERSION = "0"' \
177         'CURDIR = "$(CURDIR)"' \
178         )
179
180 $(TOPDIR)/bitbake.env: $(DEPDIR)/.bitbake.env.$(BITBAKE_ENV_HASH)
181         @echo '[*] Generating $@'
182         @test -d $(@D) || mkdir -p $(@D)
183         @echo '# Automatically generated file. Do not edit!' > $@
184         @echo 'export PATH=$(CURDIR)/openembedded-core/scripts:$(CURDIR)/bitbake/bin:$${PATH}' >> $@
185
186 LOCAL_CONF_HASH := $(call hash, \
187         'LOCAL_CONF_VERSION = "0"' \
188         'CURDIR = "$(CURDIR)"' \
189         'TOPDIR = "$(TOPDIR)"' \
190         'MACHINE = "$(MACHINE)"' \
191         'OPENVUPLUS_CONF_VERSION = "1"' \
192         'CURDIR = "$(CURDIR)"' \
193         'BB_NUMBER_THREADS = "$(BB_NUMBER_THREADS)"' \
194         'PARALLEL_MAKE = "$(PARALLEL_MAKE)"' \
195         'DL_DIR = "$(DL_DIR)"' \
196         'SSTATE_DIR = "$(SSTATE_DIR)"' \
197         'TMPDIR = "$(TMPDIR)"' \
198         )
199
200 $(TOPDIR)/conf/local.conf: $(DEPDIR)/.local.conf.$(MACHINE).$(LOCAL_CONF_HASH)
201         @echo '[*] Generating $@'
202         @test -d $(@D) || mkdir -p $(@D)
203         @echo '# Automatically generated file. Do not edit!' > $@
204         @echo 'TOPDIR = "$(TOPDIR)"' >> $@
205         @echo 'MACHINE = "$(MACHINE)"' >> $@
206         @echo 'BB_NUMBER_THREADS = "$(BB_NUMBER_THREADS)"' >> $@
207         @echo 'PARALLEL_MAKE = "$(PARALLEL_MAKE)"' >> $@
208         @echo 'DL_DIR = "$(DL_DIR)"' >> $@
209         @echo 'SSTATE_DIR = "$(SSTATE_DIR)"' >> $@
210         @echo 'TMPDIR = "$(TMPDIR)"' >> $@
211         @echo 'BB_GENERATE_MIRROR_TARBALLS = "0"' >> $@
212         @echo 'BBINCLUDELOGS = "yes"' >> $@
213         @echo 'CONF_VERSION = "1"' >> $@
214         @echo 'DISTRO = "vuplus"' >> $@
215         @echo 'EXTRA_IMAGE_FEATURES = "debug-tweaks"' >> $@
216         @echo 'USER_CLASSES = "buildstats"' >> $@
217         @echo 'include $(DISTRO_INCLUDE_CONF)' >> $@
218         @echo 'include $(MACHINE_INCLUDE_CONF)' >> $@
219         @echo 'INHERIT += "rm_work"' >> $@
220
221 BBLAYERS_CONF_HASH := $(call hash, \
222         'BBLAYERS_CONF_VERSION = "0"' \
223         'CURDIR = "$(CURDIR)"' \
224         'BBLAYERS = "$(BBLAYERS)"' \
225         )
226
227 $(TOPDIR)/conf/bblayers.conf: $(DEPDIR)/.bblayers.conf.$(MACHINE).$(BBLAYERS_CONF_HASH)
228         @echo '[*] Generating $@'
229         @test -d $(@D) || mkdir -p $(@D)
230         @echo '# Automatically generated file. Do not edit!' > $@
231         @echo 'LCONF_VERSION = "4"' >> $@
232         @echo 'BBFILES = ""' >> $@
233         @echo 'BBLAYERS = "$(BBLAYERS)"' >> $@
234         @echo 'include $(DISTRO_INCLUDE_CONF)' >> $@
235         @echo 'include $(MACHINE_INCLUDE_CONF)' >> $@
236
237 $(CONFDEPS):
238         @test -d $(@D) || mkdir -p $(@D)
239         @$(RM) $(basename $@).*
240         @touch $@