Projecte

General

Perfil

Baixar (5.25 KB) Estadístiques
| Branca: | Etiqueta: | Revisió:
e518a2c2 Pau
# [qMp] firmware generator (http://qmp.cat)
#
82601f3e Pau
# Copyright (C) 2011 qmp.cat
#
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/>.
#

OWRT_SVN = svn://svn.openwrt.org/openwrt/branches/backfire
OWRT_SVN_REV = 27617
ca89f12f Agustí Moll Garcia
OWRT_PKG_SVN = svn://svn.openwrt.org/openwrt/packages
e518a2c2 Pau
QMP_GIT = ssh://gitosis@qmp.cat:221/qmp.git
b4656cb9 Agustí Moll Garcia
QMP_GIT_BRANCH = master
e518a2c2 Pau
EIGENNET_GIT = git://gitorious.org/eigennet/packages.git
b0c7430a p4u
EIGENNET_GIT_REV = 7467D68855991FE35797B0A5958B000F65C0134F
ca89f12f Agustí Moll Garcia
B6M_GIT = git://qmp.cat/b6m.git
B6M_GIT_BRANCH = openwrt
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
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
6b5e8a5c p4u
TIMESTAMP = $(shell date +%d%m%y_%H%M)
CONFIG = $(BUILD_DIR)/$(T)/.config
KCONFIG = $(BUILD_DIR)/$(T)/target/linux/$(ARCH)/config-*

884b8141 Agustí Moll Garcia
dbd4db87 p4u
.PHONY: checkout update clean config menuconfig kernel_menuconfig list_targets build clean_qmp
e518a2c2 Pau
884b8141 Agustí Moll Garcia
e518a2c2 Pau
define build_src
0ff6624a Agustí Moll Garcia
make -C $(BUILD_DIR)/$(T) $(MAKE_SRC) BRANCH_GIT=$(shell git --git-dir=$(BUILD_DIR)/qmp/.git branch|grep ^*|cut -d " " -f 2) REV_GIT=$(shell git --git-dir=$(BUILD_DIR)/qmp/.git --no-pager log -n 1 --oneline|cut -d " " -f 1)
e518a2c2 Pau
endef

define checkout_src
svn --quiet co -r $(OWRT_SVN_REV) $(OWRT_SVN) $(BUILD_DIR)/$(T)
@if [ ! -d dl ]; then mkdir dl; fi
ln -s ../../dl $(BUILD_DIR)/$(T)/dl
ln -s ../qmp/files $(BUILD_DIR)/$(T)/files
rm -rf $(BUILD_DIR)/$(T)/feeds/
cp -f $(BUILD_DIR)/qmp/feeds.conf $(BUILD_DIR)/$(T)/
sed -i -e "s|PATH|`pwd`/$(BUILD_DIR)|" $(BUILD_DIR)/$(T)/feeds.conf
b9208096 p4u
endef

define copy_config
6b5e8a5c p4u
cp -f $(CONFIG_DIR)/$(T)/config $(CONFIG)
[ -f $(CONFIG_DIR)/$(T)/kernel_config ] && cp -f $(CONFIG_DIR)/$(T)/kernel_config $(KCONFIG) || true
e518a2c2 Pau
endef

define update_feeds
e4a024c9 p4u
@echo "Updating feed $(1)"
./$(BUILD_DIR)/$(1)/scripts/feeds update -a
./$(BUILD_DIR)/$(1)/scripts/feeds install -a
e518a2c2 Pau
endef

define menuconfig_owrt
884b8141 Agustí Moll Garcia
make -C $(BUILD_DIR)/$(T) menuconfig
6b5e8a5c p4u
[ ! -d $(MY_CONFIGS)/$(T) ] && mkdir -p $(MY_CONFIGS)/$(T) || true
cp -f $(CONFIG) $(MY_CONFIGS)/$(T)/config
e518a2c2 Pau
endef

define kmenuconfig_owrt
884b8141 Agustí Moll Garcia
make -C $(BUILD_DIR)/$(T) kernel_menuconfig
6b5e8a5c p4u
[ ! -d $(MY_CONFIGS)/$(T) ] && mkdir -p $(MY_CONFIGS)/$(T) || true
cp -f $(KCONFIG) $(MY_CONFIGS)/$(T)/kernel_config
7eff0866 p4u
endef

