aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Kconfig7
-rw-r--r--src/boot.c9
2 files changed, 16 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig
index 55a87cb..b3645b3 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -72,6 +72,13 @@ endchoice
help
Support controlling of the boot order via the fw_cfg/CBFS
"bootorder" file.
+ config BOOTDEVICES
+ depends on BOOT
+ bool "Boot device information"
+ default y
+ help
+ Support boot device information via the fw_cfg/CBFS
+ "bootdevices" file.
config COREBOOT_FLASH
depends on COREBOOT
diff --git a/src/boot.c b/src/boot.c
index 9248fab..e89b923 100644
--- a/src/boot.c
+++ b/src/boot.c
@@ -95,6 +95,9 @@ static int BootDeviceCount;
static void
loadBootDevices(void)
{
+ if (!CONFIG_BOOTDEVICES)
+ return;
+
BootDeviceCount = 0;
int fsize;
char *f = romfile_loadfile("bootdevices", &fsize);
@@ -172,6 +175,8 @@ bootdevice_find(const char *glob)
static BootDevice *
bootdevice_find_pci_device(struct pci_device *pci)
{
+ if (!CONFIG_BOOTDEVICES)
+ return NULL;
// Find pci device - for example: /pci@i0cf8/ethernet@5
char desc[256];
build_pci_path(desc, sizeof(desc), "*", pci);
@@ -181,6 +186,8 @@ bootdevice_find_pci_device(struct pci_device *pci)
static BootDevice *
bootdevice_find_scsi_device(struct pci_device *pci, int target, int lun)
{
+ if (!CONFIG_BOOTDEVICES)
+ return NULL;
if (!pci)
// support only pci machine for now
return NULL;
@@ -194,6 +201,8 @@ bootdevice_find_scsi_device(struct pci_device *pci, int target, int lun)
static BootDevice *
bootdevice_find_ata_device(struct pci_device *pci, int chanid, int slave)
{
+ if (!CONFIG_BOOTDEVICES)
+ return NULL;
if (!pci)
// support only pci machine for now
return NULL;