diff options
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/config_usb.c | 8 | ||||
-rw-r--r-- | src/config/settings.h | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/config/config_usb.c b/src/config/config_usb.c index b679aeb27..10dec221a 100644 --- a/src/config/config_usb.c +++ b/src/config/config_usb.c @@ -22,6 +22,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <config/usb.h> +#include <config/settings.h> /** @file * @@ -63,3 +64,10 @@ REQUIRE_OBJECT ( usbblk ); #ifdef USB_EFI REQUIRE_OBJECT ( efi_usb ); #endif + +/* + * Drag in USB settings mechanism + */ +#ifdef USB_SETTINGS +REQUIRE_OBJECT ( usb_settings ); +#endif diff --git a/src/config/settings.h b/src/config/settings.h index d7f787d38..7b4af4fdf 100644 --- a/src/config/settings.h +++ b/src/config/settings.h @@ -12,6 +12,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <config/defaults.h> #define PCI_SETTINGS /* PCI device settings */ +#define USB_SETTINGS /* USB device settings */ //#define CPUID_SETTINGS /* CPUID settings */ //#define MEMMAP_SETTINGS /* Memory map settings */ //#define VMWARE_SETTINGS /* VMware GuestInfo settings */ |