aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/profiles
Commit message (Expand)AuthorAgeFilesLines
* [brcm63xx] remove kmod-spi-bitbangFlorian Fainelli2012-09-262-2/+2
* [brcm63xx] Add brcmsmac profileFlorian Fainelli2012-07-271-0/+17
* bcm63xx: add ath9k to atheros wifi profileJonas Gorski2012-05-271-1/+1
* targets: replace madwifi in profiles with ath5k, madwifi is unmaintainedFelix Fietkau2012-03-191-1/+1
* [brcm63xx] profiles: GW6X00: fixed inclusion of both wl and wlc wireless tool...Daniel Dickinson2011-07-061-1/+1
* [brcm63xx] Profiles: GW6X00: Replace ext2 module with ext4 as ext2 and 3 are ...Daniel Dickinson2010-12-081-2/+2
* [brcm63xx] Profiles: Make buttons and led modules included by default so that...Daniel Dickinson2010-12-081-3/+1
* [brcm63xx] Profiles: Move wpad-mini to the profiles that use it, rather than ...Daniel Dickinson2010-12-084-4/+4
* [brcm63xx] remove wpa-supplicant and iw from the Tecom GW6x00 profileFlorian Fainelli2010-09-131-1/+1
* [brcm63xx] change the Tecom GW6x00 profile to use wl instead of b43Florian Fainelli2010-09-121-2/+3
* [brcm63xx] reorder profilesJo-Philipp Wich2010-07-264-0/+0
* [brcm63xx] add a wifi profile for proprietary wlJo-Philipp Wich2010-07-011-0/+19
* brcm63xx: Tecom GW6x00 profile: Added hotplug button events and gpio-leds kmodsDaniel Dickinson2010-05-301-1/+1
* [brcm63xx] add infrastructure to register gpio-input reset buttonFlorian Fainelli2009-09-061-1/+1
* [brcm63xx] add a profile with no Wi-Fi drivers enabled, useful for bcm6338Florian Fainelli2009-07-061-0/+17
* [brcm63xx] include wpa-supplicant iw in the default profileFlorian Fainelli2009-05-291-1/+2
* [brcm63xx] also include the SPI driver in the gw6x00 profileFlorian Fainelli2009-05-261-1/+1
* [brcm63xx] include kmod-usb-storage and kmod-ipt-nathelper-extra for SIP conn...Florian Fainelli2009-05-261-2/+3
* [brcm63xx] add the Tecom GW6x00 (6000 and 6200) board profileFlorian Fainelli2009-05-251-0/+20
* Reorder profiles numbering, broadcom being the most widely usedFlorian Fainelli2008-11-283-0/+0
* Update brcm63xx broadcom profile now that b43 is availableFlorian Fainelli2008-11-201-1/+1
* Fix reference to the old and replaced kmod-rt61Florian Fainelli2008-09-271-1/+1
* strip the kernel version suffix from target directories, except for brcm-2.4 ...Felix Fietkau2007-09-063-0/+47
icense v2. # See /LICENSE for more information. # PKG_DEFAULT_DEPENDS = +libc +USE_EGLIBC:librt +USE_EGLIBC:libpthread ifneq ($(PKG_NAME),toolchain) PKG_FIXUP_DEPENDS = $(if $(filter kmod-%,$(1)),$(2),$(PKG_DEFAULT_DEPENDS) $(filter-out $(PKG_DEFAULT_DEPENDS),$(2))) else PKG_FIXUP_DEPENDS = $(2) endif define Package/Default CONFIGFILE:= SECTION:=opt CATEGORY:=Extra packages DEPENDS:= MDEPENDS:= CONFLICTS:= PROVIDES:= EXTRA_DEPENDS:= MAINTAINER:=$(PKG_MAINTAINER) SOURCE:=$(patsubst $(TOPDIR)/%,%,$(CURDIR)) ifneq ($(PKG_VERSION),) ifneq ($(PKG_RELEASE),) VERSION:=$(PKG_VERSION)-$(PKG_RELEASE) else VERSION:=$(PKG_VERSION) endif else VERSION:=$(PKG_RELEASE) endif ABI_VERSION:= ifneq ($(PKG_FLAGS),) PKGFLAGS:=$(PKG_FLAGS) else PKGFLAGS:= endif ifneq ($(ARCH_PACKAGES),) PKGARCH:=$(ARCH_PACKAGES) else PKGARCH:=$(BOARD) endif DEFAULT:= MENU:= SUBMENU:= SUBMENUDEP:= TITLE:= KCONFIG:= BUILDONLY:= HIDDEN:= URL:= VARIANT:= DEFAULT_VARIANT:= USERID:= endef Build/Patch:=$(Build/Patch/Default) ifneq ($(strip $(PKG_UNPACK)),) define Build/Prepare/Default $(PKG_UNPACK) $(Build/Patch) endef endif EXTRA_CXXFLAGS = $(EXTRA_CFLAGS) DISABLE_NLS:=--disable-nls CONFIGURE_PREFIX:=/usr CONFIGURE_ARGS = \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ --program-prefix="" \ --program-suffix="" \ --prefix=$(CONFIGURE_PREFIX) \ --exec-prefix=$(CONFIGURE_PREFIX) \ --bindir=$(CONFIGURE_PREFIX)/bin \ --sbindir=$(CONFIGURE_PREFIX)/sbin \ --libexecdir=$(CONFIGURE_PREFIX)/lib \ --sysconfdir=/etc \ --datadir=$(CONFIGURE_PREFIX)/share \ --localstatedir=/var \ --mandir=$(CONFIGURE_PREFIX)/man \ --infodir=$(CONFIGURE_PREFIX)/info \ $(DISABLE_NLS) \ $(DISABLE_LARGEFILE) \ $(DISABLE_IPV6) CONFIGURE_VARS = \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CFLAGS)" \ CXXFLAGS="$(TARGET_CXXFLAGS) $(EXTRA_CFLAGS)" \ CPPFLAGS="$(TARGET_CPPFLAGS) $(EXTRA_CPPFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS) $(EXTRA_LDFLAGS)" \ CONFIGURE_PATH = . CONFIGURE_CMD = ./configure replace_script=$(FIND) $(1) -name $(2) | $(XARGS) chmod u+w; \ $(FIND) $(1) -name $(2) | $(XARGS) -n1 cp --remove-destination \ $(SCRIPT_DIR)/$(2); define Build/Configure/Default (cd $(PKG_BUILD_DIR)/$(CONFIGURE_PATH)/$(strip $(3)); \ if [ -x $(CONFIGURE_CMD) ]; then \ $(call replace_script,$(PKG_BUILD_DIR)/$(3),config.guess) \ $(call replace_script,$(PKG_BUILD_DIR)/$(3),config.sub) \ $(CONFIGURE_VARS) \ $(2) \ $(CONFIGURE_CMD) \ $(CONFIGURE_ARGS) \ $(1); \ fi; \ ) endef MAKE_VARS = \ CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CFLAGS) $(TARGET_CPPFLAGS) $(EXTRA_CPPFLAGS)" \ CXXFLAGS="$(TARGET_CXXFLAGS) $(EXTRA_CXXFLAGS) $(TARGET_CPPFLAGS) $(EXTRA_CPPFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS) $(EXTRA_LDFLAGS)" MAKE_FLAGS = \ $(TARGET_CONFIGURE_OPTS) \ CROSS="$(TARGET_CROSS)" \ ARCH="$(ARCH)" MAKE_INSTALL_FLAGS = \ $(MAKE_FLAGS) \ DESTDIR="$(PKG_INSTALL_DIR)" MAKE_PATH = . define Build/Compile/Default +$(MAKE_VARS) \ $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)/$(MAKE_PATH) \ $(MAKE_FLAGS) \ $(1); endef define Build/Install/Default $(MAKE_VARS) \ $(MAKE) -C $(PKG_BUILD_DIR)/$(MAKE_PATH) \ $(MAKE_INSTALL_FLAGS) \ $(if $(1), $(1), install); endef define Build/Dist/Default $(call Build/Compile/Default, DESTDIR="$(PKG_BUILD_DIR)/tmp" CC="$(TARGET_CC)" dist) endef define Build/DistCheck/Default $(call Build/Compile/Default, DESTDIR="$(PKG_BUILD_DIR)/tmp" CC="$(TARGET_CC)" distcheck) endef