You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ventoy/KBD/mkconfig.sh

31 lines
545 B
Bash

#!/bin/sh
#
# Configfiles are from grubfilemanager project
#
cfgfile=../INSTALL/grub/keyboard.cfg
rm -f ${cfgfile}.gz
echo "submenu \"Keyboard Layouts\" --class=debug_krdlayout {" >>$cfgfile
cat >>$cfgfile << EOF
menuentry QWERTY_USA --class=debug_kbd {
setkey -r
setkey -d
}
EOF
ls -1 cfg | while read line; do
kbd=${line%.cfg}
name=${kbd#KBD_}
echo "menuentry $name --class=debug_kbd {" >> $cfgfile
grep '^setkey' cfg/$line >>$cfgfile
echo "}" >> $cfgfile
done
echo "}" >>$cfgfile
gzip $cfgfile