aboutsummaryrefslogtreecommitdiff
path: root/pc-bios/bios-pq/0015_enable-power-button-even-generation.patch
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2009-09-04 10:13:29 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2009-09-04 10:13:29 -0500
commitc34ebfdc8715f03d53e154758423c902324fee06 (patch)
treeba773bcd12f7c24519ce5ee804df27696a48a90e /pc-bios/bios-pq/0015_enable-power-button-even-generation.patch
parentae027ad3c5ea9a041f46c22bcb52e879645ed171 (diff)
Bring pcbios, seabios, and vgabios into the tree as git submodules. Right now,
they aren't integrated into the build but we can do that incrementally. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'pc-bios/bios-pq/0015_enable-power-button-even-generation.patch')
-rw-r--r--pc-bios/bios-pq/0015_enable-power-button-even-generation.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/pc-bios/bios-pq/0015_enable-power-button-even-generation.patch b/pc-bios/bios-pq/0015_enable-power-button-even-generation.patch
deleted file mode 100644
index fb5880280e..0000000000
--- a/pc-bios/bios-pq/0015_enable-power-button-even-generation.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Enable power button event generation.
-
-Signed-off-by: Gleb Natapov <gleb@redhat.com>
-Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-
-diff --git a/bios/rombios32.c b/bios/rombios32.c
-index 81e3bad..9986531 100644
---- a/bios/rombios32.c
-+++ b/bios/rombios32.c
-@@ -1767,8 +1767,8 @@ void acpi_bios_init(void)
- fadt->plvl3_lat = cpu_to_le16(0xfff); // C3 state not supported
- fadt->gpe0_blk = cpu_to_le32(0xafe0);
- fadt->gpe0_blk_len = 4;
-- /* WBINVD + PROC_C1 + PWR_BUTTON + SLP_BUTTON + FIX_RTC */
-- fadt->flags = cpu_to_le32((1 << 0) | (1 << 2) | (1 << 4) | (1 << 5) | (1 << 6));
-+ /* WBINVD + PROC_C1 + SLP_BUTTON + FIX_RTC */
-+ fadt->flags = cpu_to_le32((1 << 0) | (1 << 2) | (1 << 5) | (1 << 6));
- acpi_build_table_header((struct acpi_table_header *)fadt, "FACP",
- sizeof(*fadt), 1);
-