summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeif Lindholm <leif.lindholm@linaro.org>2015-11-25 17:24:29 +0000
committerLeif Lindholm <leif.lindholm@linaro.org>2015-11-25 17:24:29 +0000
commitbfbd0ef1a182e1baa120f66ad2c6838ef48ff48c (patch)
treee6e01a8b3118bc0b475fa5a13c4c7b1983ac4a52
parent1f9566471e6f46ccaf2e0c6a9d5865b75c55d0a3 (diff)
ArmPlatformPkg/IntelBds: call BdsLibConnectAll()linaro-edk2-2015.11
Currently, we don't pick up removable media (USB drives) or storage devices connected via plug-in cards. Take the sledge hammer approach for now. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
-rw-r--r--ArmPlatformPkg/Library/PlatformIntelBdsLib/IntelBdsPlatform.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/ArmPlatformPkg/Library/PlatformIntelBdsLib/IntelBdsPlatform.c b/ArmPlatformPkg/Library/PlatformIntelBdsLib/IntelBdsPlatform.c
index e27e6d66df..ceb4f076e2 100644
--- a/ArmPlatformPkg/Library/PlatformIntelBdsLib/IntelBdsPlatform.c
+++ b/ArmPlatformPkg/Library/PlatformIntelBdsLib/IntelBdsPlatform.c
@@ -352,6 +352,13 @@ PlatformBdsPolicyBehavior (
// Show the splash screen.
//
EnableQuietBoot (PcdGetPtr (PcdLogoFile));
+
+ //
+ // Connect _all_ devices, to pick up plug-in and removable devices
+ // TODO: do this more cleanly, permitting faster boot times when boot config
+ // is known
+ //
+ BdsLibConnectAll ();
}
/**