diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-09-07 12:54:24 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-09-07 12:54:24 +0000 |
commit | e3dc76af1b7ed7ccae6f1246c9cfd0cce60ced3e (patch) | |
tree | daefc20255761d3bd296306358aff73b23d9005a /package/switch | |
parent | 77fb42c9cb51447edbb4b682b406ed809e076064 (diff) | |
download | upstream-e3dc76af1b7ed7ccae6f1246c9cfd0cce60ced3e.tar.gz upstream-e3dc76af1b7ed7ccae6f1246c9cfd0cce60ced3e.tar.bz2 upstream-e3dc76af1b7ed7ccae6f1246c9cfd0cce60ced3e.zip |
fix board name for nvram and switch packages on brcm-2.4 after [8653]
SVN-Revision: 8664
Diffstat (limited to 'package/switch')
-rw-r--r-- | package/switch/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/switch/Makefile b/package/switch/Makefile index b7c6dc8362..cdf1f51293 100644 --- a/package/switch/Makefile +++ b/package/switch/Makefile @@ -34,12 +34,12 @@ define Build/Prepare $(CP) ./src/* $(PKG_BUILD_DIR)/ endef -ifeq ($(BOARD),brcm) -BUILDFLAGS := -DBROADCOM -DBCMDRIVER -I$(LINUX_DIR)/arch/mips/bcm947xx/include +ifeq ($(BOARD),brcm-2.4) + BUILDFLAGS := -DBROADCOM -DBCMDRIVER -I$(LINUX_DIR)/arch/mips/bcm947xx/include else -ifeq ($(BOARD),brcm47xx) -BUILDFLAGS := -DBROADCOM -endif + ifeq ($(BOARD),brcm47xx) + BUILDFLAGS := -DBROADCOM + endif endif |