diff --git a/iop/scripts/genconfig.sh b/iop/scripts/genconfig.sh index 4e01441a3..5df1f9580 100755 --- a/iop/scripts/genconfig.sh +++ b/iop/scripts/genconfig.sh @@ -14,7 +14,6 @@ function genconfig { target="bogus" target_config_path="" brcmbca_feed="target/linux/feeds/brcmbca" - ramips_feed="target/linux/feeds/iopsys-ramips" airoha_feed="target/linux/feeds/airoha" x86_feed="target/linux/feeds/iopsys-x86" armvirt_feed="target/linux/feeds/iopsys-armvirt" @@ -111,8 +110,6 @@ function genconfig { [ -e $brcmbca_feed/genconfig ] && brcmbca=$(cd $brcmbca_feed; ./genconfig) - [ -e $ramips_feed/genconfig ] && - iopsys_ramips=$(cd $ramips_feed; ./genconfig) [ -e $airoha_feed/genconfig ] && airoha=$(cd $airoha_feed; ./genconfig) [ -e $x86_feed/genconfig ] && @@ -125,7 +122,7 @@ function genconfig { ipq95xx=$(cd $qualcomm_ipq95xx_feed; ./genconfig) if [ "$profile" == "LIST" ]; then - for list in brcmbca iopsys_ramips airoha iopsys_x86 iopsys_armvirt iopsys_mediatek ipq95xx; do + for list in brcmbca airoha iopsys_x86 iopsys_armvirt iopsys_mediatek ipq95xx; do echo "$list based boards:" for b in ${!list}; do echo -e "\t$b" @@ -142,14 +139,6 @@ function genconfig { fi done - for p in $iopsys_ramips; do - if [ $p == $profile ]; then - target="iopsys_ramips" - target_config_path="$ramips_feed/config" - return - fi - done - for p in $airoha; do if [ $p == $profile ]; then target="airoha" @@ -353,7 +342,7 @@ function genconfig { # Special handling for targets which use TARGET_DEVICES case "$target" in - iopsys_ramips | airoha | iopsys_mediatek | brcmbca | ipq95xx) + airoha | iopsys_mediatek | brcmbca | ipq95xx) # This assumes the device name to be unique within one target, # which is a fair assumption to make. local mk_file="$(grep -Fx --files-with-matches "define Device/${BOARDTYPE}" "$target_config_path/../image/"*.mk)" diff --git a/iop/scripts/genconfig_min.sh b/iop/scripts/genconfig_min.sh index 639b94eff..d46219603 100644 --- a/iop/scripts/genconfig_min.sh +++ b/iop/scripts/genconfig_min.sh @@ -13,7 +13,6 @@ function genconfig_min { target="bogus" target_config_path="" brcmbca_feed="target/linux/feeds/brcmbca" - ramips_feed="target/linux/feeds/iopsys-ramips" airoha_feed="target/linux/feeds/airoha" x86_feed="target/linux/feeds/iopsys-x86" armvirt_feed="target/linux/feeds/iopsys-armvirt" @@ -110,8 +109,6 @@ function genconfig_min { [ -e $brcmbca_feed/genconfig ] && brcmbca=$(cd $brcmbca_feed; ./genconfig) - [ -e $ramips_feed/genconfig ] && - iopsys_ramips=$(cd $ramips_feed; ./genconfig) [ -e $airoha_feed/genconfig ] && airoha=$(cd $airoha_feed; ./genconfig) [ -e $x86_feed/genconfig ] && @@ -124,7 +121,7 @@ function genconfig_min { ipq95xx=$(cd $qualcomm_ipq95xx_feed; ./genconfig) if [ "$profile" == "LIST" ]; then - for list in brcmbca iopsys_ramips airoha iopsys_x86 iopsys_armvirt iopsys_mediatek ipq95xx; do + for list in brcmbca airoha iopsys_x86 iopsys_armvirt iopsys_mediatek ipq95xx; do echo "$list based boards:" for b in ${!list}; do echo -e "\t$b" @@ -141,14 +138,6 @@ function genconfig_min { fi done - for p in $iopsys_ramips; do - if [ $p == $profile ]; then - target="iopsys_ramips" - target_config_path="$ramips_feed/config" - return - fi - done - for p in $airoha; do if [ $p == $profile ]; then target="airoha" @@ -327,7 +316,7 @@ function genconfig_min { # Special handling for targets which use TARGET_DEVICES case "$target" in - iopsys_ramips | airoha | iopsys_mediatek | brcmbca | ipq95xx) + airoha | iopsys_mediatek | brcmbca | ipq95xx) # This assumes the device name to be unique within one target, # which is a fair assumption to make. local mk_file="$(grep -Fx --files-with-matches "define Device/${BOARDTYPE}" "$target_config_path/../image/"*.mk)"