diff --git a/iop/scripts/genconfig.sh b/iop/scripts/genconfig.sh index 77bafafa0..a3556984a 100755 --- a/iop/scripts/genconfig.sh +++ b/iop/scripts/genconfig.sh @@ -16,7 +16,7 @@ function genconfig { brcmbca_feed="target/linux/feeds/brcmbca" airoha_feed="target/linux/feeds/airoha" x86_feed="target/linux/feeds/x86" - armvirt_feed="target/linux/feeds/armvirt" + armsr_feed="target/linux/feeds/armsr" mediatek_feed="target/linux/feeds/mediatek" qualcomm_ipq95xx_feed="target/linux/feeds/ipq95xx" qualcomm_ipq53xx_feed="target/linux/feeds/ipq53xx" @@ -108,8 +108,8 @@ function genconfig { airoha=$(cd $airoha_feed; ./genconfig) [ -e $x86_feed/genconfig ] && x86=$(cd $x86_feed; ./genconfig) - [ -e $armvirt_feed/genconfig ] && - armvirt=$(cd $armvirt_feed; ./genconfig) + [ -e $armsr_feed/genconfig ] && + armsr=$(cd $armsr_feed; ./genconfig) [ -e $mediatek_feed/genconfig ] && mediatek=$(cd $mediatek_feed; ./genconfig) [ -e $qualcomm_ipq95xx_feed/genconfig ] && @@ -118,7 +118,7 @@ function genconfig { ipq53xx=$(cd $qualcomm_ipq53xx_feed; ./genconfig) if [ "$profile" == "LIST" ]; then - for list in brcmbca airoha x86 armvirt mediatek ipq95xx ipq53xx; do + for list in brcmbca airoha x86 armsr mediatek ipq95xx ipq53xx; do echo "$list based boards:" a=$(echo "${!list}" | sort) for b in $a; do @@ -144,10 +144,10 @@ function genconfig { fi done - for p in $armvirt; do + for p in $armsr; do if [ $p == $profile ]; then - target="armvirt" - target_config_path="$armvirt_feed/config" + target="armsr" + target_config_path="$armsr_feed/config" return fi done diff --git a/iop/scripts/genconfig_min.sh b/iop/scripts/genconfig_min.sh index 08e2ef3a7..2de9ee7f1 100644 --- a/iop/scripts/genconfig_min.sh +++ b/iop/scripts/genconfig_min.sh @@ -15,7 +15,7 @@ function genconfig_min { brcmbca_feed="target/linux/feeds/brcmbca" airoha_feed="target/linux/feeds/airoha" x86_feed="target/linux/feeds/x86" - armvirt_feed="target/linux/feeds/armvirt" + armsr_feed="target/linux/feeds/armsr" mediatek_feed="target/linux/feeds/mediatek" qualcomm_ipq95xx_feed="target/linux/feeds/ipq95xx" qualcomm_ipq53xx_feed="target/linux/feeds/ipq53xx" @@ -107,8 +107,8 @@ function genconfig_min { airoha=$(cd $airoha_feed; ./genconfig) [ -e $x86_feed/genconfig ] && x86=$(cd $x86_feed; ./genconfig) - [ -e $armvirt_feed/genconfig ] && - armvirt=$(cd $armvirt_feed; ./genconfig) + [ -e $armsr_feed/genconfig ] && + armsr=$(cd $armsr_feed; ./genconfig) [ -e $mediatek_feed/genconfig ] && mediatek=$(cd $mediatek_feed; ./genconfig) [ -e $qualcomm_ipq95xx_feed/genconfig ] && @@ -117,7 +117,7 @@ function genconfig_min { ipq53xx=$(cd $qualcomm_ipq53xx_feed; ./genconfig) if [ "$profile" == "LIST" ]; then - for list in brcmbca airoha x86 armvirt mediatek ipq95xx ipq53xx; do + for list in brcmbca airoha x86 armsr mediatek ipq95xx ipq53xx; do echo "$list based boards:" a=$(echo "${!list}" | sort) for b in $a; do @@ -143,10 +143,10 @@ function genconfig_min { fi done - for p in $armvirt; do + for p in $armsr; do if [ $p == $profile ]; then - target="armvirt" - target_config_path="$armvirt_feed/config" + target="armsr" + target_config_path="$armsr_feed/config" return fi done