mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00

[mac80211] ca5ee6e mac80211: Fix potential endless loop 2c14710 mac80211: add more AQL fixes/improvements 91fb3ce mac80211: remove an obsolete patch that is no longer doing anything useful acf1733 mac80211: add preliminary support for enabling 802.11ax in config d717343 mac80211: update encap offload patches to the latest version 673062f mac80211: allow bigger A-MSDU sizes in VHT, even if HT is limited caf7277 mac80211: do not allow bigger VHT MPDUs than the hardware supports cd36c0d mac80211: select the first available channel for 5GHz interfaces 1c6d456 mac80211: fix regression in station connection monitor optimization 4bd7689 mac80211: update sta connection monitor regression fix [target] Sync: at91, ath25, ath79, lantiq, mediatek, mvebu.
89 lines
2.3 KiB
Makefile
89 lines
2.3 KiB
Makefile
|
|
PKG_TARGETS := bin
|
|
PKG_FLAGS:=nonshared
|
|
|
|
export GCC_HONOUR_COPTS=s
|
|
|
|
define Package/at91bootstrap/install/default
|
|
$(CP) -avL $(PKG_BUILD_DIR)/binaries/at91bootstrap.bin $(1)/
|
|
endef
|
|
|
|
Package/at91bootstrap/install = $(Package/at91bootstrap/install/default)
|
|
|
|
define AT91Bootstrap/Init
|
|
BUILD_TARGET:=
|
|
BUILD_SUBTARGET:=
|
|
BUILD_DEVICES:=
|
|
NAME:=
|
|
DEPENDS:=
|
|
HIDDEN:=
|
|
DEFAULT:=
|
|
VARIANT:=$(1)
|
|
AT91BOOTSTRAP_CONFIG:=$(1)
|
|
endef
|
|
|
|
TARGET_DEP = TARGET_$(BUILD_TARGET)$(if $(BUILD_SUBTARGET),_$(BUILD_SUBTARGET))
|
|
|
|
AT91BOOTSTRAP_MAKE_FLAGS = \
|
|
HOSTCC="$(HOSTCC)" \
|
|
HOSTCFLAGS="$(HOST_CFLAGS) $(HOST_CPPFLAGS)" \
|
|
HOSTLDFLAGS=""
|
|
|
|
define Build/AT91Bootstrap/Target
|
|
$(eval $(call AT91Bootstrap/Init,$(1)))
|
|
$(eval $(call AT91Bootstrap/Default,$(1)))
|
|
$(eval $(call AT91Bootstrap/$(1),$(1)))
|
|
|
|
define Package/at91bootstrap-$(1)
|
|
SECTION:=boot
|
|
CATEGORY:=Boot Loaders
|
|
TITLE:= .$(NAME)
|
|
VARIANT:=$(VARIANT)
|
|
DEPENDS:=@!IN_SDK $(DEPENDS)
|
|
HIDDEN:=$(HIDDEN)
|
|
ifneq ($(BUILD_TARGET),)
|
|
DEPENDS += @$(TARGET_DEP)
|
|
ifneq ($(BUILD_DEVICES),)
|
|
DEFAULT := y if ($(TARGET_DEP)_Default \
|
|
$(patsubst %,|| $(TARGET_DEP)_DEVICE_%,$(BUILD_DEVICES)) \
|
|
$(patsubst %,|| $(patsubst TARGET_%,TARGET_DEVICE_%, \
|
|
$(TARGET_DEP))_DEVICE_%,$(BUILD_DEVICES)))
|
|
endif
|
|
endif
|
|
$(if $(DEFAULT),DEFAULT:=$(DEFAULT))
|
|
URL:=https://www.at91.com/linux4sam/bin/view/Linux4SAM/AT91Bootstrap
|
|
endef
|
|
|
|
define Package/at91bootstrap-$(1)/install
|
|
$$(Package/at91bootstrap/install)
|
|
endef
|
|
endef
|
|
|
|
define Build/Configure/AT91Bootstrap
|
|
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
|
$(AT91BOOTSTRAP_CONFIG)_defconfig
|
|
endef
|
|
|
|
|
|
define Build/Compile/AT91Bootstrap
|
|
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
|
CROSS_COMPILE=$(TARGET_CROSS) \
|
|
$(AT91BOOTSTRAP_MAKE_FLAGS)
|
|
endef
|
|
|
|
define BuildPackage/AT91Bootstrap/Defaults
|
|
Build/Configure/Default = $$$$(Build/Configure/AT91Bootstrap)
|
|
Build/Compile/Default = $$$$(Build/Compile/AT91Bootstrap)
|
|
endef
|
|
|
|
define BuildPackage/AT91Bootstrap
|
|
$(eval $(call BuildPackage/AT91Bootstrap/Defaults))
|
|
$(foreach type,$(if $(DUMP),$(AT91BOOTSTRAP_TARGETS),$(BUILD_VARIANT)), \
|
|
$(eval $(call Build/AT91Bootstrap/Target,$(type)))
|
|
)
|
|
$(eval $(call Build/DefaultTargets))
|
|
$(foreach type,$(if $(DUMP),$(AT91BOOTSTRAP_TARGETS),$(BUILD_VARIANT)), \
|
|
$(call BuildPackage,at91bootstrap-$(type))
|
|
)
|
|
endef
|