mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
iop: Remove iopsys- prefix from targets
This commit is contained in:
parent
2b88d9775a
commit
c708007d0b
8 changed files with 43 additions and 44 deletions
|
|
@ -23,7 +23,7 @@ define Package/ethmngr
|
||||||
SECTION:=utils
|
SECTION:=utils
|
||||||
CATEGORY:=Utilities
|
CATEGORY:=Utilities
|
||||||
TITLE:=Ethernet status and configration utility
|
TITLE:=Ethernet status and configration utility
|
||||||
DEPENDS:=+(TARGET_brcmbca||TARGET_airoha||TARGET_ipq95xx||TARGET_iopsys_mediatek):libethernet +libuci +libubox +ubus +libpthread +libnl-genl
|
DEPENDS:=+(TARGET_brcmbca||TARGET_airoha||TARGET_ipq95xx||TARGET_mediatek):libethernet +libuci +libubox +ubus +libpthread +libnl-genl
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/ethmngr/description
|
define Package/ethmngr/description
|
||||||
|
|
@ -37,7 +37,7 @@ TARGET_CFLAGS += \
|
||||||
-I$(STAGING_DIR)/usr/include/libnl3 \
|
-I$(STAGING_DIR)/usr/include/libnl3 \
|
||||||
-D_GNU_SOURCE
|
-D_GNU_SOURCE
|
||||||
|
|
||||||
ifeq ($(CONFIG_TARGET_brcmbca)$(CONFIG_TARGET_airoha)$(CONFIG_TARGET_ipq95xx)$(CONFIG_TARGET_iopsys_mediatek),)
|
ifeq ($(CONFIG_TARGET_brcmbca)$(CONFIG_TARGET_airoha)$(CONFIG_TARGET_ipq95xx)$(CONFIG_TARGET_mediatek),)
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
@ -49,7 +49,7 @@ ifneq ($(CONFIG_TARGET_brcmbca),)
|
||||||
else
|
else
|
||||||
$(CP) ./files/linux/* $(1)/
|
$(CP) ./files/linux/* $(1)/
|
||||||
endif
|
endif
|
||||||
ifneq ($(CONFIG_TARGET_brcmbca)$(CONFIG_TARGET_airoha)$(CONFIG_TARGET_ipq95xx)$(CONFIG_TARGET_iopsys_mediatek),)
|
ifneq ($(CONFIG_TARGET_brcmbca)$(CONFIG_TARGET_airoha)$(CONFIG_TARGET_ipq95xx)$(CONFIG_TARGET_mediatek),)
|
||||||
$(INSTALL_DIR) $(1)/usr/sbin
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ethmngr $(1)/usr/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ethmngr $(1)/usr/sbin/
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
|
|
@ -38,8 +38,7 @@ function feeds_update {
|
||||||
|
|
||||||
# targets need to be installed explicitly
|
# targets need to be installed explicitly
|
||||||
for target in $(ls ./feeds/targets); do
|
for target in $(ls ./feeds/targets); do
|
||||||
rm -f target/linux/$target
|
./scripts/feeds install -f -p targets $target
|
||||||
./scripts/feeds install -p targets $target
|
|
||||||
done
|
done
|
||||||
|
|
||||||
# install all packages
|
# install all packages
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,9 @@ function genconfig {
|
||||||
target_config_path=""
|
target_config_path=""
|
||||||
brcmbca_feed="target/linux/feeds/brcmbca"
|
brcmbca_feed="target/linux/feeds/brcmbca"
|
||||||
airoha_feed="target/linux/feeds/airoha"
|
airoha_feed="target/linux/feeds/airoha"
|
||||||
x86_feed="target/linux/feeds/iopsys-x86"
|
x86_feed="target/linux/feeds/x86"
|
||||||
armvirt_feed="target/linux/feeds/iopsys-armvirt"
|
armvirt_feed="target/linux/feeds/armvirt"
|
||||||
mediatek_feed="target/linux/feeds/iopsys-mediatek"
|
mediatek_feed="target/linux/feeds/mediatek"
|
||||||
qualcomm_ipq95xx_feed="target/linux/feeds/ipq95xx"
|
qualcomm_ipq95xx_feed="target/linux/feeds/ipq95xx"
|
||||||
|
|
||||||
Red='\033[0;31m' # Red
|
Red='\033[0;31m' # Red
|
||||||
|
|
@ -113,16 +113,16 @@ function genconfig {
|
||||||
[ -e $airoha_feed/genconfig ] &&
|
[ -e $airoha_feed/genconfig ] &&
|
||||||
airoha=$(cd $airoha_feed; ./genconfig)
|
airoha=$(cd $airoha_feed; ./genconfig)
|
||||||
[ -e $x86_feed/genconfig ] &&
|
[ -e $x86_feed/genconfig ] &&
|
||||||
iopsys_x86=$(cd $x86_feed; ./genconfig)
|
x86=$(cd $x86_feed; ./genconfig)
|
||||||
[ -e $armvirt_feed/genconfig ] &&
|
[ -e $armvirt_feed/genconfig ] &&
|
||||||
iopsys_armvirt=$(cd $armvirt_feed; ./genconfig)
|
armvirt=$(cd $armvirt_feed; ./genconfig)
|
||||||
[ -e $mediatek_feed/genconfig ] &&
|
[ -e $mediatek_feed/genconfig ] &&
|
||||||
iopsys_mediatek=$(cd $mediatek_feed; ./genconfig)
|
mediatek=$(cd $mediatek_feed; ./genconfig)
|
||||||
[ -e $qualcomm_ipq95xx_feed/genconfig ] &&
|
[ -e $qualcomm_ipq95xx_feed/genconfig ] &&
|
||||||
ipq95xx=$(cd $qualcomm_ipq95xx_feed; ./genconfig)
|
ipq95xx=$(cd $qualcomm_ipq95xx_feed; ./genconfig)
|
||||||
|
|
||||||
if [ "$profile" == "LIST" ]; then
|
if [ "$profile" == "LIST" ]; then
|
||||||
for list in brcmbca airoha iopsys_x86 iopsys_armvirt iopsys_mediatek ipq95xx; do
|
for list in brcmbca airoha x86 armvirt mediatek ipq95xx; do
|
||||||
echo "$list based boards:"
|
echo "$list based boards:"
|
||||||
for b in ${!list}; do
|
for b in ${!list}; do
|
||||||
echo -e "\t$b"
|
echo -e "\t$b"
|
||||||
|
|
@ -147,25 +147,25 @@ function genconfig {
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
for p in $iopsys_x86; do
|
for p in $x86; do
|
||||||
if [ $p == $profile ]; then
|
if [ $p == $profile ]; then
|
||||||
target="iopsys_x86"
|
target="x86"
|
||||||
target_config_path="$x86_feed/config"
|
target_config_path="$x86_feed/config"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
for p in $iopsys_armvirt; do
|
for p in $armvirt; do
|
||||||
if [ $p == $profile ]; then
|
if [ $p == $profile ]; then
|
||||||
target="iopsys_armvirt"
|
target="armvirt"
|
||||||
target_config_path="$armvirt_feed/config"
|
target_config_path="$armvirt_feed/config"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
for p in $iopsys_mediatek; do
|
for p in $mediatek; do
|
||||||
if [ $p == $profile ]; then
|
if [ $p == $profile ]; then
|
||||||
target="iopsys_mediatek"
|
target="mediatek"
|
||||||
target_config_path="$mediatek_feed/config"
|
target_config_path="$mediatek_feed/config"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
@ -360,7 +360,7 @@ function genconfig {
|
||||||
|
|
||||||
# Special handling for targets which use TARGET_DEVICES
|
# Special handling for targets which use TARGET_DEVICES
|
||||||
case "$target" in
|
case "$target" in
|
||||||
airoha | iopsys_mediatek | brcmbca | ipq95xx)
|
airoha | mediatek | brcmbca | ipq95xx)
|
||||||
# This assumes the device name to be unique within one target,
|
# This assumes the device name to be unique within one target,
|
||||||
# which is a fair assumption to make.
|
# which is a fair assumption to make.
|
||||||
local subtarget="$(get_subtarget_for_device "${target/_/-}" "$BOARDTYPE")"
|
local subtarget="$(get_subtarget_for_device "${target/_/-}" "$BOARDTYPE")"
|
||||||
|
|
|
||||||
|
|
@ -14,9 +14,9 @@ function genconfig_min {
|
||||||
target_config_path=""
|
target_config_path=""
|
||||||
brcmbca_feed="target/linux/feeds/brcmbca"
|
brcmbca_feed="target/linux/feeds/brcmbca"
|
||||||
airoha_feed="target/linux/feeds/airoha"
|
airoha_feed="target/linux/feeds/airoha"
|
||||||
x86_feed="target/linux/feeds/iopsys-x86"
|
x86_feed="target/linux/feeds/x86"
|
||||||
armvirt_feed="target/linux/feeds/iopsys-armvirt"
|
armvirt_feed="target/linux/feeds/armvirt"
|
||||||
mediatek_feed="target/linux/feeds/iopsys-mediatek"
|
mediatek_feed="target/linux/feeds/mediatek"
|
||||||
qualcomm_ipq95xx_feed="target/linux/feeds/ipq95xx"
|
qualcomm_ipq95xx_feed="target/linux/feeds/ipq95xx"
|
||||||
|
|
||||||
Red='\033[0;31m' # Red
|
Red='\033[0;31m' # Red
|
||||||
|
|
@ -112,16 +112,16 @@ function genconfig_min {
|
||||||
[ -e $airoha_feed/genconfig ] &&
|
[ -e $airoha_feed/genconfig ] &&
|
||||||
airoha=$(cd $airoha_feed; ./genconfig)
|
airoha=$(cd $airoha_feed; ./genconfig)
|
||||||
[ -e $x86_feed/genconfig ] &&
|
[ -e $x86_feed/genconfig ] &&
|
||||||
iopsys_x86=$(cd $x86_feed; ./genconfig)
|
x86=$(cd $x86_feed; ./genconfig)
|
||||||
[ -e $armvirt_feed/genconfig ] &&
|
[ -e $armvirt_feed/genconfig ] &&
|
||||||
iopsys_armvirt=$(cd $armvirt_feed; ./genconfig)
|
armvirt=$(cd $armvirt_feed; ./genconfig)
|
||||||
[ -e $mediatek_feed/genconfig ] &&
|
[ -e $mediatek_feed/genconfig ] &&
|
||||||
iopsys_mediatek=$(cd $mediatek_feed; ./genconfig)
|
mediatek=$(cd $mediatek_feed; ./genconfig)
|
||||||
[ -e $qualcomm_ipq95xx_feed/genconfig ] &&
|
[ -e $qualcomm_ipq95xx_feed/genconfig ] &&
|
||||||
ipq95xx=$(cd $qualcomm_ipq95xx_feed; ./genconfig)
|
ipq95xx=$(cd $qualcomm_ipq95xx_feed; ./genconfig)
|
||||||
|
|
||||||
if [ "$profile" == "LIST" ]; then
|
if [ "$profile" == "LIST" ]; then
|
||||||
for list in brcmbca airoha iopsys_x86 iopsys_armvirt iopsys_mediatek ipq95xx; do
|
for list in brcmbca airoha x86 armvirt mediatek ipq95xx; do
|
||||||
echo "$list based boards:"
|
echo "$list based boards:"
|
||||||
for b in ${!list}; do
|
for b in ${!list}; do
|
||||||
echo -e "\t$b"
|
echo -e "\t$b"
|
||||||
|
|
@ -146,25 +146,25 @@ function genconfig_min {
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
for p in $iopsys_x86; do
|
for p in $x86; do
|
||||||
if [ $p == $profile ]; then
|
if [ $p == $profile ]; then
|
||||||
target="iopsys_x86"
|
target="x86"
|
||||||
target_config_path="$x86_feed/config"
|
target_config_path="$x86_feed/config"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
for p in $iopsys_armvirt; do
|
for p in $armvirt; do
|
||||||
if [ $p == $profile ]; then
|
if [ $p == $profile ]; then
|
||||||
target="iopsys_armvirt"
|
target="armvirt"
|
||||||
target_config_path="$armvirt_feed/config"
|
target_config_path="$armvirt_feed/config"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
for p in $iopsys_mediatek; do
|
for p in $mediatek; do
|
||||||
if [ $p == $profile ]; then
|
if [ $p == $profile ]; then
|
||||||
target="iopsys_mediatek"
|
target="mediatek"
|
||||||
target_config_path="$mediatek_feed/config"
|
target_config_path="$mediatek_feed/config"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
@ -334,7 +334,7 @@ function genconfig_min {
|
||||||
|
|
||||||
# Special handling for targets which use TARGET_DEVICES
|
# Special handling for targets which use TARGET_DEVICES
|
||||||
case "$target" in
|
case "$target" in
|
||||||
airoha | iopsys_mediatek | brcmbca | ipq95xx)
|
airoha | mediatek | brcmbca | ipq95xx)
|
||||||
# This assumes the device name to be unique within one target,
|
# This assumes the device name to be unique within one target,
|
||||||
# which is a fair assumption to make.
|
# which is a fair assumption to make.
|
||||||
local subtarget="$(get_subtarget_for_device "${target/_/-}" "$BOARDTYPE")"
|
local subtarget="$(get_subtarget_for_device "${target/_/-}" "$BOARDTYPE")"
|
||||||
|
|
|
||||||
|
|
@ -28,10 +28,10 @@ ifeq ($(CONFIG_TARGET_brcmbca),y)
|
||||||
TARGET_CFLAGS +=-DIOPSYS_BROADCOM -DCHIP_$(CHIP_ID) -DCONFIG_BCM9$(CHIP_ID) \
|
TARGET_CFLAGS +=-DIOPSYS_BROADCOM -DCHIP_$(CHIP_ID) -DCONFIG_BCM9$(CHIP_ID) \
|
||||||
-I$(STAGING_DIR)/usr/include/bcm963xx/bcmdrivers/opensource/include/bcm963xx \
|
-I$(STAGING_DIR)/usr/include/bcm963xx/bcmdrivers/opensource/include/bcm963xx \
|
||||||
-I$(STAGING_DIR)/usr/include/bcm963xx/userspace/public/include
|
-I$(STAGING_DIR)/usr/include/bcm963xx/userspace/public/include
|
||||||
else ifeq ($(CONFIG_TARGET_iopsys_x86),y)
|
else ifeq ($(CONFIG_TARGET_x86),y)
|
||||||
TARGET_PLATFORM=TEST
|
TARGET_PLATFORM=TEST
|
||||||
TARGET_CFLAGS +=-DIOPSYS_TEST
|
TARGET_CFLAGS +=-DIOPSYS_TEST
|
||||||
else ifeq ($(CONFIG_TARGET_iopsys_armvirt),y)
|
else ifeq ($(CONFIG_TARGET_armvirt),y)
|
||||||
TARGET_PLATFORM=TEST
|
TARGET_PLATFORM=TEST
|
||||||
TARGET_CFLAGS +=-DIOPSYS_TEST
|
TARGET_CFLAGS +=-DIOPSYS_TEST
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
|
|
@ -30,10 +30,10 @@ ifeq ($(CONFIG_TARGET_brcmbca),y)
|
||||||
-I$(STAGING_DIR)/usr/include/bcm963xx/shared/opensource/include/bcm963xx \
|
-I$(STAGING_DIR)/usr/include/bcm963xx/shared/opensource/include/bcm963xx \
|
||||||
-I$(STAGING_DIR)/usr/include/bcm963xx/bcmdrivers/opensource/include/bcm963xx \
|
-I$(STAGING_DIR)/usr/include/bcm963xx/bcmdrivers/opensource/include/bcm963xx \
|
||||||
-I$(STAGING_DIR)/usr/include/bcm963xx/userspace/public/include
|
-I$(STAGING_DIR)/usr/include/bcm963xx/userspace/public/include
|
||||||
else ifeq ($(CONFIG_TARGET_iopsys_x86),y)
|
else ifeq ($(CONFIG_TARGET_x86),y)
|
||||||
TARGET_PLATFORM=TEST
|
TARGET_PLATFORM=TEST
|
||||||
TARGET_CFLAGS +=-DIOPSYS_TEST
|
TARGET_CFLAGS +=-DIOPSYS_TEST
|
||||||
else ifeq ($(CONFIG_TARGET_iopsys_armvirt),y)
|
else ifeq ($(CONFIG_TARGET_armvirt),y)
|
||||||
TARGET_PLATFORM=TEST
|
TARGET_PLATFORM=TEST
|
||||||
TARGET_CFLAGS +=-DIOPSYS_TEST
|
TARGET_CFLAGS +=-DIOPSYS_TEST
|
||||||
else ifeq ($(CONFIG_TARGET_airoha),y)
|
else ifeq ($(CONFIG_TARGET_airoha),y)
|
||||||
|
|
@ -42,7 +42,7 @@ else ifeq ($(CONFIG_TARGET_airoha),y)
|
||||||
else ifeq ($(CONFIG_TARGET_ipq95xx),y)
|
else ifeq ($(CONFIG_TARGET_ipq95xx),y)
|
||||||
TARGET_PLATFORM=IPQ95XX
|
TARGET_PLATFORM=IPQ95XX
|
||||||
TARGET_CFLAGS +=-DIPQ95XX
|
TARGET_CFLAGS +=-DIPQ95XX
|
||||||
else ifeq ($(CONFIG_TARGET_iopsys_mediatek),y)
|
else ifeq ($(CONFIG_TARGET_mediatek),y)
|
||||||
TARGET_PLATFORM=LINUX
|
TARGET_PLATFORM=LINUX
|
||||||
TARGET_CFLAGS +=-DIOPSYS_LINUX
|
TARGET_CFLAGS +=-DIOPSYS_LINUX
|
||||||
else
|
else
|
||||||
|
|
|
||||||
|
|
@ -29,10 +29,10 @@ ifeq ($(CONFIG_TARGET_brcmbca),y)
|
||||||
TARGET_CFLAGS +=-DIOPSYS_BROADCOM -DCHIP_$(CHIP_ID) -DCONFIG_BCM9$(CHIP_ID) \
|
TARGET_CFLAGS +=-DIOPSYS_BROADCOM -DCHIP_$(CHIP_ID) -DCONFIG_BCM9$(CHIP_ID) \
|
||||||
-I$(STAGING_DIR)/usr/include/bcm963xx/bcmdrivers/opensource/include/bcm963xx \
|
-I$(STAGING_DIR)/usr/include/bcm963xx/bcmdrivers/opensource/include/bcm963xx \
|
||||||
-I$(STAGING_DIR)/usr/include/bcm963xx/userspace/public/include
|
-I$(STAGING_DIR)/usr/include/bcm963xx/userspace/public/include
|
||||||
else ifeq ($(CONFIG_TARGET_iopsys_x86),y)
|
else ifeq ($(CONFIG_TARGET_x86),y)
|
||||||
TARGET_PLATFORM=TEST
|
TARGET_PLATFORM=TEST
|
||||||
TARGET_CFLAGS +=-DIOPSYS_TEST
|
TARGET_CFLAGS +=-DIOPSYS_TEST
|
||||||
else ifeq ($(CONFIG_TARGET_iopsys_armvirt),y)
|
else ifeq ($(CONFIG_TARGET_armvirt),y)
|
||||||
TARGET_PLATFORM=TEST
|
TARGET_PLATFORM=TEST
|
||||||
TARGET_CFLAGS +=-DIOPSYS_TEST
|
TARGET_CFLAGS +=-DIOPSYS_TEST
|
||||||
else ifeq ($(CONFIG_TARGET_airoha),y)
|
else ifeq ($(CONFIG_TARGET_airoha),y)
|
||||||
|
|
@ -41,7 +41,7 @@ else ifeq ($(CONFIG_TARGET_airoha),y)
|
||||||
else ifeq ($(CONFIG_TARGET_ipq95xx),y)
|
else ifeq ($(CONFIG_TARGET_ipq95xx),y)
|
||||||
TARGET_PLATFORM=IPQ95XX
|
TARGET_PLATFORM=IPQ95XX
|
||||||
TARGET_CFLAGS +=-DIPQ95XX
|
TARGET_CFLAGS +=-DIPQ95XX
|
||||||
else ifeq ($(CONFIG_TARGET_iopsys_mediatek),y)
|
else ifeq ($(CONFIG_TARGET_mediatek),y)
|
||||||
TARGET_PLATFORM=LINUX
|
TARGET_PLATFORM=LINUX
|
||||||
TARGET_CFLAGS +=-DIOPSYS_LINUX
|
TARGET_CFLAGS +=-DIOPSYS_LINUX
|
||||||
else
|
else
|
||||||
|
|
|
||||||
|
|
@ -30,11 +30,11 @@ ifeq ($(CONFIG_TARGET_brcmbca),y)
|
||||||
TARGET_CFLAGS +=-DIOPSYS_BROADCOM -DCHIP_$(CHIP_ID) -DCONFIG_BCM9$(CHIP_ID) \
|
TARGET_CFLAGS +=-DIOPSYS_BROADCOM -DCHIP_$(CHIP_ID) -DCONFIG_BCM9$(CHIP_ID) \
|
||||||
-I$(STAGING_DIR)/usr/include/bcm963xx/bcmdrivers/opensource/include/bcm963xx \
|
-I$(STAGING_DIR)/usr/include/bcm963xx/bcmdrivers/opensource/include/bcm963xx \
|
||||||
-I$(STAGING_DIR)/usr/include/bcm963xx/userspace/public/include
|
-I$(STAGING_DIR)/usr/include/bcm963xx/userspace/public/include
|
||||||
else ifeq ($(CONFIG_TARGET_iopsys_x86),y)
|
else ifeq ($(CONFIG_TARGET_x86),y)
|
||||||
TARGET_PLATFORM=TEST
|
TARGET_PLATFORM=TEST
|
||||||
TARGET_WIFI_TYPE=TEST
|
TARGET_WIFI_TYPE=TEST
|
||||||
TARGET_CFLAGS +=-DIOPSYS_TEST
|
TARGET_CFLAGS +=-DIOPSYS_TEST
|
||||||
else ifeq ($(CONFIG_TARGET_iopsys_armvirt),y)
|
else ifeq ($(CONFIG_TARGET_armvirt),y)
|
||||||
TARGET_PLATFORM=TEST
|
TARGET_PLATFORM=TEST
|
||||||
TARGET_WIFI_TYPE=TEST
|
TARGET_WIFI_TYPE=TEST
|
||||||
TARGET_CFLAGS +=-DIOPSYS_TEST
|
TARGET_CFLAGS +=-DIOPSYS_TEST
|
||||||
|
|
@ -46,7 +46,7 @@ else ifeq ($(CONFIG_TARGET_ipq95xx),y)
|
||||||
TARGET_PLATFORM=IPQ95XX
|
TARGET_PLATFORM=IPQ95XX
|
||||||
TARGET_WIFI_TYPE=MAC80211
|
TARGET_WIFI_TYPE=MAC80211
|
||||||
TARGET_CFLAGS +=-DIPQ95XX
|
TARGET_CFLAGS +=-DIPQ95XX
|
||||||
else ifeq ($(CONFIG_TARGET_iopsys_mediatek),y)
|
else ifeq ($(CONFIG_TARGET_mediatek),y)
|
||||||
TARGET_PLATFORM=LINUX
|
TARGET_PLATFORM=LINUX
|
||||||
TARGET_WIFI_TYPE=MAC80211
|
TARGET_WIFI_TYPE=MAC80211
|
||||||
TARGET_CFLAGS +=-DIOPSYS_LINUX
|
TARGET_CFLAGS +=-DIOPSYS_LINUX
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue