1## SPDX-License-Identifier: GPL-2.0-only 2 3if PC80_SYSTEM 4 5# Might be removed (alongside with the PS/2 init code) once payloads 6# reliably support PS/2 init themselves. 7 8config DRIVERS_PS2_KEYBOARD 9 bool "PS/2 keyboard init" 10 default n 11 help 12 Enable this option to initialize PS/2 keyboards found connected 13 to the PS/2 port. 14 15 Some payloads (eg, filo) require this option. Other payloads 16 (eg, GRUB 2, SeaBIOS, Linux) do not require it. 17 Initializing a PS/2 keyboard can take several hundred milliseconds. 18 19 If you know you will only use a payload which does not require 20 this option, then you can say N here to speed up boot time. 21 Otherwise say Y. 22 23endif 24 25config PS2K_EISAID 26 string 27 default "PNP0303" 28 help 29 Mainboards can override the default to match vendor drivers and quirks. 30 31config PS2M_EISAID 32 string 33 default "PNP0F13" 34 help 35 Mainboards can override the default to match vendor drivers and quirks. 36