define post_build
[ ! -d $(IMAGES) ] && mkdir $(IMAGES) || true
e4a024c9 p4u
cp -f $(BUILD_DIR)/$(T)/$(IMAGE) $(IMAGES)/$(NAME)-factory-$(TIMESTAMP).bin
cp -f $(BUILD_DIR)/$(T)/$(SYSUPGRADE) $(IMAGES)/$(NAME)-upgrade-$(TIMESTAMP).bin
7eff0866 p4u
@echo
@echo "qMp firmware compiled, you can find output files in $(IMAGES) directory"
e518a2c2 Pau
endef

define clean_all
7eff0866 p4u
[ -d "$(BUILD_DIR)" ] && rm -rf $(BUILD_DIR)/* || true
e518a2c2 Pau
rm -f .checkout_* 2>/dev/null || true
7eff0866 p4u
[ -d "$(BUILD_DIR)" ] && rm -f $(IMAGES)/* || true
e518a2c2 Pau
endef

define clean_target
6b5e8a5c p4u
[ -d "$(BUILD_DIR)/$(T)" ] && rm -rf $(BUILD_DIR)/$(T) || true
rm -f .checkout_$(T) 2>/dev/null || true
e518a2c2 Pau
endef

dbd4db87 p4u
define clean_pkg
echo "Cleaning package $1"
make $1/clean
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

.checkout_qmp:
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
.checkout_eig:
git clone $(EIGENNET_GIT) $(BUILD_DIR)/eigennet/packages
b0c7430a p4u
cd $(BUILD_DIR)/eigennet/packages && git reset --hard $(EIGENNET_GIT_REV)
7eff0866 p4u
@touch $@
e518a2c2 Pau
e6c8d8eb Agustí Moll Garcia
.checkout_b6m:
git clone $(B6M_GIT) $(BUILD_DIR)/b6m
ca89f12f Agustí Moll Garcia
cd $(BUILD_DIR)/b6m; git checkout --track origin/$(B6M_GIT_BRANCH); cd ..
e6c8d8eb Agustí Moll Garcia
@touch $@

ca89f12f Agustí Moll Garcia
.checkout_owrt_pkg:
svn --quiet co -r ${OWRT_SVN_REV} ${OWRT_PKG_SVN} $(BUILD_DIR)/packages
@touch $@

checkout: .checkout_owrt_pkg .checkout_qmp .checkout_eig .checkout_b6m
e518a2c2 Pau
$(if $(T),,$(call target_error))
$(if $(wildcard .checkout_$(T)),,$(call checkout_src))
e4a024c9 p4u
$(if $(wildcard .checkout_$(T)),,$(call update_feeds,$(T)))
b9208096 p4u
$(if $(wildcard .checkout_$(T)),,$(call copy_config))
7eff0866 p4u
@touch .checkout_$(T)
e518a2c2 Pau
ca89f12f Agustí Moll Garcia
update: .checkout_owrt_pkg .checkout_eig .checkout_qmp .checkout_b6m
e518a2c2 Pau
cd $(BUILD_DIR)/qmp && git pull
b0c7430a p4u
# cd $(BUILD_DIR)/eigennet/packages && git pull
e4a024c9 p4u
update_all: update
e518a2c2 Pau
$(if $(T),HW_AVAILABLE=$(T))
$(foreach dir,$(HW_AVAILABLE),$(if $(wildcard $(BUILD_DIR)/$(dir)),$(call update_feeds,$(dir))))

menuconfig: checkout
6b5e8a5c p4u
$(call menuconfig_owrt)
e518a2c2 Pau
kernel_menuconfig: checkout
6b5e8a5c p4u
$(call kmenuconfig_owrt)
e518a2c2 Pau
clean:
6b5e8a5c p4u
$(if $(T),$(call clean_target),$(call clean_all))
e518a2c2 Pau
dbd4db87 p4u
clean_qmp:
cd $(BUILD_DIR)/$(T) ; \
for d in $(QMP_FEED)/*; do make $$d/clean ; done

e518a2c2 Pau
list_targets:
7eff0866 p4u
$(info $(HW_AVAILABLE))
@exit 0
e518a2c2 Pau
config:
select HW in alix rs rspro x86 fonera nsm5 nsm2; do break; done; echo $HW > .config.tmp;
mv .config.tmp .config

build: checkout
6b5e8a5c p4u
$(if $(T),$(call build_src))
$(call post_build)
e518a2c2 Pau
e0248f77 p4u
all: build

4bdd4ad8 p4u
default: build