4c9b9e9709
Linux 5.16 saw a significant rewrite in the boolean handling which reduces our change set. On the other hand, it's all new code. Comparing the config.build and config.h files generated by `util/abuild/abuild -C`, only a few lines of comment in the header changed. Change-Id: I52984e15a48236ddf228707aec85e90f71aa4382 Signed-off-by: Patrick Georgi <patrick@coreboot.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/66045 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
28 lines
850 B
Diff
28 lines
850 B
Diff
From d470f1069744c3e6ef2e928217c1a4a23a87efa2 Mon Sep 17 00:00:00 2001
|
|
From: zbao <fishbaozi@gmail.com>
|
|
Date: Sat, 26 Sep 2015 06:20:53 -0400
|
|
Subject: [PATCH] util/kconfig: Set parameter of mkdir to only one for mingw.
|
|
|
|
The second parameter is to set file permissions for the directory, which
|
|
is not needed in mingw.
|
|
|
|
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
|
|
---
|
|
util/kconfig/confdata.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
Index: kconfig/confdata.c
|
|
===================================================================
|
|
--- kconfig.orig/confdata.c
|
|
+++ kconfig/confdata.c
|
|
@@ -155,6 +155,10 @@ static void conf_message(const char *fmt
|
|
static const char *conf_filename;
|
|
static int conf_lineno, conf_warnings;
|
|
|
|
+#ifdef __MINGW32__
|
|
+#define mkdir(_n,_p) mkdir((_n))
|
|
+#endif
|
|
+
|
|
static void conf_warning(const char *fmt, ...)
|
|
{
|
|
va_list ap;
|