mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-24 17:44:17 +01:00
10 lines
241 B
Plaintext
10 lines
241 B
Plaintext
|
# When a USB keyboard arrives, attach it as the console keyboard.
|
||
|
attach 100 {
|
||
|
device-name "ukbd0";
|
||
|
action "service syscons setkeyboard /dev/ukbd0";
|
||
|
};
|
||
|
detach 100 {
|
||
|
device-name "ukbd0";
|
||
|
action "service syscons setkeyboard /dev/kbd0";
|
||
|
};
|