53ea1d44f0
This was originally several commits that had to be squashed into one because the intermediate states weren't able to build coreboot: - one to remove everything that wasn't our own code, leaving only regex.[ch], toada.c, description.md and Makefile.inc. - one to copy in Linux 5.13's scripts/kconfig and adapt Makefile.inc to make the original Makefile work again. - adapt abuild to use olddefconfig, simplifying matters. - apply patches in util/kconfig/patches. - Some more adaptations to the libpayload build system. The patches are now in util/kconfig/patches/, reverse applying them should lead to a util/kconfig/ tree that contains exactly the Linux version + our own 5 files. Change-Id: Ia0e8fe4e9022b278f34ab113a433ef4d45e5c355 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37152 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org>
25 lines
862 B
Diff
25 lines
862 B
Diff
From 887ae0ac3dc53fc73488a4dbc1fbf36fa620ce8b Mon Sep 17 00:00:00 2001
|
|
From: Martin Roth <martinroth@google.com>
|
|
Date: Tue, 6 Dec 2016 14:28:44 -0700
|
|
Subject: [PATCH] util/kconfig/conf.c: Fix newline in error printf
|
|
|
|
For some reason the \n in the defconfig save error was not escaped.
|
|
|
|
Signed-off-by: Martin Roth <martinroth@google.com>
|
|
---
|
|
util/kconfig/conf.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: kconfig/conf.c
|
|
===================================================================
|
|
--- kconfig.orig/conf.c
|
|
+++ kconfig/conf.c
|
|
@@ -900,7 +900,7 @@ int main(int ac, char **av)
|
|
|
|
if (input_mode == savedefconfig) {
|
|
if (conf_write_defconfig(defconfig_file)) {
|
|
- fprintf(stderr, "n*** Error while saving defconfig to: %s\n\n",
|
|
+ fprintf(stderr, "\n*** Error while saving defconfig to: %s\n\n",
|
|
defconfig_file);
|
|
return 1;
|
|
}
|