diff options
author | Robert Marko <robimarko@gmail.com> | 2023-11-14 14:51:14 +0100 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-11-15 11:01:56 +0100 |
commit | 17feb04ad4d06460a6d33a13e65dfdd2fdebaada (patch) | |
tree | 19bf104bc3af52da09a9eb27bc1bba4d08540e44 /package/kernel | |
parent | e3a0476d1bdcbf5692e97135d3e653b4cdd84cda (diff) | |
download | openwrt-17feb04ad4d06460a6d33a13e65dfdd2fdebaada.tar.gz openwrt-17feb04ad4d06460a6d33a13e65dfdd2fdebaada.tar.bz2 openwrt-17feb04ad4d06460a6d33a13e65dfdd2fdebaada.zip |
qca-ssdk: disable building ISISC
ISISC is the QCA codename for their Atheros switch family including
AR237, QCA8337 etc.
Since we have qca8k support in OpenWrt, there is no need to have SSDK
support for these switches, and boards that also have external switches
can just use qca8k.
Disable QCA803x PHY support as well, since all of those are supportable
via at803x driver.
Signed-off-by: Robert Marko <robimarko@gmail.com>
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/qca-ssdk/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/kernel/qca-ssdk/Makefile b/package/kernel/qca-ssdk/Makefile index 3770d29e8c..d8c8d6cb16 100644 --- a/package/kernel/qca-ssdk/Makefile +++ b/package/kernel/qca-ssdk/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=qca-ssdk -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE_URL:=https://git.codelinaro.org/clo/qsdk/oss/lklm/qca-ssdk.git PKG_SOURCE_PROTO:=git @@ -45,6 +45,7 @@ MAKE_FLAGS+= \ EXTRA_CFLAGS=-fno-stack-protector -I$(STAGING_DIR)/usr/include \ SoC=$(CONFIG_TARGET_SUBTARGET) \ PTP_FEATURE=disable SWCONFIG_FEATURE=disable \ + ISISC_ENABLE=disable IN_QCA803X_PHY=FALSE \ $(LNX_CONFIG_OPTS) ifeq ($(CONFIG_TARGET_SUBTARGET), "ipq807x") |