consolidate configurations

This commit is contained in:
viktorxda
2025-08-05 17:26:57 +02:00
parent e05c0261be
commit 76c9c5a689
43 changed files with 1 additions and 17089 deletions

View File

@@ -83,7 +83,7 @@ copy_to_tftp() {
}
select_device() {
AVAILABLE_DEVICES=$(find common devices -name *_defconfig | sort | cut -d/ -f5)
AVAILABLE_DEVICES=$(find devices -name *_defconfig | sort | cut -d/ -f5)
cmd="whiptail --title \"Available devices\" --menu \"Please select a device from the list below:\" 20 70 12"
for p in ${AVAILABLE_DEVICES//_defconfig}; do cmd="${cmd} \"$p\" \"\""; done
DEVICE=$(eval "${cmd} 3>&1 1>&2 2>&3")