root/Makefile @ f63e44fa
e518a2c2 | Pau | # [qMp] firmware generator (http://qmp.cat)
|
|
#
|
|||
0ef3dbdb | p4u | # Copyright (C) 2011-2012 Routek S.L routek.net
|
|
2aaa878f | Simó Albert i Beltran | #
|
|
e518a2c2 | Pau | # Thiss program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|||
# the Free Software Foundation, either version 3 of the License, or
|
|||
# (at your option) any later version.
|
|||
#
|
|||
# This program is distributed in the hope that it will be useful,
|
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
# GNU General Public License for more details.
|
|||
#
|
|||
# You should have received a copy of the GNU General Public License
|
|||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
#
|
|||
88cb0f51 | p4u | # Contributors: Pau Escrich <p4u@dabax.net>, Simó Albert i Beltran, Agustí Moll
|
|
0ef3dbdb | p4u | ||
e518a2c2 | Pau | ||
ba9fab2c | Agustí Moll Garcia | #OWRT_SVN_REV = 29592
|
|
ae80821b | p4u | OWRT_SVN = svn://svn.openwrt.org/openwrt/branches/attitude_adjustment
|
|
OWRT_PKG_SVN = svn://svn.openwrt.org/openwrt/branches/packages_12.09
|
|||
8be67335 | p4u | QMP_GIT_RW = ssh://gitosis@qmp.cat:221/qmp.git
|
|
QMP_GIT_RO = git://qmp.cat/qmp.git
|
|||
b2e7591a | Jorge L. Florit | QMP_GIT_BRANCH ?= testing
|
|
e518a2c2 | Pau | BUILD_DIR = build
|
|
CONFIG_DIR = configs
|
|||
MY_CONFIGS = $(BUILD_DIR)/configs
|
|||
7eff0866 | p4u | IMAGES = images
|
|
e518a2c2 | Pau | SHELL = bash
|
|
dbd4db87 | p4u | QMP_FEED = package/feeds/qmp_packages
|
|
1209afe3 | p4u | SCRIPTS_DIR= scripts
|
|
ee446b02 | Jorge L. Florit | COMMUNITY ?= qMp
|
|
EXTRA_PACKS =
|
|||
e518a2c2 | Pau | J ?= 1
|
|
41464728 | p4u | V ?= 0
|
|
e518a2c2 | Pau | T =
|
|
884b8141 | Agustí Moll Garcia | MAKE_SRC = -j$(J) V=$(V)
|
|
7eff0866 | p4u | ||
include targets.mk
|
|||
e518a2c2 | Pau | ||
92b6b927 | p4u | PROFILE ?= ath-qmp-tiny-node
|
|
1f0387c1 | p4u | TIMESTAMP = $(shell date +%Y%m%d_%H%M)
|
|
6b5e8a5c | p4u | ||
cce89d3e | p4u | #Checking if developer mode is enabled and if target is defined before
|
|
8be67335 | p4u | $(eval $(if $(DEV),QMP_GIT=$(QMP_GIT_RW),QMP_GIT=$(QMP_GIT_RO)))
|
|
0a1f5a1f | p4u | ||
#Define TARGET_CONFIGS and TARGET
|
|||
$(eval $(if $(TARGET_MASTER),TARGET_CONFIGS=$(TARGET_MASTER),TARGET_CONFIGS=$(T)))
|
|||
ff488f02 | p4u | $(eval $(if $(TARGET),,TARGET=$(T)))
|
|
0a1f5a1f | p4u | #Define BUILD_PATH based on TBUILD (defined in targets.mk)
|
|
$(eval $(if $(TBUILD),,TBUILD=$(TARGET)))
|
|||
BUILD_PATH=$(BUILD_DIR)/$(TBUILD)
|
|||
17fd4110 | Pau Escrich | #Getting output image paths and names
|
|
007cd56b | Pau Escrich | IMAGE_PATH := $(shell echo $(IMAGE) | awk '{print $$1}')
|
|
IM_NAME := $(shell echo $(IMAGE) | awk '{print $$2}')
|
|||
SIMAGE_PATH := $(shell echo $(SYSUPGRADE) | awk '{print $$1}')
|
|||
SIM_NAME := $(shell echo $(SYSUPGRADE) | awk '{print $$2}')
|
|||
884b8141 | Agustí Moll Garcia | ||
0a1f5a1f | p4u | CONFIG = $(BUILD_PATH)/.config
|
|
KCONFIG = $(BUILD_PATH)/target/linux/$(ARCH)/config-*
|
|||
3ba6af84 | p4u | ||
0bbc22a4 | Jorge L. Florit | .PHONY: checkout update clean config menuconfig kernel_menuconfig list_targets pre_build compile post_build clean_qmp
|
|
e518a2c2 | Pau | ||
0a1f5a1f | p4u | ||
e518a2c2 | Pau | define build_src
|
|
a80183bc | p4u | $(eval BRANCH_GIT=$(shell git --git-dir=$(BUILD_DIR)/qmp/.git branch|grep ^*|cut -d " " -f 2))
|
|
$(eval REV_GIT=$(shell git --git-dir=$(BUILD_DIR)/qmp/.git --no-pager log -n 1 --oneline|cut -d " " -f 1))
|
|||
0a1f5a1f | p4u | make -C $(BUILD_PATH) $(MAKE_SRC) BRANCH_GIT=$(BRANCH_GIT) REV_GIT=$(REV_GIT)
|
|
e518a2c2 | Pau | endef
|
|
9a2c8510 | p4u | define copy_feeds_file
|
|
f9c1e894 | p4u | $(if $(1),$(eval FEEDS_DIR=$(1)),$(eval FEEDS_DIR=$(TBUILD)))
|
|
$(if $(FEEDS_DIR),,$(call target_error))
|
|||
cp -f $(BUILD_DIR)/qmp/feeds.conf $(BUILD_DIR)/$(FEEDS_DIR)
|
|||
sed -i -e "s|PATH|`pwd`/$(BUILD_DIR)|" $(BUILD_DIR)/$(FEEDS_DIR)/feeds.conf
|
|||
9a2c8510 | p4u | endef
|
|
e518a2c2 | Pau | define checkout_src
|
|
0a1f5a1f | p4u | svn --quiet co $(OWRT_SVN) $(BUILD_PATH)
|
|
a1fb6e5b | Simó Albert i Beltran | mkdir -p dl
|
|
0a1f5a1f | p4u | ln -fs ../../dl $(BUILD_PATH)/dl
|
|
ln -fs ../qmp/files $(BUILD_PATH)/files
|
|||
99db01bf | Simó Albert i Beltran | ln -fs $(BUILD_DIR)/qmp/files
|
|
0a1f5a1f | p4u | rm -rf $(BUILD_PATH)/feeds/
|
|
f9c1e894 | p4u | $(call copy_feeds_file,$(TBUILD))
|
|
b9208096 | p4u | endef
|
|
6f755fd4 | p4u | define checkout_owrt_pkg_override
|
|
svn --quiet co ${OWRT_PKG_SVN} $(BUILD_DIR)/packages.$(TARGET)
|
|||
0a1f5a1f | p4u | sed -i -e "s|src-link packages .*|src-link packages `pwd`/$(BUILD_DIR)/packages.$(TARGET)|" $(BUILD_PATH)/feeds.conf
|
|
6f755fd4 | p4u | endef
|
|
b9208096 | p4u | define copy_config
|
|
92b6b927 | p4u | @echo "Using profile $(PROFILE)"
|
|
cp -f $(CONFIG_DIR)/$(PROFILE) $(CONFIG) || echo "WARNING: Config file not found!"
|
|||
1427a83c | Simó Albert i Beltran | -[ -f $(CONFIG_DIR)/targets/$(TARGET) ] && cat $(CONFIG_DIR)/targets/$(TARGET) >> $(CONFIG)
|
|
92b6b927 | p4u | cd $(BUILD_PATH) && make defconfig
|
|
endef
|
|||
define copy_config_obsolete
|
|||
0a1f5a1f | p4u | @echo "Syncronizing new configuration"
|
|
cp -f $(CONFIG_DIR)/$(TARGET_CONFIGS)/config $(CONFIG) || echo "WARNING: Config file not found!"
|
|||
cd $(BUILD_PATH) && ./scripts/diffconfig.sh > .config.tmp
|
|||
cp -f $(BUILD_PATH)/.config.tmp $(BUILD_PATH)/.config
|
|||
cd $(BUILD_PATH) && make defconfig
|
|||
1427a83c | Simó Albert i Beltran | -[ -f $(CONFIG_DIR)/$(TARGET_CONFIGS)/kernel_config ] && cat $(CONFIG_DIR)/$(TARGET_CONFIGS)/kernel_config >> $(CONFIG)
|
|
e518a2c2 | Pau | endef
|
|
0a1f5a1f | p4u | define copy_myconfig
|
|
@echo "Syncronizing configuration from previous one"
|
|||
@cp -f $(MY_CONFIGS)/$(TARGET_CONFIGS)/config $(CONFIG) || echo "WARNING: Config file not found in $(MY_CONFIGS)!"
|
|||
1427a83c | Simó Albert i Beltran | -@[ -f $(MY_CONFIGS)/$(TARGET_CONFIGS)/kernel_config ] && cat $(MY_CONFIGS)/$(TARGET_CONFIGS)/kernel_config >> $(CONFIG)
|
|
0a1f5a1f | p4u | endef
|
|
e518a2c2 | Pau | define update_feeds
|
|
e4a024c9 | p4u | @echo "Updating feed $(1)"
|
|
./$(BUILD_DIR)/$(1)/scripts/feeds update -a
|
|||
88cb0f51 | p4u | ||
# Temporay patch while old bmx6 is still in OpenWRT
|
|||
./$(BUILD_DIR)/$(1)/scripts/feeds install -a -p openwrt_routing
|
|||
e4a024c9 | p4u | ./$(BUILD_DIR)/$(1)/scripts/feeds install -a
|
|
e518a2c2 | Pau | endef
|
|
define menuconfig_owrt
|
|||
0a1f5a1f | p4u | make -C $(BUILD_PATH) menuconfig
|
|
a88f4272 | Simó Albert i Beltran | mkdir -p $(MY_CONFIGS)/$(TARGET)
|
|
ff488f02 | p4u | cp -f $(CONFIG) $(MY_CONFIGS)/$(TARGET)/config
|
|
e518a2c2 | Pau | endef
|
|
define kmenuconfig_owrt
|
|||
0a1f5a1f | p4u | make -C $(BUILD_PATH) kernel_menuconfig
|
|
a88f4272 | Simó Albert i Beltran | mkdir -p $(MY_CONFIGS)/$(TARGET)
|
|
ff488f02 | p4u | cp -f $(KCONFIG) $(MY_CONFIGS)/$(TARGET)/kernel_config
|
|
7eff0866 | p4u | endef
|
|
1209afe3 | p4u | define pre_build
|
|
0bbc22a4 | Jorge L. Florit | @echo "Executing PRE_BUILD scripts"
|
|
ee446b02 | Jorge L. Florit | $(foreach SCRIPT, $(wildcard $(SCRIPTS_DIR)/*.script), $(shell $(SCRIPT) PRE_BUILD $(TBUILD) $(TARGET) $(EXTRA_PACKS)) )
|
|
1209afe3 | p4u | endef
|
|
7eff0866 | p4u | define post_build
|
|
9204ae8b | p4u | $(eval BRANCH_GIT=$(shell git --git-dir=$(BUILD_DIR)/qmp/.git branch|grep ^*|cut -d " " -f 2))
|
|
17fd4110 | Pau Escrich | $(if $(IM_NAME),,$(eval IM_NAME=$(NAME)-$(COMMUNITY)_$(BRANCH_GIT)-factory-$(TIMESTAMP).bin))
|
|
$(if $(SIM_NAM),,$(eval SIM_NAME=$(NAME)-$(COMMUNITY)_$(BRANCH_GIT)-sysupgrade-$(TIMESTAMP).bin))
|
|||
0a1f5a1f | p4u | $(eval COMP=$(shell ls $(BUILD_PATH)/$(IMAGE_PATH) 2>/dev/null | grep -c \\.gz))
|
|
a1fb6e5b | Simó Albert i Beltran | mkdir -p $(IMAGES)
|
|
1427a83c | Simó Albert i Beltran | -@[ $(COMP) -eq 1 ] && gunzip $(BUILD_PATH)/$(IMAGE_PATH) -c > $(IMAGES)/$(IM_NAME)
|
|
-@[ $(COMP) -ne 1 -a -f $(BUILD_PATH)/$(IMAGE_PATH) ] && cp -f $(BUILD_PATH)/$(IMAGE_PATH) $(IMAGES)/$(IM_NAME)
|
|||
-@[ $(COMP) -eq 1 -a -n "$(SYSUPGRADE)" ] && gunzip $(BUILD_PATH)/$(SIMAGE_PATH) -c > $(IMAGES)/$(SIM_NAME)
|
|||
-@[ $(COMP) -ne 1 -a -n "$(SYSUPGRADE)" ] && cp -f $(BUILD_PATH)/$(SIMAGE_PATH) $(IMAGES)/$(SIM_NAME)
|
|||
d9c90227 | p4u | @[ -f $(IMAGES)/$(IM_NAME) ] || echo No output image configured in targets.mk
|
|
@echo $(IM_NAME)
|
|||
64f33346 | Simó Albert i Beltran | $(if $(SYSUPGRADE),@echo $(SIM_NAME))
|
|
0bbc22a4 | Jorge L. Florit | @echo "Executing POST_BUILD scripts"
|
|
ee446b02 | Jorge L. Florit | $(foreach SCRIPT, $(wildcard $(SCRIPTS_DIR)/*.script), $(shell $(SCRIPT) POST_BUILD $(TBUILD) $(TARGET) $(EXTRA_PACKS)) )
|
|
cce89d3e | p4u | @echo "qMp firmware compiled, you can find output files in $(IMAGES) directory."
|
|
e518a2c2 | Pau | endef
|
|
define clean_all
|
|||
a88f4272 | Simó Albert i Beltran | rm -rf $(BUILD_DIR)/*
|
|
rm -f .checkout_*
|
|||
4f79348d | Jorge L. Florit | rm -f $(IMAGES)/*.bin $(IMAGES)/IMAGES
|
|
e518a2c2 | Pau | endef
|
|
define clean_target
|
|||
1427a83c | Simó Albert i Beltran | -rm -rf $(BUILD_PATH)
|
|
-rm -f .checkout_$(TBUILD)
|
|||
-rm -rf $(BUILD_DIR)/packages.$(TARGET)
|
|||
a88f4272 | Simó Albert i Beltran | rm -f .checkout_owrt_pkg_override_$(TARGET)
|
|
e518a2c2 | Pau | endef
|
|
dbd4db87 | p4u | define clean_pkg
|
|
echo "Cleaning package $1"
|
|||
2aaa878f | Simó Albert i Beltran | make $1/clean
|
|
dbd4db87 | p4u | endef
|
|
e518a2c2 | Pau | define target_error
|
|
@echo "You must specify target using T var (make T=alix build)"
|
|||
@echo "To see avialable targets run: make list_targets"
|
|||
@exit 1
|
|||
endef
|
|||
7f54166f | Simó Albert i Beltran | define get_git_local_revision
|
|
git rev-parse origin/$1
|
|||
endef
|
|||
define get_git_remote_revision
|
|||
git ls-remote origin $1 | awk 'NR==1{print $$1}'
|
|||
endef
|
|||
9f3a2bdf | p4u | all: build
|
|
e518a2c2 | Pau | .checkout_qmp:
|
|
1427a83c | Simó Albert i Beltran | -@[ "$(DEV)" == "1" ] && echo "Using developer enviroment"
|
|
e518a2c2 | Pau | git clone $(QMP_GIT) $(BUILD_DIR)/qmp
|
|
b4656cb9 | Agustí Moll Garcia | cd $(BUILD_DIR)/qmp; git checkout $(QMP_GIT_BRANCH); cd ..
|
|
7eff0866 | p4u | @touch $@
|
|
e518a2c2 | Pau | ||
ca89f12f | Agustí Moll Garcia | .checkout_owrt_pkg:
|
|
ba9fab2c | Agustí Moll Garcia | svn --quiet co ${OWRT_PKG_SVN} $(BUILD_DIR)/packages
|
|
ca89f12f | Agustí Moll Garcia | @touch $@
|
|
6f755fd4 | p4u | .checkout_owrt_pkg_override:
|
|
$(if $(filter $(origin OWRT_PKG_SVN),override),$(if $(wildcard .checkout_owrt_pkg_override_$(TARGET)),,$(call checkout_owrt_pkg_override)),)
|
|||
@touch .checkout_owrt_pkg_override_$(TARGET)
|
|||
.checkout_owrt:
|
|||
0a1f5a1f | p4u | $(if $(TBUILD),,$(call target_error))
|
|
$(if $(wildcard .checkout_$(TBUILD)),,$(call checkout_src))
|
|||
6f755fd4 | p4u | ||
f9e40546 | Simó Albert i Beltran | checkout: .checkout_qmp .checkout_owrt .checkout_owrt_pkg .checkout_owrt_pkg_override
|
|
0a1f5a1f | p4u | $(if $(wildcard .checkout_$(TBUILD)),,$(call update_feeds,$(TBUILD)))
|
|
$(if $(wildcard .checkout_$(TBUILD)),,$(call copy_config))
|
|||
@touch .checkout_$(TBUILD)
|
|||
8fee292e | p4u | ||
sync_config:
|
|||
ff488f02 | p4u | $(if $(TARGET),,$(call target_error))
|
|
0a1f5a1f | p4u | $(if $(wildcard $(MY_CONFIGS)/$(TARGET_CONFIGS)), $(call copy_myconfig),$(call copy_config))
|
|
2aaa878f | Simó Albert i Beltran | ||
873553ed | p4u | update: .checkout_owrt_pkg .checkout_owrt_pkg_override .checkout_qmp
|
|
f9c1e894 | p4u | $(if $(TBUILD),,$(call target_error))
|
|
e518a2c2 | Pau | cd $(BUILD_DIR)/qmp && git pull
|
|
9a2c8510 | p4u | $(call copy_feeds_file)
|
|
e4a024c9 | p4u | ||
f9c1e894 | p4u | update_all: .checkout_owrt_pkg .checkout_owrt_pkg_override .checkout_qmp
|
|
@echo Updating qMp repository
|
|||
cd $(BUILD_DIR)/qmp && git pull
|
|||
@echo Updating feeds config files
|
|||
$(foreach dir,$(TBUILD_LIST),$(if $(wildcard $(BUILD_DIR)/$(dir)),$(call copy_feeds_file,$(dir))))
|
|||
@echo Updating feeds
|
|||
$(foreach dir,$(TBUILD_LIST),$(if $(wildcard $(BUILD_DIR)/$(dir)),$(call update_feeds,$(dir))))
|
|||
e518a2c2 | Pau | ||
9a2c8510 | p4u | update_feeds: update
|
|
$(call update_feeds,$(TBUILD))
|
|||
0a1f5a1f | p4u | menuconfig: checkout sync_config
|
|
6b5e8a5c | p4u | $(call menuconfig_owrt)
|
|
2aaa878f | Simó Albert i Beltran | ||
0a1f5a1f | p4u | kernel_menuconfig: checkout sync_config
|
|
6b5e8a5c | p4u | $(call kmenuconfig_owrt)
|
|
e518a2c2 | Pau | ||
clean:
|
|||
ff488f02 | p4u | $(if $(TARGET),$(call clean_target),$(call clean_all))
|
|
e518a2c2 | Pau | ||
dbd4db87 | p4u | clean_qmp:
|
|
0a1f5a1f | p4u | cd $(BUILD_PATH) ; \
|
|
dbd4db87 | p4u | for d in $(QMP_FEED)/*; do make $$d/clean ; done
|
|
1209afe3 | p4u | post_build: checkout
|
|
cce89d3e | p4u | $(call post_build)
|
|
1209afe3 | p4u | pre_build: checkout
|
|
$(call pre_build)
|
|||
0bbc22a4 | Jorge L. Florit | compile: checkout
|
|
$(if $(TARGET),$(call build_src))
|
|||
e518a2c2 | Pau | list_targets:
|
|
7eff0866 | p4u | $(info $(HW_AVAILABLE))
|
|
@exit 0
|
|||
e518a2c2 | Pau | ||
b2e7591a | Jorge L. Florit | target_name:
|
|
$(info $(NAME))
|
|||
@exit 0
|
|||
e518a2c2 | Pau | config:
|
|
1209afe3 | p4u | @select HW in $(HW_AVAILABLE); do break; done; echo $$HW > .config.tmp;
|
|
2aaa878f | Simó Albert i Beltran | mv .config.tmp .config
|
|
e518a2c2 | Pau | ||
8be67335 | p4u | help:
|
|
1427a83c | Simó Albert i Beltran | -cat README | more
|
|
8be67335 | p4u | ||
0bbc22a4 | Jorge L. Florit | build: checkout sync_config pre_build compile post_build
|
|
4f190dbb | Jorge L. Florit | ||
7f54166f | Simó Albert i Beltran | is_up_to_date:
|
|
cd $(BUILD_DIR)/qmp && test "$$($(call get_git_local_revision,$(QMP_GIT_BRANCH)))" == "$$($(call get_git_remote_revision,$(QMP_GIT_BRANCH)))"
|