mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-01-27 17:37:18 +01:00
genconfig: rename iopsys-brcm63xx-arm -> brcmbca
This commit is contained in:
parent
d2111b2bad
commit
b979bf4891
2 changed files with 16 additions and 16 deletions
|
|
@ -13,7 +13,7 @@ function genconfig {
|
||||||
export DEVELOPER=0
|
export DEVELOPER=0
|
||||||
target="bogus"
|
target="bogus"
|
||||||
target_config_path=""
|
target_config_path=""
|
||||||
brcm63xx_arm_feed="target/linux/feeds/iopsys-brcm63xx-arm"
|
brcmbca_feed="target/linux/feeds/brcmbca"
|
||||||
ramips_feed="target/linux/feeds/iopsys-ramips"
|
ramips_feed="target/linux/feeds/iopsys-ramips"
|
||||||
airoha_feed="target/linux/feeds/airoha"
|
airoha_feed="target/linux/feeds/airoha"
|
||||||
x86_feed="target/linux/feeds/iopsys-x86"
|
x86_feed="target/linux/feeds/iopsys-x86"
|
||||||
|
|
@ -109,8 +109,8 @@ function genconfig {
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[ -e $brcm63xx_arm_feed/genconfig ] &&
|
[ -e $brcmbca_feed/genconfig ] &&
|
||||||
iopsys_brcm63xx_arm=$(cd $brcm63xx_arm_feed; ./genconfig)
|
brcmbca=$(cd $brcmbca_feed; ./genconfig)
|
||||||
[ -e $ramips_feed/genconfig ] &&
|
[ -e $ramips_feed/genconfig ] &&
|
||||||
iopsys_ramips=$(cd $ramips_feed; ./genconfig)
|
iopsys_ramips=$(cd $ramips_feed; ./genconfig)
|
||||||
[ -e $airoha_feed/genconfig ] &&
|
[ -e $airoha_feed/genconfig ] &&
|
||||||
|
|
@ -125,7 +125,7 @@ function genconfig {
|
||||||
ipq95xx=$(cd $qualcomm_ipq95xx_feed; ./genconfig)
|
ipq95xx=$(cd $qualcomm_ipq95xx_feed; ./genconfig)
|
||||||
|
|
||||||
if [ "$profile" == "LIST" ]; then
|
if [ "$profile" == "LIST" ]; then
|
||||||
for list in iopsys_brcm63xx_arm iopsys_ramips airoha iopsys_x86 iopsys_armvirt iopsys_mediatek ipq95xx; do
|
for list in brcmbca iopsys_ramips airoha iopsys_x86 iopsys_armvirt iopsys_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"
|
||||||
|
|
@ -134,10 +134,10 @@ function genconfig {
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for p in $iopsys_brcm63xx_arm; do
|
for p in $brcmbca; do
|
||||||
if [ $p == $profile ]; then
|
if [ $p == $profile ]; then
|
||||||
target="iopsys_brcm63xx_arm"
|
target="brcmbca"
|
||||||
target_config_path="$brcm63xx_arm_feed/config"
|
target_config_path="$brcmbca_feed/config"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
@ -342,7 +342,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
|
||||||
iopsys_ramips | airoha | iopsys_mediatek | iopsys_brcm63xx_arm)
|
iopsys_ramips | airoha | iopsys_mediatek | brcmbca)
|
||||||
# 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 mk_file="$(grep -Fx --files-with-matches "define Device/${BOARDTYPE}" "$target_config_path/../image/"*.mk)"
|
local mk_file="$(grep -Fx --files-with-matches "define Device/${BOARDTYPE}" "$target_config_path/../image/"*.mk)"
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ function genconfig_min {
|
||||||
export DEVELOPER=0
|
export DEVELOPER=0
|
||||||
target="bogus"
|
target="bogus"
|
||||||
target_config_path=""
|
target_config_path=""
|
||||||
brcm63xx_arm_feed="target/linux/feeds/iopsys-brcm63xx-arm"
|
brcmbca_feed="target/linux/feeds/brcmbca"
|
||||||
ramips_feed="target/linux/feeds/iopsys-ramips"
|
ramips_feed="target/linux/feeds/iopsys-ramips"
|
||||||
airoha_feed="target/linux/feeds/airoha"
|
airoha_feed="target/linux/feeds/airoha"
|
||||||
x86_feed="target/linux/feeds/iopsys-x86"
|
x86_feed="target/linux/feeds/iopsys-x86"
|
||||||
|
|
@ -108,8 +108,8 @@ function genconfig_min {
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[ -e $brcm63xx_arm_feed/genconfig ] &&
|
[ -e $brcmbca_feed/genconfig ] &&
|
||||||
iopsys_brcm63xx_arm=$(cd $brcm63xx_arm_feed; ./genconfig)
|
brcmbca=$(cd $brcmbca_feed; ./genconfig)
|
||||||
[ -e $ramips_feed/genconfig ] &&
|
[ -e $ramips_feed/genconfig ] &&
|
||||||
iopsys_ramips=$(cd $ramips_feed; ./genconfig)
|
iopsys_ramips=$(cd $ramips_feed; ./genconfig)
|
||||||
[ -e $airoha_feed/genconfig ] &&
|
[ -e $airoha_feed/genconfig ] &&
|
||||||
|
|
@ -124,7 +124,7 @@ function genconfig_min {
|
||||||
ipq95xx=$(cd $qualcomm_ipq95xx_feed; ./genconfig)
|
ipq95xx=$(cd $qualcomm_ipq95xx_feed; ./genconfig)
|
||||||
|
|
||||||
if [ "$profile" == "LIST" ]; then
|
if [ "$profile" == "LIST" ]; then
|
||||||
for list in iopsys_brcm63xx_arm iopsys_ramips airoha iopsys_x86 iopsys_armvirt iopsys_mediatek ipq95xx; do
|
for list in brcmbca iopsys_ramips airoha iopsys_x86 iopsys_armvirt iopsys_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"
|
||||||
|
|
@ -133,10 +133,10 @@ function genconfig_min {
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for p in $iopsys_brcm63xx_arm; do
|
for p in $brcmbca; do
|
||||||
if [ $p == $profile ]; then
|
if [ $p == $profile ]; then
|
||||||
target="iopsys_brcm63xx_arm"
|
target="brcmbca"
|
||||||
target_config_path="$brcm63xx_arm_feed/config"
|
target_config_path="$brcmbca_feed/config"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
@ -333,7 +333,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
|
||||||
iopsys_ramips | airoha | iopsys_mediatek | iopsys_brcm63xx_arm)
|
iopsys_ramips | airoha | iopsys_mediatek | brcmbca)
|
||||||
# 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 mk_file="$(grep -Fx --files-with-matches "define Device/${BOARDTYPE}" "$target_config_path/../image/"*.mk)"
|
local mk_file="$(grep -Fx --files-with-matches "define Device/${BOARDTYPE}" "$target_config_path/../image/"*.mk)"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue