diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-09-07 12:54:24 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-09-07 12:54:24 +0000 |
commit | d275f1aba06f50c81579c890b6d187ced69d59ee (patch) | |
tree | 27e7426b91d37b02380bf122b34cb11c173316a3 /package/switch/Makefile | |
parent | c80b7f575e6738b8f98093f2d908c416ae4ce31f (diff) |
fix board name for nvram and switch packages on brcm-2.4 after [8653]
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8664 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/switch/Makefile')
-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 b7c6dc836..cdf1f5129 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 |