Kconfig (d0034a7a4ac7fae708146ac0059b9c47a1543f0d) | Kconfig (68f5d3f3b6543266b29e047cfaf9842333019b4c) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2 3menu "UML Character Devices" 4 5config STDERR_CONSOLE 6 bool "stderr console" 7 default y 8 help --- 343 unchanged lines hidden (view full) --- 352 depends on RTC_CLASS 353 # there's no use in this if PM_SLEEP isn't enabled ... 354 depends on PM_SLEEP 355 help 356 When PM_SLEEP is configured, it may be desirable to wake up using 357 rtcwake, especially in time-travel mode. This driver enables that 358 by providing a fake RTC clock that causes a wakeup at the right 359 time. | 1# SPDX-License-Identifier: GPL-2.0 2 3menu "UML Character Devices" 4 5config STDERR_CONSOLE 6 bool "stderr console" 7 default y 8 help --- 343 unchanged lines hidden (view full) --- 352 depends on RTC_CLASS 353 # there's no use in this if PM_SLEEP isn't enabled ... 354 depends on PM_SLEEP 355 help 356 When PM_SLEEP is configured, it may be desirable to wake up using 357 rtcwake, especially in time-travel mode. This driver enables that 358 by providing a fake RTC clock that causes a wakeup at the right 359 time. |
360 361config UML_PCI_OVER_VIRTIO 362 bool "Enable PCI over VIRTIO device simulation" 363 # in theory, just VIRTIO is enough, but that causes recursion 364 depends on VIRTIO_UML 365 select FORCE_PCI 366 select UML_IOMEM_EMULATION 367 select UML_DMA_EMULATION 368 select PCI_MSI 369 select PCI_MSI_IRQ_DOMAIN 370 select PCI_LOCKLESS_CONFIG 371 372config UML_PCI_OVER_VIRTIO_DEVICE_ID 373 int "set the virtio device ID for PCI emulation" 374 default -1 375 depends on UML_PCI_OVER_VIRTIO 376 help 377 There's no official device ID assigned (yet), set the one you 378 wish to use for experimentation here. The default of -1 is 379 not valid and will cause the driver to fail at probe. |
|