mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
This provides the kconfig infrastructure that is used for the Linux kernel as a standalone package. It is not, however, intended to be used for the kernel itself, but can be used by other packages that are based on kconfig. This is a verbatim copy of the corresponding recipe in OE-core since that recipe is being removed. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
27 lines
706 B
Diff
27 lines
706 B
Diff
From 3b9b0f82c33f793a14d44bf06b6c8136bc3fc4bf Mon Sep 17 00:00:00 2001
|
|
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
Date: Thu, 27 Apr 2017 16:48:42 +0300
|
|
Subject: [PATCH] Switch utils/kconfig-diff to use Python 3
|
|
|
|
The script supports it, but continues to refer to 2.x in shebang.
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
---
|
|
utils/kconfig-diff | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/utils/kconfig-diff b/utils/kconfig-diff
|
|
index 0db267d..19189f3 100755
|
|
--- a/utils/kconfig-diff
|
|
+++ b/utils/kconfig-diff
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/python
|
|
+#!/usr/bin/env python3
|
|
#
|
|
# diffconfig - a tool to compare .config files.
|
|
#
|
|
--
|
|
2.11.0
|
|
|