Jan-Jonas Sämann
2df350de04
* Adds .gitlab-ci.yml * Lots of new targets available * Update Gluon-Git-Ref ref * Gluon switched back to openwrt instead of lede. Fix Package sources.
122 lines
2.6 KiB
Makefile
122 lines
2.6 KiB
Makefile
GLUON_BUILD_DIR ?= gluon-build
|
|
GLUON_GIT_URL ?= https://github.com/freifunk-gluon/gluon
|
|
GLUON_GIT_REF ?= 2ce07ae2fe251bcf8a424dc39aba8da1df7f164d
|
|
|
|
GLUON_DEPRECATED ?= upgrade
|
|
|
|
SECRET_KEY_FILE ?= ${HOME}/.gluon-secret-key
|
|
|
|
GLUON_TARGETS ?= \
|
|
ar71xx-generic \
|
|
ar71xx-mikrotik \
|
|
ar71xx-nand \
|
|
<<<<<<< HEAD
|
|
<<<<<<< HEAD
|
|
brcm2708-bcm2708 \
|
|
brcm2708-bcm2709 \
|
|
mpc85xx-generic \
|
|
=======
|
|
ar71xx-tiny \
|
|
brcm2708-bcm2708 \
|
|
brcm2708-bcm2709 \
|
|
brcm2708-bcm2710 \
|
|
ipq40xx \
|
|
ipq806x \
|
|
mpc85xx-generic \
|
|
mvebu-cortexa9 \
|
|
ramips-mt7620 \
|
|
>>>>>>> 250237d... Introduce new targets and gitlab-ci rule
|
|
=======
|
|
ipq40xx \
|
|
ipq806x \
|
|
brcm2708-bcm2708 \
|
|
brcm2708-bcm2709 \
|
|
brcm2708-bcm2710 \
|
|
pc85xx-generic \
|
|
ramips-mt7620 \
|
|
>>>>>>> 2d27e51... New targets, latest gluon commit as default
|
|
ramips-mt7621 \
|
|
ramips-mt76x8 \
|
|
ramips-rt305x \
|
|
sunxi-cortexa7 \
|
|
x86-64 \
|
|
x86-generic \
|
|
<<<<<<< HEAD
|
|
x86-geode \
|
|
<<<<<<< HEAD
|
|
sunxi
|
|
=======
|
|
x86-geode
|
|
>>>>>>> 250237d... Introduce new targets and gitlab-ci rule
|
|
=======
|
|
sunxi-cortexa7
|
|
>>>>>>> 2d27e51... New targets, latest gluon commit as default
|
|
|
|
|
|
GLUON_RELEASE := $(shell git describe --tags 2>/dev/null)
|
|
ifneq (,$(shell git describe --exact-match --tags 2>/dev/null))
|
|
GLUON_BRANCH := stable
|
|
else
|
|
GLUON_BRANCH := experimental
|
|
endif
|
|
|
|
JOBS ?= $(shell cat /proc/cpuinfo | grep processor | wc -l)
|
|
|
|
#JOBS = 1
|
|
|
|
GLUON_MAKE := ${MAKE} BROKEN=0 -j ${JOBS} -C ${GLUON_BUILD_DIR} \
|
|
GLUON_RELEASE=${GLUON_RELEASE} \
|
|
GLUON_BRANCH=${GLUON_BRANCH} \
|
|
GLUON_DEPRECATED=${GLUON_DEPRECATED}
|
|
|
|
|
|
all: info
|
|
${MAKE} manifest
|
|
|
|
info:
|
|
@echo
|
|
@echo '#########################'
|
|
@echo '# FFRGB Firmare build'
|
|
@echo '# Building release ${GLUON_RELEASE} for branch ${GLUON_BRANCH}'
|
|
@echo '# make params: ${GLUON_MAKE}'
|
|
@echo
|
|
|
|
build: gluon-prepare
|
|
for target in ${GLUON_TARGETS}; do \
|
|
echo ""Building target $$target""; \
|
|
${GLUON_MAKE} GLUON_TARGET="$$target"; \
|
|
done
|
|
|
|
buildonly:
|
|
for target in ${GLUON_TARGETS}; do \
|
|
echo ""Building target $$target""; \
|
|
${GLUON_MAKE} GLUON_TARGET="$$target"; \
|
|
done
|
|
|
|
|
|
manifest: build
|
|
${GLUON_MAKE} manifest
|
|
mv ${GLUON_BUILD_DIR}/output .
|
|
|
|
sign: manifest
|
|
${GLUON_BUILD_DIR}/contrib/sign.sh ${SECRET_KEY_FILE} images/sysupgrade/${GLUON_BRANCH}.manifest
|
|
|
|
${GLUON_BUILD_DIR}:
|
|
git clone ${GLUON_GIT_URL} ${GLUON_BUILD_DIR}
|
|
|
|
gluon-prepare: images-clean ${GLUON_BUILD_DIR}
|
|
(cd ${GLUON_BUILD_DIR} \
|
|
&& git remote set-url origin ${GLUON_GIT_URL} \
|
|
&& git fetch origin \
|
|
&& git checkout -q ${GLUON_GIT_REF})
|
|
ln -sfT .. ${GLUON_BUILD_DIR}/site
|
|
${GLUON_MAKE} update
|
|
|
|
gluon-clean:
|
|
rm -rf ${GLUON_BUILD_DIR}
|
|
|
|
images-clean:
|
|
rm -rf images
|
|
|
|
clean: gluon-clean images-clean
|