forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ACPI: Remove ACPI_CUSTOM_DSDT_INITRD option
This essentially reverts commit 71fc47a ("ACPI: basic initramfs DSDT override support"), because the code simply isn't ready. It did ugly things to the init sequence to populate the rootfs image early, but that just ended up showing other problems with the whole approach. The fact is, the VFS layer simply isn't initialized this early, and the relevant ACPI code should either run much later, or this shouldn't be done at all. For 2.6.25, we'll just pick the latter option. We can revisit this concept later if necessary. Cc: Dave Hansen <[email protected]> Cc: Tilman Schmidt <[email protected]> Cc: Andrew Morton <[email protected]> Cc: Thomas Renninger <[email protected]> Cc: Eric Piel <[email protected]> Cc: Len Brown <[email protected]> Cc: Christoph Hellwig <[email protected]> Cc: Markus Gaugusch <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
Showing
7 changed files
with
3 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
Linux supports two methods of overriding the BIOS DSDT: | ||
Linux supports a method of overriding the BIOS DSDT: | ||
|
||
CONFIG_ACPI_CUSTOM_DSDT builds the image into the kernel. | ||
|
||
CONFIG_ACPI_CUSTOM_DSDT_INITRD adds the image to the initrd. | ||
|
||
When to use these methods is described in detail on the | ||
When to use this method is described in detail on the | ||
Linux/ACPI home page: | ||
http://www.lesswatts.org/projects/acpi/overridingDSDT.php | ||
|
||
Note that if both options are used, the DSDT supplied | ||
by the INITRD method takes precedence. | ||
|
||
Documentation/initramfs-add-dsdt.sh is provided for convenience | ||
for use with the CONFIG_ACPI_CUSTOM_DSDT_INITRD method. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters