forked from OpenPLi/openpli-oe-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
217 lines (190 loc) · 6.71 KB
/
Makefile
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#!/usr/bin/make -f
#
# Copyright (c) 2010-2012 Dream Multimedia GmbH, Germany
# http://www.dream-multimedia-tv.de/
# Copyright (c) 2012-2017 PLi Association, The Netherlands
# http://openpli.org
# Authors:
# Andreas Oberritter <obi@opendreambox.org>
# OpenPLi development team
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# Adjust according to the number CPU cores to use for parallel build.
# Default: Number of processors in /proc/cpuinfo, if present, or 1.
NR_CPU := $(shell [ -f /proc/cpuinfo ] && grep -c '^processor\s*:' /proc/cpuinfo || echo 1)
BB_NUMBER_THREADS ?= $(NR_CPU)
PARALLEL_MAKE ?= -j $(NR_CPU)
XSUM ?= md5sum
BUILD_DIR = $(CURDIR)/build
TOPDIR = $(BUILD_DIR)
DL_DIR = $(CURDIR)/sources
SSTATE_DIR = $(TOPDIR)/sstate-cache
TMPDIR = $(TOPDIR)/tmp
DEPDIR = $(TOPDIR)/.deps
BBLAYERS ?= \
$(CURDIR)/meta-openembedded/meta-oe \
$(CURDIR)/meta-openembedded/meta-filesystems \
$(CURDIR)/meta-openembedded/meta-multimedia \
$(CURDIR)/meta-openembedded/meta-networking \
$(CURDIR)/meta-openembedded/meta-python \
$(CURDIR)/openembedded-core/meta \
$(CURDIR)/meta-openpli \
$(CURDIR)/meta-dream \
$(CURDIR)/meta-vuplus \
$(CURDIR)/meta-xsarius.pli5 \
$(CURDIR)/meta-xp \
$(CURDIR)/meta-xtrend \
$(CURDIR)/meta-formuler \
$(CURDIR)/meta-gfutures \
$(CURDIR)/meta-xpeedc \
$(CURDIR)/meta-wetek \
$(CURDIR)/meta-zgemma \
$(CURDIR)/meta-edision \
$(CURDIR)/meta-miraclebox \
$(CURDIR)/meta-spycat \
$(CURDIR)/meta-gi \
$(CURDIR)/meta-sab \
$(CURDIR)/meta-local \
$(CURDIR)/meta-qt5
CONFFILES = \
$(TOPDIR)/env.source \
$(TOPDIR)/conf/openpli.conf \
$(TOPDIR)/conf/bblayers.conf \
$(TOPDIR)/conf/local.conf \
$(TOPDIR)/conf/site.conf
CONFDEPS = \
$(DEPDIR)/.env.source.$(BITBAKE_ENV_HASH) \
$(DEPDIR)/.openpli.conf.$(OPENPLI_CONF_HASH) \
$(DEPDIR)/.bblayers.conf.$(BBLAYERS_CONF_HASH) \
$(DEPDIR)/.local.conf.$(LOCAL_CONF_HASH)
GIT ?= git
GIT_REMOTE := $(shell $(GIT) remote)
GIT_USER_NAME := $(shell $(GIT) config user.name)
GIT_USER_EMAIL := $(shell $(GIT) config user.email)
hash = $(shell echo $(1) | $(XSUM) | awk '{print $$1}')
.DEFAULT_GOAL := all
all: init
@echo
@echo "Openembedded for the OpenPLi 4 environment has been initialized"
@echo "properly. Now you can start building your image, by doing either:"
@echo
@echo " MACHINE=... make image"
@echo
@echo " or:"
@echo
@echo " cd $(BUILD_DIR)"
@echo " source env.source"
@echo " MACHINE=... bitbake openpli-enigma2-image"
@echo
@echo " or, if you want to build not just the image, but the optional packages in the feed as well:"
@echo
@echo " MACHINE=... make feed"
@echo " or:"
@echo " MACHINE=... bitbake openpli-enigma2-feed"
@echo
$(BBLAYERS):
[ -d $@ ] || $(MAKE) $(MFLAGS) update
initialize: init
init: $(BBLAYERS) $(CONFFILES)
image: init
@echo 'Building image for $(MACHINE)'
@. $(TOPDIR)/env.source && cd $(TOPDIR) && bitbake openpli-enigma2-image
feed: init
@echo 'Building feed for $(MACHINE)'
@. $(TOPDIR)/env.source && cd $(TOPDIR) && bitbake openpli-enigma2-feed
update:
@echo 'Updating Git repositories...'
@HASH=`$(XSUM) $(MAKEFILE_LIST)`; \
if [ -n "$(GIT_REMOTE)" ]; then \
$(GIT) pull --ff-only || $(GIT) pull --rebase; \
fi; \
if [ "$$HASH" != "`$(XSUM) $(MAKEFILE_LIST)`" ]; then \
echo 'Makefile changed. Restarting...'; \
$(MAKE) $(MFLAGS) --no-print-directory $(MAKECMDGOALS); \
else \
$(GIT) submodule sync && \
$(GIT) submodule update --init && \
echo "The openpli OE is now up-to-date."; \
fi
.PHONY: all image init initialize update usage
BITBAKE_ENV_HASH := $(call hash, \
'BITBAKE_ENV_VERSION = "0"' \
'CURDIR = "$(CURDIR)"' \
)
$(TOPDIR)/env.source: $(DEPDIR)/.env.source.$(BITBAKE_ENV_HASH)
@echo 'Generating $@'
@echo 'export BB_ENV_EXTRAWHITE="MACHINE"' > $@
@echo 'export MACHINE' >> $@
@echo 'export PATH=$(CURDIR)/openembedded-core/scripts:$(CURDIR)/bitbake/bin:$${PATH}' >> $@
OPENPLI_CONF_HASH := $(call hash, \
'OPENPLI_CONF_VERSION = "1"' \
'CURDIR = "$(CURDIR)"' \
'BB_NUMBER_THREADS = "$(BB_NUMBER_THREADS)"' \
'PARALLEL_MAKE = "$(PARALLEL_MAKE)"' \
'DL_DIR = "$(DL_DIR)"' \
'SSTATE_DIR = "$(SSTATE_DIR)"' \
'TMPDIR = "$(TMPDIR)"' \
)
$(TOPDIR)/conf/openpli.conf: $(DEPDIR)/.openpli.conf.$(OPENPLI_CONF_HASH)
@echo 'Generating $@'
@test -d $(@D) || mkdir -p $(@D)
@echo 'SSTATE_DIR = "$(SSTATE_DIR)"' >> $@
@echo 'TMPDIR = "$(TMPDIR)"' >> $@
@echo 'BB_GENERATE_MIRROR_TARBALLS = "0"' >> $@
@echo 'BBINCLUDELOGS = "yes"' >> $@
@echo 'CONF_VERSION = "1"' >> $@
@echo 'DISTRO = "openpli"' >> $@
@echo 'EXTRA_IMAGE_FEATURES = "debug-tweaks"' >> $@
@echo 'USER_CLASSES = "buildstats"' >> $@
LOCAL_CONF_HASH := $(call hash, \
'LOCAL_CONF_VERSION = "0"' \
'CURDIR = "$(CURDIR)"' \
'TOPDIR = "$(TOPDIR)"' \
)
$(TOPDIR)/conf/local.conf: $(DEPDIR)/.local.conf.$(LOCAL_CONF_HASH)
@echo 'Generating $@'
@test -d $(@D) || mkdir -p $(@D)
@echo 'TOPDIR = "$(TOPDIR)"' > $@
@echo 'require $(TOPDIR)/conf/openpli.conf' >> $@
$(TOPDIR)/conf/site.conf: $(CURDIR)/site.conf
@ln -s ../../site.conf $@
$(CURDIR)/site.conf:
@echo 'SCONF_VERSION = "1"' >> $@
@echo 'BB_NUMBER_THREADS = "$(BB_NUMBER_THREADS)"' >> $@
@echo 'PARALLEL_MAKE = "$(PARALLEL_MAKE)"' >> $@
@echo 'BUILD_OPTIMIZATION = "-march=native -O2 -pipe"' >> $@
@echo 'DL_DIR = "$(DL_DIR)"' >> $@
@echo 'INHERIT += "rm_work"' >> $@
BBLAYERS_CONF_HASH := $(call hash, \
'BBLAYERS_CONF_VERSION = "0"' \
'CURDIR = "$(CURDIR)"' \
'BBLAYERS = "$(BBLAYERS)"' \
)
$(TOPDIR)/conf/bblayers.conf: $(DEPDIR)/.bblayers.conf.$(BBLAYERS_CONF_HASH)
@echo 'Generating $@'
@test -d $(@D) || mkdir -p $(@D)
@echo 'LCONF_VERSION = "5"' > $@
@echo 'BBPATH = "$${TOPDIR}"' >> $@
@echo 'BBFILES = ""' >> $@
@echo 'BBLAYERS = "$(BBLAYERS)"' >> $@
$(CONFDEPS):
@test -d $(@D) || mkdir -p $(@D)
@$(RM) $(basename $@).*
@touch $@