build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/26699 )
Change subject: util/docker/docs.coreboot.org: Patch recommonmark
......................................................................
Patch Set 1: Verified+1
Build Successful
https://qa.coreboot.org/job/coreboot-gerrit/73678/ : SUCCESS
https://qa.coreboot.org/job/coreboot-checkpatch/27801/ : SUCCESS
--
To view, visit https://review.coreboot.org/26699
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I287deab9168ab6124b05d0c6d6e8cdbd7fdc2eec
Gerrit-Change-Number: 26699
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Philipp Deppenwiese <zaolin.daisuki(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Wed, 30 May 2018 16:25:12 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/26700
Change subject: Documentation/lessons/lesson1: Fix formatting
......................................................................
Documentation/lessons/lesson1: Fix formatting
Change-Id: If4f13db2e56f1641a4e6a3069b744514e3279e3c
Signed-off-by: Patrick Georgi <patrick(a)georgi.software>
---
M Documentation/lessons/lesson1.md
1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/00/26700/1
diff --git a/Documentation/lessons/lesson1.md b/Documentation/lessons/lesson1.md
index 0a10ba3..4cbdf95 100644
--- a/Documentation/lessons/lesson1.md
+++ b/Documentation/lessons/lesson1.md
@@ -29,7 +29,7 @@
### Step 5 - Configure the build
-* ##### Configure your mainboard
+##### Configure your mainboard
$ make menuconfig
select 'Mainboard' menu
Beside 'Mainboard vendor' should be '(Emulation)'
@@ -38,12 +38,12 @@
These should be the default selections, so if anything else was set, run
`make distclean` to remove your old config file and start over.
-* ##### Optionally use your system toolchain (Again, not recommended)
+##### Optionally use your system toolchain (Again, not recommended)
select 'General Setup' menu
select 'Allow building with any toolchain'
select < Exit >
-* ##### Select the payload
+##### Select the payload
select 'Payload' menu
select 'Add a Payload'
choose 'An Elf executable payload'
--
To view, visit https://review.coreboot.org/26700
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: If4f13db2e56f1641a4e6a3069b744514e3279e3c
Gerrit-Change-Number: 26700
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Georgi <pgeorgi(a)google.com>
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/26699 )
Change subject: util/docker/docs.coreboot.org: Patch recommonmark
......................................................................
Patch Set 1:
It also needs changing debian:sid to debian:buster (testing) due to a recent bug in the fonts-font-awesome package (updated to 5.x without providing a transition path), but I'm not certain that this helps for more than the 2-weeks-or-so that testing is behind unstable in many cases.
--
To view, visit https://review.coreboot.org/26699
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I287deab9168ab6124b05d0c6d6e8cdbd7fdc2eec
Gerrit-Change-Number: 26699
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Philipp Deppenwiese <zaolin.daisuki(a)gmail.com>
Gerrit-CC: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Wed, 30 May 2018 16:17:33 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: No
Marc Jones has uploaded this change for review. ( https://review.coreboot.org/26698
Change subject: soc/amd/stoneyridge: Add ACPI device name lookup
......................................................................
soc/amd/stoneyridge: Add ACPI device name lookup
Add the ACPI devices defined in ASL to the soc_acpi_name() lookup
function.
BUG=b:80280671
TEST=Add ACPI method to specific GPP bridge. Boot and verify method
with ACPI dump.
Change-Id: I5117e0d39db831364173c9c61ccdab6e34f18c59
Signed-off-by: Marc Jones <marc.jones(a)scarletltd.com>
Signed-off-by: Marc Jones <marcj303(a)gmail.com>
---
M src/soc/amd/stoneyridge/chip.c
1 file changed, 12 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/98/26698/1
diff --git a/src/soc/amd/stoneyridge/chip.c b/src/soc/amd/stoneyridge/chip.c
index 3b73a05..9ca2db7 100644
--- a/src/soc/amd/stoneyridge/chip.c
+++ b/src/soc/amd/stoneyridge/chip.c
@@ -82,6 +82,18 @@
return NULL;
switch (dev->path.pci.devfn) {
+ case PCIE0_DEVFN:
+ return "PBR4";
+ case PCIE1_DEVFN:
+ return "PBR5";
+ case PCIE2_DEVFN:
+ return "PBR6";
+ case PCIE3_DEVFN:
+ return "PBR7";
+ case PCIE4_DEVFN:
+ return "PBR8";
+ case HDA1_DEVFN:
+ return "AZHD";
case EHCI1_DEVFN:
return "EHC0";
case LPC_DEVFN:
--
To view, visit https://review.coreboot.org/26698
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I5117e0d39db831364173c9c61ccdab6e34f18c59
Gerrit-Change-Number: 26698
Gerrit-PatchSet: 1
Gerrit-Owner: Marc Jones <marc(a)marcjonesconsulting.com>