Arthur Heymans has uploaded a new patch set (#2). ( https://review.coreboot.org/27631 )
Change subject: Documentation/writing_docs: Document the need for recommonmark
......................................................................
Documentation/writing_docs: Document the need for recommonmark
python-recommonmark is need for sphinx to be able to hande the markdown
documentation.
Change-Id: I9513ab4bdc753e0350754d9869239ea833893af9
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M Documentation/getting_started/writing_documentation.md
1 file changed, 3 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/31/27631/2
--
To view, visit https://review.coreboot.org/27631
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: I9513ab4bdc753e0350754d9869239ea833893af9
Gerrit-Change-Number: 27631
Gerrit-PatchSet: 2
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/27631
Change subject: Documentation/writing_docs: Also document the need for recommonmark
......................................................................
Documentation/writing_docs: Also document the need for recommonmark
python-recommonmark is need for sphinx to be able to hande the markdown
documentation.
Change-Id: I9513ab4bdc753e0350754d9869239ea833893af9
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M Documentation/getting_started/writing_documentation.md
1 file changed, 3 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/31/27631/1
diff --git a/Documentation/getting_started/writing_documentation.md b/Documentation/getting_started/writing_documentation.md
index 9a9bbf0..027def9 100644
--- a/Documentation/getting_started/writing_documentation.md
+++ b/Documentation/getting_started/writing_documentation.md
@@ -16,7 +16,9 @@
### Install Sphinx
-Please follow this official [guide].
+Please follow this official [guide] to install sphinx.
+You will also need python-recommonmark for sphinx to be able to handle
+markdown documenation.
### Optional
--
To view, visit https://review.coreboot.org/27631
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: I9513ab4bdc753e0350754d9869239ea833893af9
Gerrit-Change-Number: 27631
Gerrit-PatchSet: 1
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Hello Arthur Heymans,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/27629
to look at the new patch set (#2).
Change subject: asrock/g41c-gs: make serial console setup depend on selected super IO
......................................................................
asrock/g41c-gs: make serial console setup depend on selected super IO
The used super IO is selected in Kconfig depending on the board variant, so use
the selected super IO instead of the board variant directly.
Change-Id: I8421e7c9b1f9ca875c9291f4105c3c20726adfd0
Signed-off-by: Felix Held <felix-coreboot(a)felixheld.de>
---
M src/mainboard/asrock/g41c-gs/romstage.c
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/29/27629/2
--
To view, visit https://review.coreboot.org/27629
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: I8421e7c9b1f9ca875c9291f4105c3c20726adfd0
Gerrit-Change-Number: 27629
Gerrit-PatchSet: 2
Gerrit-Owner: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Arthur Heymans has posted comments on this change. ( https://review.coreboot.org/27629 )
Change subject: asrock/g41c-gs: make serial console setup depend on selected super IO
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://review.coreboot.org/27629
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: I8421e7c9b1f9ca875c9291f4105c3c20726adfd0
Gerrit-Change-Number: 27629
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Comment-Date: Wed, 25 Jul 2018 09:47:40 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/27630
Change subject: Documenation/conf.py: Make sure release is a string
......................................................................
Documenation/conf.py: Make sure release is a string
With python3 the split method can operate on strings while check_output
generates bytestrings.
Change-Id: I7b455c56e8195f0ecfbe5e360ac161c176f00115
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M Documentation/conf.py
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/30/27630/1
diff --git a/Documentation/conf.py b/Documentation/conf.py
index b8415c6..ff1ad9d 100644
--- a/Documentation/conf.py
+++ b/Documentation/conf.py
@@ -20,7 +20,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
-release = subprocess.check_output(('git', 'describe'))
+release = subprocess.check_output(('git', 'describe')).decode("utf-8")
# The short X.Y version.
version = release.split("-")[0]
--
To view, visit https://review.coreboot.org/27630
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: I7b455c56e8195f0ecfbe5e360ac161c176f00115
Gerrit-Change-Number: 27630
Gerrit-PatchSet: 1
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Felix Held has uploaded this change for review. ( https://review.coreboot.org/27629
Change subject: asrock/g41c-gs: make serial console setup depend on selected super IO
......................................................................
asrock/g41c-gs: make serial console setup depend on selected super IO
The used super IO is selected in Kconfig depending on the board variant, so use
the selected super IO instead of the board variant directly.
Change-Id: I8421e7c9b1f9ca875c9291f4105c3c20726adfd0
Signed-off-by: Felix Held <felix-coreboot(a)felixheld.de>
---
M src/mainboard/asrock/g41c-gs/romstage.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/29/27629/1
diff --git a/src/mainboard/asrock/g41c-gs/romstage.c b/src/mainboard/asrock/g41c-gs/romstage.c
index e1f4152..7a30e35 100644
--- a/src/mainboard/asrock/g41c-gs/romstage.c
+++ b/src/mainboard/asrock/g41c-gs/romstage.c
@@ -47,7 +47,7 @@
setup_pch_gpios(&mainboard_gpio_map);
/* Set GPIOs on superio, enable UART */
- if (IS_ENABLED(CONFIG_BOARD_ASROCK_G41C_GS_R2_0)) {
+ if (IS_ENABLED(CONFIG_SUPERIO_NUVOTON_NCT6776)) {
nuvoton_pnp_enter_conf_state(SERIAL_DEV_R2);
pnp_set_logical_device(SERIAL_DEV_R2);
--
To view, visit https://review.coreboot.org/27629
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: I8421e7c9b1f9ca875c9291f4105c3c20726adfd0
Gerrit-Change-Number: 27629
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Held <felix-coreboot(a)felixheld.de>
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/15164 )
Change subject: nb/amd/pi/00730F01: Add initial native IVRS support
......................................................................
Patch Set 21:
(4 comments)
https://review.coreboot.org/#/c/15164/21/src/northbridge/amd/pi/00730F01/no…
File src/northbridge/amd/pi/00730F01/northbridge.c:
https://review.coreboot.org/#/c/15164/21/src/northbridge/amd/pi/00730F01/no…
PS21, Line 507: is_pcie = pci_find_capability(dev, PCI_CAP_ID_PCIE);
line over 80 characters
https://review.coreboot.org/#/c/15164/21/src/northbridge/amd/pi/00730F01/no…
PS21, Line 528: } else if ((header_type == PCI_HEADER_TYPE_NORMAL) &&
line over 80 characters
https://review.coreboot.org/#/c/15164/21/src/northbridge/amd/pi/00730F01/no…
PS21, Line 608: printk(BIOS_WARNING, "%s: G-series northbridge device not present!\n", __func__);
line over 80 characters
https://review.coreboot.org/#/c/15164/21/src/northbridge/amd/pi/00730F01/no…
PS21, Line 609: printk(BIOS_WARNING, "%s: IVRS table not generated...\n", __func__);
line over 80 characters
--
To view, visit https://review.coreboot.org/15164
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: I1ae789f75363435accd14a1b556e1570f43f94c4
Gerrit-Change-Number: 15164
Gerrit-PatchSet: 21
Gerrit-Owner: Timothy Pearson <tpearson(a)raptorengineering.com>
Gerrit-Reviewer: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Philipp Deppenwiese <zaolin.daisuki(a)gmail.com>
Gerrit-Reviewer: Timothy Pearson <tpearson(a)raptorengineering.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Piotr Król <piotr.krol(a)3mdeb.com>
Gerrit-Comment-Date: Tue, 24 Jul 2018 23:55:07 +0000
Gerrit-HasComments: Yes
Gerrit-HasLabels: No