Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/28976
to look at the new patch set (#2).
Change subject: Use macros instead of magic numbers
......................................................................
Use macros instead of magic numbers
Apparently coreboot still uses magic numbers instead of macros in some
Lenovo mainboards. Let's use macros instead.
Also removed some board names from comments since these functions
…
[View More]sometimes are very similar, so no need to add extra difference between
them.
Change-Id: I6468e3357f8eed434f8527a852e134380f486d9a
Signed-off-by: Peter Lemenkov <lemenkov(a)gmail.com>
---
M src/mainboard/lenovo/l520/romstage.c
M src/mainboard/lenovo/s230u/romstage.c
M src/mainboard/lenovo/t520/romstage.c
M src/mainboard/lenovo/t530/romstage.c
M src/mainboard/lenovo/x1_carbon_gen1/romstage.c
M src/mainboard/lenovo/x201/romstage.c
M src/mainboard/lenovo/x220/romstage.c
M src/mainboard/lenovo/x230/romstage.c
8 files changed, 26 insertions(+), 21 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/76/28976/2
--
To view, visit https://review.coreboot.org/28976
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I6468e3357f8eed434f8527a852e134380f486d9a
Gerrit-Change-Number: 28976
Gerrit-PatchSet: 2
Gerrit-Owner: Peter Lemenkov <lemenkov(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
[View Less]
Philipp Deppenwiese has submitted this change and it was merged. ( https://review.coreboot.org/28774 )
Change subject: payloads: Only show supported payloads in menuconfig
......................................................................
payloads: Only show supported payloads in menuconfig
Some payloads don't depend on their supported platforms, which makes
them visible in menuconfig even if they are not supported (yet).
Change-Id: Ia1ec0f0ca0b6521d0c024500c67326337f3d744f
Signed-off-…
[View More]by: Philipp Hug <philipp(a)hug.cx>
Reviewed-on: https://review.coreboot.org/28774
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
Reviewed-by: Martin Roth <martinroth(a)google.com>
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki(a)gmail.com>
---
M payloads/Kconfig
M payloads/external/FILO/Kconfig.name
M payloads/external/linux/Kconfig.name
M payloads/external/tianocore/Kconfig.name
4 files changed, 5 insertions(+), 0 deletions(-)
Approvals:
build bot (Jenkins): Verified
Martin Roth: Looks good to me, approved
Philipp Deppenwiese: Looks good to me, approved
diff --git a/payloads/Kconfig b/payloads/Kconfig
index 8e05df3..c7a7ba6 100644
--- a/payloads/Kconfig
+++ b/payloads/Kconfig
@@ -30,6 +30,7 @@
config PAYLOAD_FIT
bool "A FIT payload"
+ depends on ARCH_ARM64
select PAYLOAD_FIT_SUPPORT
help
Select this option if you have a payload image (a FIT file) which
@@ -41,6 +42,7 @@
config PAYLOAD_BAYOU
bool "Bayou"
+ depends on ARCH_X86
help
Select this option if you want to set bayou as your primary
payload.
diff --git a/payloads/external/FILO/Kconfig.name b/payloads/external/FILO/Kconfig.name
index ca94343..28a41dc 100644
--- a/payloads/external/FILO/Kconfig.name
+++ b/payloads/external/FILO/Kconfig.name
@@ -1,5 +1,6 @@
config PAYLOAD_FILO
bool "FILO"
+ depends on ARCH_X86
help
Select this option if you want to build a coreboot image
with a FILO payload. If you don't know what this is
diff --git a/payloads/external/linux/Kconfig.name b/payloads/external/linux/Kconfig.name
index ae1d906..63621d8 100644
--- a/payloads/external/linux/Kconfig.name
+++ b/payloads/external/linux/Kconfig.name
@@ -1,5 +1,6 @@
config PAYLOAD_LINUX
bool "A Linux payload"
+ depends on ARCH_X86 || ARCH_ARM
help
Select this option if you have a Linux bzImage which coreboot
should run as soon as the basic hardware initialization
diff --git a/payloads/external/tianocore/Kconfig.name b/payloads/external/tianocore/Kconfig.name
index e57925f..a56d248 100644
--- a/payloads/external/tianocore/Kconfig.name
+++ b/payloads/external/tianocore/Kconfig.name
@@ -1,5 +1,6 @@
config PAYLOAD_TIANOCORE
bool "Tianocore coreboot payload package"
+ depends on ARCH_X86
help
Select this option if you want to build a coreboot image
with a Tianocore payload. If you don't know what this is
--
To view, visit https://review.coreboot.org/28774
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: Ia1ec0f0ca0b6521d0c024500c67326337f3d744f
Gerrit-Change-Number: 28774
Gerrit-PatchSet: 4
Gerrit-Owner: Philipp Hug <philipp(a)hug.cx>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Jonathan Neuschäfer <j.neuschaefer(a)gmx.net>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Philipp Deppenwiese <zaolin.daisuki(a)gmail.com>
Gerrit-Reviewer: Philipp Hug <philipp(a)hug.cx>
Gerrit-Reviewer: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
[View Less]
Philipp Deppenwiese has posted comments on this change. ( https://review.coreboot.org/28774 )
Change subject: payloads: Only show supported payloads in menuconfig
......................................................................
Patch Set 3: Code-Review+2
--
To view, visit https://review.coreboot.org/28774
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-…
[View More]Change-Id: Ia1ec0f0ca0b6521d0c024500c67326337f3d744f
Gerrit-Change-Number: 28774
Gerrit-PatchSet: 3
Gerrit-Owner: Philipp Hug <philipp(a)hug.cx>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Jonathan Neuschäfer <j.neuschaefer(a)gmx.net>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Philipp Deppenwiese <zaolin.daisuki(a)gmail.com>
Gerrit-Reviewer: Philipp Hug <philipp(a)hug.cx>
Gerrit-Reviewer: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Tue, 09 Oct 2018 11:29:48 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
[View Less]