Hello, This is my first patch, so please don't throw stones to me :) "config USB_DISK" should somehow depend on libpayload's "config USB" at least, but I don't know how to hardcode it, so I make USB disk to be disabled, since USB is disabled by default. It would be great if you could suggest how to link that dependency.
Trivial fix. If we are using default config we don't have USB enabled in libpayload's config.
Signed-off-by: Tadas Slotkus <[email protected]> Index: Config.in =================================================================== --- Config.in (revision 143) +++ Config.in (working copy) @@ -131,9 +131,10 @@ config USB_DISK bool "USB Stack" - default y + default n help Driver for USB Storage + NOTE: USB in libpayload's config must be enabled manually config FLASH_DISK bool "NAND Flash support"
-- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

