Skip to content

Commit

Permalink
Expanded MAC address support from 4 to 8 of menu.
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterSuh-Q3 authored Dec 17, 2024
1 parent a523d48 commit 501f7c7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion menu_m.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2370,7 +2370,15 @@ while true; do
[ $(ifconfig | grep eth2 | wc -l) -gt 0 ] && NEXT="g" || NEXT="p" ;;
g) macMenu "eth2"
[ $(ifconfig | grep eth3 | wc -l) -gt 0 ] && NEXT="h" || NEXT="p" ;;
h) macMenu "eth3"; NEXT="p" ;;
h) macMenu "eth3"
[ $(ifconfig | grep eth4 | wc -l) -gt 0 ] && NEXT="i" || NEXT="p" ;;
i) macMenu "eth4"
[ $(ifconfig | grep eth5 | wc -l) -gt 0 ] && NEXT="o" || NEXT="p" ;;
o) macMenu "eth5"
[ $(ifconfig | grep eth6 | wc -l) -gt 0 ] && NEXT="t" || NEXT="p" ;;
t) macMenu "eth6"
[ $(ifconfig | grep eth7 | wc -l) -gt 0 ] && NEXT="v" || NEXT="p" ;;
v) macMenu "eth7"; NEXT="p" ;;
z) selectldrmode ; NEXT="p" ;;
k) remapsata ; NEXT="p" ;;
q) storagepanel; NEXT="p" ;;
Expand Down

0 comments on commit 501f7c7

Please sign in to comment.