Philipp Deppenwiese (zaolin.daisuki@googlemail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17897
-gerrit
commit 8eac76a85fa1b4eda4d102c62932eb284bc961f2 Author: Philipp Deppenwiese zaolin@das-labor.org Date: Fri Dec 16 04:22:35 2016 +0100
configs/builder: Add Lenovo Thinkpad T420 template
Add Lenovo T420 template for the coreboot builder. Includes a change for stable lint tool 017 in order to only lint configs in configs with depth 1.
Change-Id: Ib5763588937d7c8d920af591c8b3b0660665114c Signed-off-by: Philipp Deppenwiese zaolin@das-labor.org --- configs/builder/config.lenovo_thinkpad_t420 | 15 +++++++++++++++ util/lint/lint-stable-017-configs | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-)
diff --git a/configs/builder/config.lenovo_thinkpad_t420 b/configs/builder/config.lenovo_thinkpad_t420 new file mode 100644 index 0000000..7b8088f --- /dev/null +++ b/configs/builder/config.lenovo_thinkpad_t420 @@ -0,0 +1,15 @@ +CONFIG_USE_OPTION_TABLE=y +CONFIG_USE_BLOBS=y +CONFIG_VENDOR_LENOVO=y +CONFIG_VGA_BIOS=y +CONFIG_HAVE_IFD_BIN=y +CONFIG_HAVE_ME_BIN=y +CONFIG_DRIVERS_PS2_KEYBOARD=y +CONFIG_HAVE_GBE_BIN=y +CONFIG_BOARD_LENOVO_T420=y +CONFIG_NO_POST=y +CONFIG_PCIEXP_CLK_PM=y +CONFIG_PCIEXP_L1_SUB_STATE=y +CONFIG_LPC_TPM=y +CONFIG_CONSOLE_CBMEM_BUFFER_SIZE=0x80000 +CONFIG_PAYLOAD_NONE=y diff --git a/util/lint/lint-stable-017-configs b/util/lint/lint-stable-017-configs index 782c183..b962b8d 100755 --- a/util/lint/lint-stable-017-configs +++ b/util/lint/lint-stable-017-configs @@ -22,11 +22,11 @@ SYMBOLS='CONFIG_ARCH_|CONFIG_MAINBOARD_HAS_' if [ -n "$(command -v git)" ] && [ -d .git ]; then GREP="git grep -l" else - GREP="grep -rl" + GREP="grep -l" fi
#look for a couple of things that should only be set by select keywords for file in \ - $($GREP "$SYMBOLS" configs) ; do \ + $($GREP "$SYMBOLS" configs/config.*) ; do \ echo "Error: $file seems to be a full config"; \ done