X-Git-Url: https://git.librecmc.org/?p=oweals%2Fu-boot_mod.git;a=blobdiff_plain;f=u-boot%2FMakefile;h=b899ba9dbbd0bf51f9b06465156cb58ba48406b9;hp=f0d601e3bb9b0402a27c887be43281d98df039d2;hb=767cceef862d41ec07f09b461eeffe3768d65de8;hpb=9403609d756c584014dae88a9626267c5adf6a14 diff --git a/u-boot/Makefile b/u-boot/Makefile old mode 100755 new mode 100644 index f0d601e..b899ba9 --- a/u-boot/Makefile +++ b/u-boot/Makefile @@ -1,642 +1,739 @@ # -# (C) Copyright 2000-2006 -# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# Copyright (C) 2016 Piotr Dymacz # -# See file CREDITS for list of people who contributed to this -# project. +# (C) Copyright 2000-2006 Wolfgang Denk, +# DENX Software Engineering, wd@denx.de. # -# This 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 2 of -# the License, or (at your option) any later version. +# SPDX-License-Identifier: GPL-2.0 # -# 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, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# - -VERSION = 1 -PATCHLEVEL = 1 -SUBLEVEL = 4 -EXTRAVERSION = -U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) -VERSION_FILE = include/version_autogenerated.h - -HOSTARCH := $(shell uname -m | \ - sed -e s/i.86/i386/ \ - -e s/sun4u/sparc64/ \ - -e s/arm.*/arm/ \ - -e s/sa110/arm/ \ - -e s/powerpc/ppc/ \ - -e s/macppc/ppc/) -HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \ - sed -e 's/\(cygwin\).*/cygwin/') +VERSION = 1 +PATCHLEVEL = 1 +SUBLEVEL = 4 +EXTRAVERSION = -$(shell git rev-parse --short=8 HEAD) +ISREPODIRTY = $(shell if git diff-files | read dummy; then echo 1; else echo 0; fi) +VERSION_FILE = include/version_autogenerated.h -export HOSTARCH HOSTOS +MKCONFIG = $(BUILD_TOPDIR)/u-boot/mkconfig +MKIMAGE = $(BUILD_TOPDIR)/u-boot/tools/mkimage +LZMA = $(BUILD_TOPDIR)/host_util/lzma/lzma -# Deal with colliding definitions from tcsh etc. -VENDOR= +# Show in version string if we are not building from clean repository +ifeq ($(ISREPODIRTY),1) + U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)"-dirty" +else + U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)"-clean" +endif -######################################################################### +# =============================================================== -TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi) -export TOPDIR +TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi) +export TOPDIR -ifeq ($(COMPRESSED_UBOOT),1) -COMPRESSED_UBOOT = 1 -export export COMPRESSED_UBOOT +# Some variables passed as arguments in cmd +ifneq ($(IMG_SIZE),) + CONFIG_MAX_UBOOT_SIZE = $(IMG_SIZE) + export CONFIG_MAX_UBOOT_SIZE endif -ifeq (include/config.mk,$(wildcard include/config.mk)) -# load ARCH, BOARD, and CPU configuration -include include/config.mk -export ARCH CPU BOARD VENDOR SOC -ifndef CROSS_COMPILE -ifeq ($(HOSTARCH),ppc) -CROSS_COMPILE = -else -ifeq ($(ARCH),ppc) -CROSS_COMPILE = powerpc-linux- -endif -ifeq ($(ARCH),arm) -CROSS_COMPILE = arm-linux- -endif -ifeq ($(ARCH),i386) -ifeq ($(HOSTARCH),i386) -CROSS_COMPILE = -else -CROSS_COMPILE = i386-linux- -endif -endif -ifeq ($(ARCH),mips) -CROSS_COMPILE = mips-linux- +ifeq ($(IMG_LZMA),1) + COMPRESSED_UBOOT = 1 + export COMPRESSED_UBOOT endif -ifeq ($(ARCH),nios) -CROSS_COMPILE = nios-elf- -endif -ifeq ($(ARCH),nios2) -CROSS_COMPILE = nios2-elf- -endif -ifeq ($(ARCH),m68k) -CROSS_COMPILE = m68k-elf- + +ifeq ($(IMG_RAM),1) + CONFIG_SKIP_LOWLEVEL_INIT = 1 + export CONFIG_SKIP_LOWLEVEL_INIT endif -ifeq ($(ARCH),microblaze) -CROSS_COMPILE = mb- + +ifneq ($(DEVICE_VENDOR),) + DEVICE_VENDOR = $(DEVICE_VENDOR) + export DEVICE_VENDOR endif -ifeq ($(ARCH),blackfin) -CROSS_COMPILE = bfin-elf- + +# Never use LZMA compression +# for a RAM version of image +ifdef CONFIG_SKIP_LOWLEVEL_INIT + unexport COMPRESSED_UBOOT + COMPRESSED_UBOOT = endif + +ifndef CROSS_COMPILE + $(error "CROSS_COMPILE is not defined!") endif +export CROSS_COMPILE + +ifndef STAGING_DIR + $(error "STAGING_DIR is not defined!") endif +export STAGING_DIR -export CROSS_COMPILE +# Endianness +ifndef ENDIANNESS + ENDIANNESS=-EB +endif +export ENDIANNESS + +# ======================= +# CUSTOM HELPER FUNCTIONS +# ======================= + +define echo_green + echo -e "\e[92m$(1)\e[0m" +endef + +define echo_red + echo -e "\e[91m$(1)\e[0m" +endef + +define echo_yellow + echo -e "\e[93m$(1)\e[0m" +endef + +define ih_name +U-Boot $(strip $(subst ",,$(U_BOOT_VERSION))) +endef + +# $(1): name +# $(2): path +define echo_size +@echo "$(1): `wc -c < $(strip $(2))` Bytes" +endef + +# $(1): define name +# $(2): define value +define define_add + len=$$((5 - ($$(expr length $(1))/8))); \ + tab=`printf '%*s' "$$len" | tr ' ' "\t"`; \ + echo -ne "#define $(strip $(1))$${tab}" >> include/config.h; \ + echo -e '$(strip $(2))' >> include/config.h +endef + +# $(1): define name +define undef_add + echo -e '#undef $(strip $(1))' >> include/config.h +endef + +# $(1): path +define include_add + echo -e '#include <$(strip $(1))>' >> include/config.h +endef + +# $(1): name +define board_name +$(if $(1),$(strip $(1)),OEM/Unknown) +endef + +# $(1): size +define flash_size +$(if $(1),$(strip $(1)),4) +endef + +# $(1): vendor, board name/model +# $(2): hostname +# $(3): default FLASH size in MB +# $(4): reset button GPIO number +# $(5): 1 if reset button is active low +# $(6): SOC_TYPE +define config_init + $(call echo_green,Preparing configuration for target: $@) + echo + + $(call echo_yellow, Device vendor/model:\t$(call board_name,$(1))) + $(if $(DEVICE_VENDOR), \ + $(call echo_yellow, Custom recovery web:\tyes ($(DEVICE_VENDOR))), \ + $(call echo_yellow, Custom recovery web:\tno) \ + ) + + $(if $(CONFIG_MAX_UBOOT_SIZE), \ + $(call echo_yellow, Image size limit:\t$$(($(CONFIG_MAX_UBOOT_SIZE) / 1024)) KB), + $(call echo_yellow, Image size limit:\tnot specified) + ) + + $(call echo_yellow, Default FLASH size:\t$(call flash_size,$(3)) MB) + + $(if $(4), + $(call echo_yellow, GPIO reset button:\t$(strip $(4))), \ + $(call echo_yellow, GPIO reset button:\tnot specified) \ + ) + + $(if $(filter $(5),1), + $(call echo_yellow, Button active low:\tyes), \ + $(call echo_yellow, Button active low:\tno) \ + ) + + $(if $(filter $(COMPRESSED_UBOOT),1), \ + $(call echo_yellow, LZMA compression:\tyes), \ + $(call echo_yellow, LZMA compression:\tno) \ + ) + + $(if $(filter $(CONFIG_SKIP_LOWLEVEL_INIT),1), \ + $(call echo_yellow, RAM-loadable only:\tyes), \ + $(call echo_yellow, RAM-loadable only:\tno) \ + ) + + $(if $(2),$(call define_add,CONFIG_HOSTNAME,u-boot_$(strip $(2)))) + + $(if $(4),$(call define_add,CONFIG_GPIO_RESET_BTN,$(strip $(4)))) + $(if $(filter $(5),1),$(call define_add,CONFIG_GPIO_RESET_BTN_ACTIVE_LOW,1)) + $(if $(CONFIG_MAX_UBOOT_SIZE), \ + $(call define_add,CONFIG_MAX_UBOOT_SIZE,$(CONFIG_MAX_UBOOT_SIZE)) + $(call define_add,CONFIG_MAX_UBOOT_SIZE_HEX,$(shell printf '0x%X' $(CONFIG_MAX_UBOOT_SIZE))) + ) + + $(if $(filter $(CONFIG_SKIP_LOWLEVEL_INIT),1), \ + $(call define_add,CONFIG_SKIP_LOWLEVEL_INIT,1) \ + ) + $(if $(filter $(CONFIG_SKIP_LOWLEVEL_INIT),1), \ + $(call undef_add,COMPRESSED_UBOOT) \ + ) + + $(if $(6), \ + $(call define_add,SOC_TYPE,$(6)) \ + ) + + $(call define_add,CONFIG_BOARD_CUSTOM_STRING,$(call board_name,$(1))) + $(call define_add,CONFIG_DEFAULT_FLASH_SIZE_IN_MB,$(call flash_size,$(3))) + + echo +endef + +# =============================================================== + +# First, check if configuration was done +ifneq (include/config.mk, $(wildcard include/config.mk)) +all install u-boot u-boot.srec depend dep: + $(error "System was not configured!") +else +# Load ARCH, BOARD, and CPU configuration +include include/config.mk +export ARCH CPU BOARD VENDOR SOC -# load other configuration +# Load other configuration include $(TOPDIR)/config.mk - -######################################################################### +# =============================================================== # U-Boot objects....order is important (i.e. start must be first) -OBJS = cpu/$(CPU)/start.o - -ifeq ($(COMPRESSED_UBOOT),1) -OBJS_BOOTSTRAP = cpu/$(CPU)/start_bootstrap.o -endif +OBJS = cpu/$(CPU)/start.o LIBS = lib_generic/libgeneric.a LIBS += common/libcommon.a -LIBS += board/$(BOARDDIR)/lib$(BOARD).a -LIBS += cpu/$(CPU)/lib$(CPU).a - -ifdef SOC -LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a -endif LIBS += lib_$(ARCH)/lib$(ARCH).a LIBS += drivers/libdrivers.a LIBS += net/libnet.a LIBS += rtc/librtc.a -LIBS += httpd/libhttpd.a LIBS += $(BOARDLIBS) -ifeq ($(COMPRESSED_UBOOT),1) -LIBS_BOOTSTRAP = lib_bootstrap/libbootstrap.a -LIBS_BOOTSTRAP += board/$(BOARDDIR)/lib$(BOARD).a -LIBS_BOOTSTRAP += cpu/$(CPU)/lib$(CPU).a -LIBS_BOOTSTRAP += cpu/$(CPU)/$(SOC)/lib$(SOC).a +LIBS_SHARED = board/$(BOARDDIR)/lib$(BOARD).a +LIBS_SHARED += httpd/libhttpd.a +ifdef SOC + LIBS_SHARED += cpu/$(CPU)/$(SOC)/lib$(SOC).a endif +LIBS_SHARED += cpu/$(CPU)/lib$(CPU).a -.PHONY : $(LIBS) - -ifeq ($(COMPRESSED_UBOOT),1) -.PHONY : $(LIBS_BOOTSTRAP) +ifdef COMPRESSED_UBOOT + OBJS_BOOTSTRAP = cpu/$(CPU)/start_bootstrap.o + LIBS_BOOTSTRAP = lib_bootstrap/libbootstrap.a + PHONY_LIBS = $(LIBS_BOOTSTRAP) $(LIBS_SHARED) +else + PHONY_LIBS = $(LIBS) $(LIBS_SHARED) endif +.PHONY: $(PHONY_LIBS) # Add GCC lib PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc # The "tools" are needed early, so put this first # Don't include stuff already done in $(LIBS) -SUBDIRS = tools +SUBDIRS = tools -.PHONY : $(SUBDIRS) +.PHONY: $(SUBDIRS) -######################################################################### -######################################################################### +# =============================================================== ALL = u-boot.srec u-boot.bin System.map -ifeq ($(COMPRESSED_UBOOT),1) -all: $(ALL) tuboot.bin +ifdef COMPRESSED_UBOOT +all: $(ALL) tuboot.bin else -all: $(ALL) +all: $(ALL) u-boot.img endif -u-boot.hex: u-boot - $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ +u-boot.hex: u-boot + $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -u-boot.srec: u-boot - $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ +u-boot.srec: u-boot + $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -u-boot.bin: u-boot - $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ +u-boot.bin: u-boot + $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ -u-boot.img: u-boot.bin - ./tools/mkimage -A $(ARCH) -T firmware -C none \ - -a $(TEXT_BASE) -e 0 \ - -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \ - sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ - -d $< $@ +u-boot.img: u-boot.bin + @echo + $(call echo_green,Preparing regular U-Boot image $@...) + $(MKIMAGE) -A $(ARCH) -T firmware -C none -a $(TEXT_BASE) \ + -e 0 -n '$(call ih_name)' -d $< $@ -u-boot.dis: u-boot - $(OBJDUMP) -d $< > $@ +u-boot.dis: u-boot + $(OBJDUMP) -d $< > $@ -u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT) - UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\ - $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \ - --start-group $(LIBS) --end-group $(PLATFORM_LIBS) \ - -Map u-boot.map -o u-boot +u-boot: fsdata depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LIBS_SHARED) $(LDSCRIPT) + UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) $(LIBS_SHARED) | \ + sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p' | \ + sort | uniq`; \ + $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \ + --start-group $(LIBS) $(LIBS_SHARED) \ + --end-group $(PLATFORM_LIBS) \ + -Map u-boot.map -o u-boot + +$(LIBS_SHARED): + $(MAKE) -C `dirname $@` $(LIBS): - $(MAKE) -C `dirname $@` + $(MAKE) -C `dirname $@` $(SUBDIRS): - $(MAKE) -C $@ all - -ifeq ($(COMPRESSED_UBOOT),1) -LZMA = $(BUILD_TOPDIR)/host_util/lzma - -tuboot.bin: System.map bootstrap.bin u-boot.lzimg - @cat bootstrap.bin > $@ - @cat u-boot.lzimg >> $@ - -u-boot.lzimg: $(obj)u-boot.bin System.map - @rm -rf u-boot.bin.lzma - #$(LZMA) e $(obj)u-boot.bin u-boot.bin.lzma - $(LZMA) --best --keep $(obj)u-boot.bin - ./tools/mkimage -A mips -T firmware -C lzma \ - -a 0x$(shell grep "T _start" $(TOPDIR)/System.map | awk '{ printf "%s", $$1 }') \ - -e 0x$(shell grep "T _start" $(TOPDIR)/System.map | awk '{ printf "%s", $$1 }') \ - -n 'u-boot image' -d $(obj)u-boot.bin.lzma $@ - -bootstrap.bin: bootstrap - $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ - -bootstrap: depend version $(SUBDIRS) $(OBJS_BOOTSTRAP) $(LIBS_BOOTSTRAP) $(LDSCRIPT_BOOTSTRAP) - UNDEF_SYM=`$(OBJDUMP) -x $(LIBS_BOOTSTRAP) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\ - $(LD) $(LDFLAGS_BOOTSTRAP) $$UNDEF_SYM $(OBJS_BOOTSTRAP) \ - --start-group $(LIBS_BOOTSTRAP) --end-group $(PLATFORM_LIBS) \ - -Map bootstrap.map -o bootstrap + $(MAKE) -C $@ all + +# For LZMA compressed image +ifdef COMPRESSED_UBOOT +tuboot.bin: System.map bootstrap.bin u-boot.lzimg + @echo + $(call echo_green,Merging bootstrap.bin with u-boot.lzimg...) + $(call echo_size, Bootstrap size,bootstrap.bin) + $(call echo_size, LZMA image size,u-boot.lzimg) + @cat bootstrap.bin > $@ + @cat u-boot.lzimg >> $@ + $(call echo_size, Total image size,$@) + +u-boot.lzimg: lzma_host $(obj)u-boot.bin System.map + @echo + @rm -rf u-boot.bin.lzma + @$(call echo_green,Compressing U-Boot image $<...) + @$(LZMA) --best --keep $(obj)u-boot.bin + $(call echo_green,Preparing LZMA compressed U-Boot image $@...) + $(MKIMAGE) -A $(ARCH) -T firmware -C lzma \ + -a 0x$(shell grep "T _start" $(TOPDIR)/System.map | \ + awk '{ printf "%s", $$1 }') \ + -e 0x$(shell grep "T _start" $(TOPDIR)/System.map | \ + awk '{ printf "%s", $$1 }') \ + -n '$(call ih_name)' -d $(obj)u-boot.bin.lzma $@ + +bootstrap.bin: bootstrap + $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ + +bootstrap: depend version $(SUBDIRS) $(OBJS_BOOTSTRAP) $(LIBS_BOOTSTRAP) $(LIBS_SHARED) $(LDSCRIPT_BOOTSTRAP) + UNDEF_SYM=`$(OBJDUMP) -x $(LIBS_BOOTSTRAP) | \ + sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p' | \ + sort | uniq`; \ + $(LD) $(LDFLAGS_BOOTSTRAP) $$UNDEF_SYM $(OBJS_BOOTSTRAP) \ + --start-group $(LIBS_BOOTSTRAP) $(LIBS_SHARED) \ + --end-group $(PLATFORM_LIBS) \ + -Map bootstrap.map -o bootstrap $(LIBS_BOOTSTRAP): - $(MAKE) -C `dirname $@` -endif + $(MAKE) -C `dirname $@` + +lzma_host: + @echo + $(call echo_green,Building lzma host utility...) + $(MAKE) -C $(BUILD_TOPDIR)/host_util/lzma -f makefile.gcc all +endif # ifdef COMPRESSED_UBOOT version: - @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \ - echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \ - echo "\"" >> $(VERSION_FILE) + @echo -n "#define U_BOOT_VERSION \"U-Boot $(U_BOOT_VERSION)\"" > $(VERSION_FILE) -gdbtools: - $(MAKE) -C tools/gdb || exit 1 +fsdata: + $(call echo_green,Preparing web server files...) + @echo + cd httpd && ./vendors/makefsdatac $(DEVICE_VENDOR) depend dep: - @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done - -tags: - ctags -w `find $(SUBDIRS) include \ - lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \ - fs/cramfs fs/fat fs/fdos fs/jffs2 \ - net disk rtc dtt drivers drivers/sk98lin common \ - \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` - -etags: - etags -a `find $(SUBDIRS) include \ - lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \ - fs/cramfs fs/fat fs/fdos fs/jffs2 \ - net disk rtc dtt drivers drivers/sk98lin common \ - \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` - -System.map: u-boot - @$(NM) $< | \ - grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ - sort > System.map - -######################################################################### -else -all install u-boot u-boot.srec depend dep: - @echo "System not configured - see README" >&2 - @ exit 1 -endif + @for dir in $(SUBDIRS); do $(MAKE) -C $$dir .depend; done -######################################################################### +System.map: u-boot + @$(NM) $< | \ + grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ + sort > System.map +endif # include/config.mk + +# ===================== +# COMMON/SHARED TARGETS +# ===================== unconfig: + @$(call echo_green,Removing configuration...) @rm -f include/config.h include/config.mk board/*/config.tmp -#======================================================================== -# MIPS -#======================================================================== -######################################################################### -## MIPS32 AR7100 (24K) -######################################################################### -common_config : +config_common: @ >include/config.h - -ifdef CONFIG_BOOTDELAY - @echo "#define CONFIG_BOOTDELAY "$(CONFIG_BOOTDELAY) >> include/config.h -endif - -ifdef CFG_PLL_FREQ - @echo "#define CFG_PLL_FREQ "$(CFG_PLL_FREQ) >> include/config.h -endif - - @echo "#define CONFIG_DELAY_TO_AUTORUN_HTTPD 3" >> include/config.h - @echo "#define CONFIG_DELAY_TO_AUTORUN_CONSOLE 5" >> include/config.h - @echo "#define CONFIG_DELAY_TO_AUTORUN_NETCONSOLE 7" >> include/config.h - - # max delay time for button pressing - @echo "#define CONFIG_MAX_BUTTON_PRESSING 10" >> include/config.h - - # don't show info about console (in, out, err...) - @echo "#define CFG_CONSOLE_INFO_QUIET" >> include/config.h - -hornet_common_config : common_config - @echo "#define CONFIG_AR7240 1" >> include/config.h - @echo "#define CONFIG_MACH_HORNET 1" >> include/config.h - @echo "#define CONFIG_HORNET_1_1_WAR 1" >> include/config.h - @echo "#define NEW_DDR_TAP_CAL 1" >> include/config.h - -wr703n_config : unconfig hornet_common_config - @echo '======= Configuring for TP-Link TL-WR703N at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_WR703N_V1 1" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 27" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 11" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 4" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP121 (AR9331) U-Boot for TL-WR703N\"" >> include/config.h - - @./mkconfig -a ap121 mips mips ap121 ar7240 ar7240 - -wr720n_v3_CH_config : unconfig hornet_common_config - @echo '======= Configuring for TP-Link TL-WR720N v3 CH at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_WR720N_V3 1" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 27" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 11" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 4" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP121 (AR9331) U-Boot for TL-WR720N v3 CH\"" >> include/config.h - - @./mkconfig -a ap121 mips mips ap121 ar7240 ar7240 - -wr710n_config : unconfig hornet_common_config - @echo '======= Configuring for TP-Link TL-WR710N at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_WR710N_V1 1" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 27" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 11" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 8" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP121 (AR9331) U-Boot for TL-WR710N\"" >> include/config.h - - @./mkconfig -a ap121 mips mips ap121 ar7240 ar7240 - -mr3020_config : unconfig hornet_common_config - @echo '======= Configuring for TP-Link TL-MR3020 at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_MR3020_V1 1" >> include/config.h - @echo "#define GPIO_INTERNET_LED_BIT 27" >> include/config.h - @echo "#define GPIO_INTERNET_LED_ON 0" >> include/config.h - @echo "#define GPIO_WPS_LED_BIT 26" >> include/config.h - @echo "#define GPIO_WPS_LED_ON 0" >> include/config.h - @echo "#define GPIO_WLAN_LED_BIT 0" >> include/config.h - @echo "#define GPIO_WLAN_LED_ON 1" >> include/config.h - @echo "#define GPIO_ETH_LED_BIT 17" >> include/config.h - @echo "#define GPIO_ETH_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 11" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 4" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP121 (AR9331) U-Boot for TL-MR3020\"" >> include/config.h - - @./mkconfig -a ap121 mips mips ap121 ar7240 ar7240 - -mr3040_config : unconfig hornet_common_config - @echo '======= Configuring for TP-Link TL-MR3040 at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_MR3040_V1V2 1" >> include/config.h - @echo "#define GPIO_INTERNET_LED_BIT 27" >> include/config.h - @echo "#define GPIO_INTERNET_LED_ON 0" >> include/config.h - @echo "#define GPIO_WLAN_LED_BIT 26" >> include/config.h - @echo "#define GPIO_WLAN_LED_ON 0" >> include/config.h - @echo "#define GPIO_ETH_LED_BIT 17" >> include/config.h - @echo "#define GPIO_ETH_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 11" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 4" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP121 (AR9331) U-Boot for TL-MR3040\"" >> include/config.h - - @./mkconfig -a ap121 mips mips ap121 ar7240 ar7240 - -mr10u_config : unconfig hornet_common_config - @echo '======= Configuring for TP-Link TL-MR10U at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_MR10U_V1 1" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 27" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 11" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 4" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP121 (AR9331) U-Boot for TL-MR10U\"" >> include/config.h - - @./mkconfig -a ap121 mips mips ap121 ar7240 ar7240 - -mr13u_config : unconfig hornet_common_config - @echo '======= Configuring for TP-Link TL-MR13U at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_MR13U_V1 1" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 27" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 11" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 4" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP121 (AR9331) U-Boot for TL-MR13U\"" >> include/config.h - - @./mkconfig -a ap121 mips mips ap121 ar7240 ar7240 - -wr740n_v4_config : unconfig hornet_common_config - @echo '======= Configuring for TP-Link TL-WR740N v4 at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_WR740N_V4 1" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 27" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_WLAN_LED_BIT 0" >> include/config.h - @echo "#define GPIO_WLAN_LED_ON 1" >> include/config.h - @echo "#define GPIO_LAN1_LED_BIT 14" >> include/config.h - @echo "#define GPIO_LAN1_LED_ON 1" >> include/config.h - @echo "#define GPIO_LAN2_LED_BIT 15" >> include/config.h - @echo "#define GPIO_LAN2_LED_ON 1" >> include/config.h - @echo "#define GPIO_LAN3_LED_BIT 16" >> include/config.h - @echo "#define GPIO_LAN3_LED_ON 1" >> include/config.h - @echo "#define GPIO_LAN4_LED_BIT 17" >> include/config.h - @echo "#define GPIO_LAN4_LED_ON 0" >> include/config.h - @echo "#define GPIO_INTERNET_LED_BIT 13" >> include/config.h - @echo "#define GPIO_INTERNET_LED_ON 1" >> include/config.h - @echo "#define GPIO_QSS_LED_BIT 1" >> include/config.h - @echo "#define GPIO_QSS_LED_ON 1" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 11" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 4" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP121 (AR9331) U-Boot for TL-WR74xN/D v4\"" >> include/config.h - - @./mkconfig -a ap121 mips mips ap121 ar7240 ar7240 - -mr3220_v2_config : unconfig hornet_common_config - @echo '======= Configuring for TP-Link TL-MR3220 v2 at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_MR3220_V2 1" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 27" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_WLAN_LED_BIT 0" >> include/config.h - @echo "#define GPIO_WLAN_LED_ON 1" >> include/config.h - @echo "#define GPIO_LAN1_LED_BIT 14" >> include/config.h - @echo "#define GPIO_LAN1_LED_ON 1" >> include/config.h - @echo "#define GPIO_LAN2_LED_BIT 15" >> include/config.h - @echo "#define GPIO_LAN2_LED_ON 1" >> include/config.h - @echo "#define GPIO_LAN3_LED_BIT 16" >> include/config.h - @echo "#define GPIO_LAN3_LED_ON 1" >> include/config.h - @echo "#define GPIO_LAN4_LED_BIT 17" >> include/config.h - @echo "#define GPIO_LAN4_LED_ON 0" >> include/config.h - @echo "#define GPIO_INTERNET_LED_BIT 13" >> include/config.h - @echo "#define GPIO_INTERNET_LED_ON 1" >> include/config.h - @echo "#define GPIO_QSS_LED_BIT 1" >> include/config.h - @echo "#define GPIO_QSS_LED_ON 1" >> include/config.h - @echo "#define GPIO_USB_LED_BIT 26" >> include/config.h - @echo "#define GPIO_USB_LED_ON 1" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 11" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 4" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP121 (AR9331) U-Boot for TL-MR3220 v2\"" >> include/config.h - - @./mkconfig -a ap121 mips mips ap121 ar7240 ar7240 - -dir505_config : unconfig hornet_common_config - @echo '======= Configuring for D-Link DIR-505 at:' `date` '=======' - @echo "#define CONFIG_FOR_DLINK_DIR505_A1 1" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 27" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - - # we will use WPS button instead of reset - @echo "#define GPIO_RST_BUTTON_BIT 11" >> include/config.h - @echo "#define GPIO_RST_BUTTON_IS_ACTIVE_LOW 1" >> include/config.h - - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 8" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP121 (AR9331) U-Boot for DIR-505\"" >> include/config.h - - @./mkconfig -a ap121 mips mips ap121 ar7240 ar7240 - -gs_oolite_v1_dev_config : unconfig hornet_common_config - @echo '======= Configuring for GS-Oolite v1 with dev board at:' `date` '=======' - @echo "#define CONFIG_FOR_GS_OOLITE_V1_DEV 1" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 27" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_WAN_LED_BIT 17" >> include/config.h - @echo "#define GPIO_WAN_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN1_LED_BIT 13" >> include/config.h - @echo "#define GPIO_LAN1_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN2_LED_BIT 15" >> include/config.h - @echo "#define GPIO_LAN2_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 11" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 16" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP121 (AR9331) U-Boot for GS-Oolite v1\"" >> include/config.h - - @./mkconfig -a ap121 mips mips ap121 ar7240 ar7240 - -carambola2_config : unconfig hornet_common_config - @echo '======= Configuring for 8devices Carambola 2 at:' `date` '=======' - @echo "#define CONFIG_FOR_8DEVICES_CARAMBOLA2 1" >> include/config.h - - # Carambola 2 uses uncompressed version - @echo "#undef COMPRESSED_UBOOT" >> include/config.h - - # Carambola 2 uses 40 MHz oscillator - @echo "#define CONFIG_40MHZ_XTAL_SUPPORT 1" >> include/config.h - - @echo "#define GPIO_WLAN_LED_BIT 0" >> include/config.h - @echo "#define GPIO_WLAN_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 11" >> include/config.h - - # Carambola 2 development board has RST button pulled up, so it is active at low - @echo "#define GPIO_RST_BUTTON_IS_ACTIVE_LOW 1" >> include/config.h - - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 16" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP121 (AR9331) U-Boot for CARAMBOLA2 v1\"" >> include/config.h - - @./mkconfig -a ap121 mips mips ap121 ar7240 ar7240 - -wasp_common_config : common_config - @echo "#define CONFIG_AR7240 1" >> include/config.h - @echo "#define CONFIG_WASP 1" >> include/config.h - @echo "#define CONFIG_WASP_SUPPORT 1" >> include/config.h - -wdr3600_43x0_config : unconfig wasp_common_config - @echo '======= Configuring for TP-Link TL-WDR3600/43x0 at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_WDR3600_WDR43X0_V1 1" >> include/config.h - @echo "#define DDR2_32BIT_SUPPORT 1" >> include/config.h - @echo "#define CFG_ATHRS17_PHY 1" >> include/config.h - @echo "#define CFG_AG7240_NMACS 1" >> include/config.h - @echo "#define CFG_DUAL_PHY_SUPPORT 1" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 14" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_WLAN_2G_LED_BIT 13" >> include/config.h - @echo "#define GPIO_WLAN_2G_LED_ON 0" >> include/config.h - @echo "#define GPIO_USB1_LED_BIT 11" >> include/config.h - @echo "#define GPIO_USB1_LED_ON 0" >> include/config.h - @echo "#define GPIO_USB2_LED_BIT 12" >> include/config.h - @echo "#define GPIO_USB2_LED_ON 0" >> include/config.h - @echo "#define GPIO_QSS_LED_BIT 15" >> include/config.h - @echo "#define GPIO_QSS_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 16" >> include/config.h - @echo "#define GPIO_RST_BUTTON_IS_ACTIVE_LOW 1" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 8" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"DB120 (AR9344) U-Boot for TL-WDR3600/43x0\"" >> include/config.h - - @./mkconfig -a db12x mips mips db12x ar7240 ar7240 - -wdr3500_config : unconfig wasp_common_config - @echo '======= Configuring for TP-Link TL-WDR3500 at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_WDR3500_V1 1" >> include/config.h - @echo "#define DDR2_32BIT_SUPPORT 1" >> include/config.h - @echo "#define CFG_ATHRS27_PHY 1" >> include/config.h - @echo "#define CFG_AG7240_NMACS 2" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 14" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_WLAN_2G_LED_BIT 13" >> include/config.h - @echo "#define GPIO_WLAN_2G_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN1_LED_BIT 19" >> include/config.h - @echo "#define GPIO_LAN1_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN2_LED_BIT 20" >> include/config.h - @echo "#define GPIO_LAN2_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN3_LED_BIT 21" >> include/config.h - @echo "#define GPIO_LAN3_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN4_LED_BIT 22" >> include/config.h - @echo "#define GPIO_LAN4_LED_ON 0" >> include/config.h - @echo "#define GPIO_INTERNET_LED_BIT 18" >> include/config.h - @echo "#define GPIO_INTERNET_LED_ON 0" >> include/config.h - @echo "#define GPIO_QSS_LED_BIT 15" >> include/config.h - @echo "#define GPIO_QSS_LED_ON 0" >> include/config.h - @echo "#define GPIO_USB_LED_BIT 11" >> include/config.h - @echo "#define GPIO_USB_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 16" >> include/config.h - @echo "#define GPIO_RST_BUTTON_IS_ACTIVE_LOW 1" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 8" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"DB120 (AR9344) U-Boot for TL-WDR3500\"" >> include/config.h - - @./mkconfig -a db12x mips mips db12x ar7240 ar7240 - -mr3420_v2_config : unconfig wasp_common_config - @echo '======= Configuring for TP-Link TL-MR3420 v2 at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_MR3420_V2 1" >> include/config.h - @echo "#define CONFIG_AP123 1" >> include/config.h - @echo "#define DDR2_32BIT_SUPPORT 1" >> include/config.h - @echo "#define CFG_ATHRS27_PHY 1" >> include/config.h - @echo "#define CFG_AG7240_NMACS 2" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 14" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_WLAN_LED_BIT 13" >> include/config.h - @echo "#define GPIO_WLAN_LED_ON 0" >> include/config.h - @echo "#define GPIO_INTERNET_LED_BIT 18" >> include/config.h - @echo "#define GPIO_INTERNET_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN1_LED_BIT 19" >> include/config.h - @echo "#define GPIO_LAN1_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN2_LED_BIT 20" >> include/config.h - @echo "#define GPIO_LAN2_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN3_LED_BIT 21" >> include/config.h - @echo "#define GPIO_LAN3_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN4_LED_BIT 12" >> include/config.h - @echo "#define GPIO_LAN4_LED_ON 0" >> include/config.h - @echo "#define GPIO_USB_LED_BIT 11" >> include/config.h - @echo "#define GPIO_USB_LED_ON 0" >> include/config.h - @echo "#define GPIO_QSS_LED_BIT 15" >> include/config.h - @echo "#define GPIO_QSS_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 17" >> include/config.h - @echo "#define GPIO_RST_BUTTON_IS_ACTIVE_LOW 1" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 4" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP123 (AR9341) U-Boot for TL-MR3420 v2\"" >> include/config.h - - @./mkconfig -a db12x mips mips db12x ar7240 ar7240 - -wr841n_v8_config : unconfig wasp_common_config - @echo '======= Configuring for TP-Link TL-WR841N/D v8 at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_WR841N_V8 1" >> include/config.h - @echo "#define CONFIG_AP123 1" >> include/config.h - @echo "#define DDR2_32BIT_SUPPORT 1" >> include/config.h - @echo "#define CFG_ATHRS27_PHY 1" >> include/config.h - @echo "#define CFG_AG7240_NMACS 2" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 14" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_WLAN_LED_BIT 13" >> include/config.h - @echo "#define GPIO_WLAN_LED_ON 0" >> include/config.h - @echo "#define GPIO_INTERNET_LED_BIT 18" >> include/config.h - @echo "#define GPIO_INTERNET_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN1_LED_BIT 19" >> include/config.h - @echo "#define GPIO_LAN1_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN2_LED_BIT 20" >> include/config.h - @echo "#define GPIO_LAN2_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN3_LED_BIT 21" >> include/config.h - @echo "#define GPIO_LAN3_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN4_LED_BIT 12" >> include/config.h - @echo "#define GPIO_LAN4_LED_ON 0" >> include/config.h - @echo "#define GPIO_QSS_LED_BIT 15" >> include/config.h - @echo "#define GPIO_QSS_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 17" >> include/config.h - @echo "#define GPIO_RST_BUTTON_IS_ACTIVE_LOW 1" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 4" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP123 (AR9341) U-Boot for TL-WR841N/D v8\"" >> include/config.h - - @./mkconfig -a db12x mips mips db12x ar7240 ar7240 - -wa830re_v2_wa801nd_v2_config : unconfig wasp_common_config - @echo '======= Configuring for TP-Link TL-WA830RE/TL-WA801ND v2 at:' `date` '=======' - @echo "#define CONFIG_FOR_TPLINK_WA830RE_V2_WA801ND_V2 1" >> include/config.h - @echo "#define CONFIG_AP123 1" >> include/config.h - @echo "#define DDR2_32BIT_SUPPORT 1" >> include/config.h - @echo "#define CFG_ATHRS27_PHY 1" >> include/config.h - @echo "#define CFG_AG7240_NMACS 2" >> include/config.h - @echo "#define GPIO_SYS_LED_BIT 14" >> include/config.h - @echo "#define GPIO_SYS_LED_ON 0" >> include/config.h - @echo "#define GPIO_LAN_LED_BIT 18" >> include/config.h - @echo "#define GPIO_LAN_LED_ON 0" >> include/config.h - @echo "#define GPIO_WLAN_LED_BIT 13" >> include/config.h - @echo "#define GPIO_WLAN_LED_ON 0" >> include/config.h - @echo "#define GPIO_QSS_LED_BIT 15" >> include/config.h - @echo "#define GPIO_QSS_LED_ON 0" >> include/config.h - @echo "#define GPIO_RST_BUTTON_BIT 17" >> include/config.h - @echo "#define GPIO_RST_BUTTON_IS_ACTIVE_LOW 1" >> include/config.h - @echo "#define DEFAULT_FLASH_SIZE_IN_MB 4" >> include/config.h - @echo "#define BOARD_CUSTOM_STRING \"AP123 (AR9341) U-Boot for TL-WA830RE/TL-WA801ND v2\"" >> include/config.h - - @./mkconfig -a db12x mips mips db12x ar7240 ar7240 - -######################################################################### -######################################################################### -######################################################################### + @$(call include_add,soc/soc_list.h) + @$(call define_add,CONFIG_BUILD_DATE_UTC,$(shell date -u +"%Y-%m-%d")) + +ar933x_common: unconfig config_common + @$(call define_add,CFG_AG7240_NMACS,2) + @$(call define_add,CFG_ATHRS26_PHY,1) + @$(call define_add,CONFIG_MACH_HORNET,1) + +ar934x_common: unconfig config_common + @$(call define_add,CONFIG_WASP,1) + @$(call define_add,CONFIG_WASP_SUPPORT,1) + +qca953x_common: unconfig config_common + @$(call define_add,CONFIG_ATHEROS,1) + @$(call define_add,CONFIG_MACH_QCA953x,1) + +lsdk_kernel: + @$(call define_add,CONFIG_LSDK_KERNEL,1) + +# ============================= +# TARGETS IN ALPHABETICAL ORDER +# ============================= + +8devices_carambola2: ar933x_common + @$(call config_init,8devices Carambola 2,carambola-v2,16,11,1,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_8DEVICES_CARAMBOLA2,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +alfa-network_ap121f: ar933x_common + @$(call config_init,ALFA NETWORK AP121F,ap121f,16,12,1,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_ALFA_NETWORK_AP121F,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +alfa-network_hornet-ub: ar933x_common + @$(call config_init,ALFA NETWORK Hornet-UB,hornet-ub,8,12,1,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_ALFA_NETWORK_HORNET_UB,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +comfast_cf-e314n: qca953x_common + @$(call config_init,Comfast CF-E314N,cf-e314n,16,17,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_COMFAST_CF_E314N,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +comfast_cf-e320n_v2: qca953x_common + @$(call config_init,Comfast CF-E320N v2,cf-e320n-v2,16,17,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_COMFAST_CF_E320N_V2,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +comfast_cf-e520n: qca953x_common + @$(call config_init,Comfast CF-E520N,cf-e520n,8,17,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_COMFAST_CF_E520N,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +comfast_cf-e530n: qca953x_common + @$(call config_init,Comfast CF-E530N,cf-e530n,8,17,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_COMFAST_CF_E530N,1) + @$(call define_add,CONFIG_USB,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +creatcomm-technology_d3321: ar933x_common + @$(call config_init,CreatComm Technology D3321,d3321,8,12,1,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_CREATCOMM_D3321,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +d-link_dir-505: ar933x_common + @$(call config_init,D-Link DIR-505,dir-505,8,11,1,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_DLINK_DIR505_A1,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +dragino_v2_ms14: ar933x_common + @$(call config_init,Dragino v2 (MS14),dragino-v2,16,11,1,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_DRAGINO_V2,1) + @$(call define_add,WEBFAILSAFE_DISABLE_ART_UPGRADE,1) + @$(call define_add,WEBFAILSAFE_DISABLE_UBOOT_UPGRADE,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +engenius_ens202ext: ar934x_common + @$(call config_init,EnGenius ENS202EXT,ens202ext,16,1,1,QCA_AR9341_SOC) + @$(call define_add,CONFIG_FOR_ENGENIUS_ENS202EXT,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_AG7240_NMACS,2) + @$(MKCONFIG) -a db12x mips mips db12x ar7240 ar7240 + +gainstrong_oolite_v1_dev: ar933x_common + @$(call config_init,Gainstrong Oolite v1 (dev board),oolite-v1,16,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_GS_OOLITE_V1_DEV,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +gl-inet_6416: ar933x_common + @$(call config_init,GL.iNet 6416,glinet-6416,8,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_GL_INET,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +gl-inet_gl-ar150: ar933x_common + @$(call config_init,GL.iNet GL-AR150,gl-ar150,16,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_GL_AR150,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +gl-inet_gl-usb150: ar933x_common + @$(call config_init,GL.iNet GL-USB150,gl-usb150,16,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_GL_USB150,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +p2w_cpe505n: qca953x_common + @$(call config_init,P&W CPE505N,cpe505n,16,17,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_P2W_CPE505N,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +p2w_r602n: qca953x_common + @$(call config_init,P&W R602N,r602n,16,17,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_P2W_R602N,1) + @$(call define_add,CONFIG_USB,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +tp-link_tl-mr10u: ar933x_common lsdk_kernel + @$(call config_init,TP-Link TL-MR10U,tl-mr10u,4,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_MR10U_V1,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +tp-link_tl-mr13u: ar933x_common lsdk_kernel + @$(call config_init,TP-Link TL-MR13U,tl-mr13u,4,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_MR13U_V1,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +tp-link_tl-mr3020: ar933x_common lsdk_kernel + @$(call config_init,TP-Link TL-MR3020,tl-mr3020,4,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_MR3020_V1,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +tp-link_tl-mr3040: ar933x_common lsdk_kernel + @$(call config_init,TP-Link TL-MR3040,tl-mr3040,4,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_MR3040_V1V2,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +tp-link_tl-mr3220_v2: ar933x_common lsdk_kernel + @$(call config_init,TP-Link TL-MR3220 v2,tl-mr3220-v2,4,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_MR3220_V2,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +tp-link_tl-mr3420_v2: ar934x_common lsdk_kernel + @$(call config_init,TP-Link TL-MR3420 v2,tl-mr3420-v2,4,17,1,QCA_AR9341_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_MR3420_V2,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_AG7240_NMACS,2) + @$(MKCONFIG) -a db12x mips mips db12x ar7240 ar7240 + +tp-link_tl-mr3420_v3: qca953x_common lsdk_kernel + @$(call config_init,TP-Link TL-MR3420 v3,tl-mr3420-v3,4,12,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_MR3420_V3,1) + @$(call define_add,CONFIG_USB,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +tp-link_tl-mr6400_v1v2: qca953x_common lsdk_kernel + @$(call config_init,TP-Link TL-MR6400 v1/v2,tl-mr6400-v1v2,8,12,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_MR6400_V1V2,1) + @$(call define_add,CONFIG_USB,1) + @$(call define_add,CONFIG_QCA_ETH_PHY_SWAP,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +tp-link_tl-wa801nd_v2: ar934x_common lsdk_kernel + @$(call config_init,TP-Link TL-WA801ND v2,tl-wa801nd-v2,4,17,1,QCA_AR9341_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WA801ND_V2,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_AG7240_NMACS,2) + @$(MKCONFIG) -a db12x mips mips db12x ar7240 ar7240 + +tp-link_tl-wa830re_v2: ar934x_common lsdk_kernel + @$(call config_init,TP-Link TL-WA830RE v2,tl-wa830re-v2,4,17,1,QCA_AR9341_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WA830RE_V2,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_AG7240_NMACS,2) + @$(MKCONFIG) -a db12x mips mips db12x ar7240 ar7240 + +tp-link_tl-wa850re_v2: qca953x_common lsdk_kernel + @$(call config_init,TP-Link TL-WA850RE v2,tl-wa850re-v2,4,17,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WA850RE_V2,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +tp-link_tl-wdr3500: ar934x_common lsdk_kernel + @$(call config_init,TP-Link TL-WDR3500,tl-wdr3500,8,16,1,QCA_AR9344_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WDR3500_V1,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_AG7240_NMACS,2) + @$(call define_add,CONFIG_PCI,1) + @$(MKCONFIG) -a db12x mips mips db12x ar7240 ar7240 + +tp-link_tl-wdr3600: ar934x_common lsdk_kernel + @$(call config_init,TP-Link TL-WDR3600,tl-wdr3600,8,16,1,QCA_AR9344_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WDR3600_V1,1) + @$(call define_add,CFG_ATHRS17_PHY,1) + @$(call define_add,CFG_AG7240_NMACS,1) + @$(call define_add,CONFIG_PCI,1) + @$(call define_add,CFG_DUAL_PHY_SUPPORT,1) + @$(MKCONFIG) -a db12x mips mips db12x ar7240 ar7240 + +tp-link_tl-wdr43x0: ar934x_common lsdk_kernel + @$(call config_init,TP-Link TL-WDR43x0,tl-wdr43x0,8,16,1,QCA_AR9344_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WDR43X0_V1,1) + @$(call define_add,CFG_ATHRS17_PHY,1) + @$(call define_add,CFG_AG7240_NMACS,1) + @$(call define_add,CONFIG_PCI,1) + @$(call define_add,CFG_DUAL_PHY_SUPPORT,1) + @$(MKCONFIG) -a db12x mips mips db12x ar7240 ar7240 + +tp-link_tl-wr703n: ar933x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR703N,tl-wr703n,4,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR703N_V1,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +tp-link_tl-wr710n: ar933x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR710N,tl-wr710n,8,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR710N_V1,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +tp-link_tl-wr720n_v3_CN: ar933x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR720N v3 CN,tl-wr720n-v3,4,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR720N_V3,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +tp-link_tl-wr740n_v4: ar933x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR74xN/D v4,tl-wr74xnd-v4,4,11,,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR740N_V4,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +tp-link_tl-wr802n: qca953x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR802N,tl-wr802n,4,12,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR802N,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +tp-link_tl-wr810n: qca953x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR810N,tl-wr810n,8,12,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR810N,1) + @$(call define_add,CONFIG_USB,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +tp-link_tl-wr820n_CN: qca953x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR820N CN,tl-wr820n,4,12,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR820N_CN,1) + @$(call define_add,CONFIG_USB,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +tp-link_tl-wr841n_v10: qca953x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR841N/D v10,tl-wr841nd-v10,4,12,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR841N_V10,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +tp-link_tl-wr841n_v11: qca953x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR841N/D v11,tl-wr841nd-v11,4,12,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR841N_V11,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +tp-link_tl-wr841n_v8: ar934x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR841N/D v8,tl-wr841nd-v8,4,17,1,QCA_AR9341_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR841N_V8,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_AG7240_NMACS,2) + @$(MKCONFIG) -a db12x mips mips db12x ar7240 ar7240 + +tp-link_tl-wr841n_v9: qca953x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR841N/D v9,tl-wr841nd-v9,4,12,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR841N_V9,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +tp-link_tl-wr842n_v3: qca953x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR842N/D v3,tl-wr842nd-v3,16,1,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR842N_V3,1) + @$(call define_add,CONFIG_USB,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +tp-link_tl-wr902ac_v1: qca953x_common lsdk_kernel + @$(call config_init,TP-Link TL-WR902AC,tl-wr902ac,8,3,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_TPLINK_WR902AC_V1,1) + @$(call define_add,CONFIG_USB,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(call define_add,CONFIG_PCI,1) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +unwireddevices_unwired-one: ar933x_common + @$(call config_init,Black Swift aka Unwired One,black-swift,16,11,1,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_BLACK_SWIFT_BOARD,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +village-telco_mesh-potato_v2: ar933x_common + @$(call config_init,Village Telco Mesh Potato 2,mesh-potato-v2,16,11,1,QCA_AR933X_SOC) + @$(call define_add,CONFIG_FOR_MESH_POTATO_V2,1) + @$(call define_add,WEBFAILSAFE_DISABLE_ART_UPGRADE,1) + @$(call define_add,WEBFAILSAFE_DISABLE_UBOOT_UPGRADE,1) + @$(MKCONFIG) -a ap121 mips mips ap121 ar7240 ar7240 + +wallys_dr531: qca953x_common + @$(call config_init,Wallys DR531,dr531,8,17,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_WALLYS_DR531,1) + @$(call define_add,CONFIG_USB,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(call define_add,CONFIG_PCI,1) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +yuncore_ap90q: qca953x_common + @$(call config_init,YunCore AP90Q,ap90q,16,17,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_YUNCORE_AP90Q,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +yuncore_cpe830: qca953x_common + @$(call config_init,YunCore CPE830,cpe830,16,17,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_YUNCORE_CPE830,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +yuncore_cpe870: ar934x_common + @$(call config_init,YunCore CPE870,cpe870,8,16,1,QCA_AR9341_SOC) + @$(call define_add,CONFIG_FOR_YUNCORE_CPE870,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_AG7240_NMACS,2) + @$(MKCONFIG) -a db12x mips mips db12x ar7240 ar7240 + +zbtlink_zbt-we1526: qca953x_common + @$(call config_init,Zbtlink ZBT-WE1526,zbt-we1526,16,17,1,QCA_QCA953X_SOC) + @$(call define_add,CONFIG_FOR_ZBTLINK_ZBT_WE1526,1) + @$(call define_add,CONFIG_USB,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + +# ============= +# CLEAN TARGETS +# ============= clean: - @echo Making $@ + @$(call echo_green,Making $@...) @find . -type f \ \( -name 'core' -o -name '*.bak' -o -name '*~' \ -o -name '*.o' -o -name '*.a' -o -name .depend \) -print \ @@ -646,24 +743,20 @@ clean: @rm -f lib_bootstrap/*.a @rm -f bootstrap bootstrap.bin tuboot.bin u-boot.lzimg u-boot.bin.lzma bootstrap.map -clobber: clean - @echo Making $@ +lzma_host_clean: + @$(call echo_green,Removing lzma host utility...) + @$(MAKE) -C $(BUILD_TOPDIR)/host_util/lzma -f makefile.gcc clean + +clobber: clean + @$(call echo_green,Making $@...) @find . -type f \( -name .depend \ -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \ -print0 \ | xargs -0 rm -f - @rm -f $(OBJS) *.bak tags TAGS include/version_autogenerated.h + @rm -f $(OBJS) *.bak include/version_autogenerated.h @rm -fr *.*~ @rm -f u-boot u-boot.map u-boot.hex $(ALL) @rm -f tools/crc32.c tools/environment.c - @rm -f cpu/mpc824x/bedbug_603e.c @rm -f include/asm/proc include/asm/arch include/asm -mrproper \ -distclean: clobber unconfig - -backup: - F=`basename $(TOPDIR)` ; cd .. ; \ - gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F - -######################################################################### +distclean: clobber unconfig