Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/46533 )
Change subject: libpayload/storage: Enable all AHCI controllers by default ......................................................................
libpayload/storage: Enable all AHCI controllers by default
Change-Id: If30f58f8380ab599f8985e85c64510dc88e96268 Signed-off-by: Felix Singer felixsinger@posteo.net --- M payloads/libpayload/drivers/storage/Kconfig 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/33/46533/1
diff --git a/payloads/libpayload/drivers/storage/Kconfig b/payloads/libpayload/drivers/storage/Kconfig index fea52c8..268aa50 100644 --- a/payloads/libpayload/drivers/storage/Kconfig +++ b/payloads/libpayload/drivers/storage/Kconfig @@ -45,7 +45,7 @@ config STORAGE_AHCI_ONLY_TESTED bool "Only enable tested controllers" depends on STORAGE_AHCI - default y + default n help If this option is selected only AHCI controllers which are known to work will be used.
Idwer Vollering has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/46533 )
Change subject: libpayload/storage: Enable all AHCI controllers by default ......................................................................
Patch Set 1: Code-Review+1
(1 comment)
https://review.coreboot.org/c/coreboot/+/46533/1/payloads/libpayload/drivers... File payloads/libpayload/drivers/storage/Kconfig:
https://review.coreboot.org/c/coreboot/+/46533/1/payloads/libpayload/drivers... PS1, Line 50: selected only This sentence could benefit from having an Oxford commma too.
Nico Huber has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/46533 )
Change subject: libpayload/storage: Enable all AHCI controllers by default ......................................................................
Patch Set 1: Code-Review+2
(1 comment)
https://review.coreboot.org/c/coreboot/+/46533/1/payloads/libpayload/drivers... File payloads/libpayload/drivers/storage/Kconfig:
https://review.coreboot.org/c/coreboot/+/46533/1/payloads/libpayload/drivers... PS1, Line 50: selected only
This sentence could benefit from having an Oxford commma too.
Yes, please patch.
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/46533 )
Change subject: libpayload/storage: Enable all AHCI controllers by default ......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/c/coreboot/+/46533/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/46533/1//COMMIT_MSG@8 PS1, Line 8: A short justification would be nice.
Default to the option with a higher chance to support your system.
(Though I do not really understand the purpose of this option.)
Hello build bot (Jenkins), Nico Huber, Idwer Vollering,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/46533
to look at the new patch set (#2).
Change subject: libpayload/storage: Enable all AHCI controllers by default ......................................................................
libpayload/storage: Enable all AHCI controllers by default
Since the list of tested controllers is not actively maintained, enable all AHCI controllers by default. Also, improve the readability of its help text by adding a comma to it.
Change-Id: If30f58f8380ab599f8985e85c64510dc88e96268 Signed-off-by: Felix Singer felixsinger@posteo.net --- M payloads/libpayload/drivers/storage/Kconfig 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/33/46533/2
Felix Singer has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/46533 )
Change subject: libpayload/storage: Enable all AHCI controllers by default ......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/c/coreboot/+/46533/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/46533/1//COMMIT_MSG@8 PS1, Line 8:
A short justification would be nice. […]
Done
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/46533 )
Change subject: libpayload/storage: Enable all AHCI controllers by default ......................................................................
Patch Set 2: Code-Review+1
Michael Niewöhner has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/46533 )
Change subject: libpayload/storage: Enable all AHCI controllers by default ......................................................................
Patch Set 2: Code-Review+2
Nico Huber has submitted this change. ( https://review.coreboot.org/c/coreboot/+/46533 )
Change subject: libpayload/storage: Enable all AHCI controllers by default ......................................................................
libpayload/storage: Enable all AHCI controllers by default
Since the list of tested controllers is not actively maintained, enable all AHCI controllers by default. Also, improve the readability of its help text by adding a comma to it.
Change-Id: If30f58f8380ab599f8985e85c64510dc88e96268 Signed-off-by: Felix Singer felixsinger@posteo.net Reviewed-on: https://review.coreboot.org/c/coreboot/+/46533 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Paul Menzel paulepanter@users.sourceforge.net Reviewed-by: Michael Niewöhner foss@mniewoehner.de --- M payloads/libpayload/drivers/storage/Kconfig 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Paul Menzel: Looks good to me, but someone else must approve Michael Niewöhner: Looks good to me, approved
diff --git a/payloads/libpayload/drivers/storage/Kconfig b/payloads/libpayload/drivers/storage/Kconfig index fea52c8..8dffd3b 100644 --- a/payloads/libpayload/drivers/storage/Kconfig +++ b/payloads/libpayload/drivers/storage/Kconfig @@ -45,7 +45,7 @@ config STORAGE_AHCI_ONLY_TESTED bool "Only enable tested controllers" depends on STORAGE_AHCI - default y + default n help - If this option is selected only AHCI controllers which are known + If this option is selected, only AHCI controllers which are known to work will be used.