mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
iop: genconfig: display boards sorted
This commit is contained in:
parent
910c8e61e2
commit
653cd5bb97
2 changed files with 4 additions and 2 deletions
|
|
@ -120,7 +120,8 @@ function genconfig {
|
||||||
if [ "$profile" == "LIST" ]; then
|
if [ "$profile" == "LIST" ]; then
|
||||||
for list in brcmbca airoha x86 armvirt mediatek ipq95xx ipq53xx; do
|
for list in brcmbca airoha x86 armvirt mediatek ipq95xx ipq53xx; do
|
||||||
echo "$list based boards:"
|
echo "$list based boards:"
|
||||||
for b in ${!list}; do
|
a=$(echo "${!list}" | sort)
|
||||||
|
for b in $a; do
|
||||||
echo -e "\t$b"
|
echo -e "\t$b"
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,8 @@ function genconfig_min {
|
||||||
if [ "$profile" == "LIST" ]; then
|
if [ "$profile" == "LIST" ]; then
|
||||||
for list in brcmbca airoha x86 armvirt mediatek ipq95xx ipq53xx; do
|
for list in brcmbca airoha x86 armvirt mediatek ipq95xx ipq53xx; do
|
||||||
echo "$list based boards:"
|
echo "$list based boards:"
|
||||||
for b in ${!list}; do
|
a=$(echo "${!list}" | sort)
|
||||||
|
for b in $a; do
|
||||||
echo -e "\t$b"
|
echo -e "\t$b"
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue