diff options
author | CoolStar <coolstarorganization@gmail.com> | 2024-04-11 21:23:25 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-04-15 13:31:53 +0000 |
commit | 35130a8e1facf3389dd2adb8266876a7aa7571cd (patch) | |
tree | 5d7f0b5fc113b1b4d292e2fe3003f8c4956fd153 /src/soc/amd | |
parent | 127392599975c1aa5cdf3d18e5bd3e4de9a7db6b (diff) |
soc/amd/picasso: Mark eMMC as non-removable for Windows 10/11 install
Mark eMMC as non-removable to allow Windows 10/11 to install now that
edk2 can boot from it.
Change-Id: If0e14106521f99cb97d1bf421f4d82d1234c2f15
Signed-off-by: CoolStar <coolstarorganization@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81858
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <ericllai@google.com>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/picasso/acpi/mmio.asl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/soc/amd/picasso/acpi/mmio.asl b/src/soc/amd/picasso/acpi/mmio.asl index 8adc87d6d0..d8bbf06aec 100644 --- a/src/soc/amd/picasso/acpi/mmio.asl +++ b/src/soc/amd/picasso/acpi/mmio.asl @@ -92,6 +92,15 @@ Device (MMC0) { Return (STAT) } + + Device (CARD) + { + Name (_ADR, 0x00000008) + Method (_RMV, 0, NotSerialized) + { + Return (0) + } + } } Device (FUR0) |