diff options
author | Leif Lindholm <leif.lindholm@linaro.org> | 2015-11-25 17:24:29 +0000 |
---|---|---|
committer | Leif Lindholm <leif.lindholm@linaro.org> | 2016-02-24 10:35:51 +0000 |
commit | 50e8d3936c485af18fe1e946b814d4466517d34a (patch) | |
tree | ab3608650d4078542f5fe347f3486bf27af54f4f | |
parent | e0692789058ee2c0099f88852503c16dbb0bae4e (diff) | |
download | edk2-50e8d3936c485af18fe1e946b814d4466517d34a.tar.gz edk2-50e8d3936c485af18fe1e946b814d4466517d34a.tar.bz2 edk2-50e8d3936c485af18fe1e946b814d4466517d34a.zip |
ArmPlatformPkg/IntelBds: call BdsLibConnectAll()
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>
Tested-by: Ryan Harkin <ryan.harkin@linaro.org>
Reviewed-by: Ryan Harkin <ryan.harkin@linaro.org>
Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
-rw-r--r-- | ArmPlatformPkg/Library/PlatformIntelBdsLib/IntelBdsPlatform.c | 7 |
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 ();
}
/**
|