diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-08 17:20:01 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-08 17:20:01 +0000 |
commit | f720de03be1647e484820e14cdf3cacb3085dbec (patch) | |
tree | 0080fa06c2c315f7024d59df093374feafbd4667 /target/linux/brcm63xx-2.6/files/arch/mips/bcm963xx/Makefile | |
parent | 5e9852b169f255fa1094d08f470553035edf447a (diff) |
Major cleanup :
- no more Broadcom kerSys* code
- working runtime boot loader detection
- updated flash map driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6896 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx-2.6/files/arch/mips/bcm963xx/Makefile')
-rw-r--r-- | target/linux/brcm63xx-2.6/files/arch/mips/bcm963xx/Makefile | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/target/linux/brcm63xx-2.6/files/arch/mips/bcm963xx/Makefile b/target/linux/brcm63xx-2.6/files/arch/mips/bcm963xx/Makefile index cf524fa64a..aa3654ae50 100644 --- a/target/linux/brcm63xx-2.6/files/arch/mips/bcm963xx/Makefile +++ b/target/linux/brcm63xx-2.6/files/arch/mips/bcm963xx/Makefile @@ -1,23 +1,9 @@ # -# Makefile for generic Broadcom MIPS boards +# Makefile for the Broadcom BCM963xx SoC specific parts of the kernel # # Copyright (C) 2004 Broadcom Corporation # -obj-y := irq.o prom.o setup.o time.o ser_init.o bcm63xx_led.o board.o boardparms.o int-handler.o +obj-y := irq.o prom.o setup.o time.o ser_init.o int-handler.o info.o SRCBASE := $(TOPDIR) EXTRA_CFLAGS += -I$(SRCBASE)/include -#EXTRA_CFLAGS += -I$(INC_ADSLDRV_PATH) -DDBG -EXTRA_CFLAGS += -I$(INC_ADSLDRV_PATH) - - -ifeq "$(ADSL)" "ANNEX_B" -EXTRA_CFLAGS += -DADSL_ANNEXB -endif -ifeq "$(ADSL)" "SADSL" -EXTRA_CFLAGS += -DADSL_SADSL -endif -ifeq "$(ADSL)" "ANNEX_C" -EXTRA_CFLAGS += -DADSL_ANNEXC -endif - |