summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xalldefconfig.py1
-rwxr-xr-xallmodconfig.py1
-rwxr-xr-xallnoconfig.py1
-rwxr-xr-xallyesconfig.py1
-rwxr-xr-xgenconfig.py1
-rwxr-xr-xlistnewconfig.py1
-rwxr-xr-xoldconfig.py1
-rwxr-xr-xolddefconfig.py1
-rwxr-xr-xsavedefconfig.py1
-rwxr-xr-xsetconfig.py1
10 files changed, 0 insertions, 10 deletions
diff --git a/alldefconfig.py b/alldefconfig.py
index f132f1e..a24f07a 100755
--- a/alldefconfig.py
+++ b/alldefconfig.py
@@ -14,7 +14,6 @@ Usage for the Linux kernel:
$ make [ARCH=<arch>] scriptconfig SCRIPT=Kconfiglib/alldefconfig.py
"""
-
import kconfiglib
diff --git a/allmodconfig.py b/allmodconfig.py
index b41cf23..990cddf 100755
--- a/allmodconfig.py
+++ b/allmodconfig.py
@@ -13,7 +13,6 @@ Usage for the Linux kernel:
$ make [ARCH=<arch>] scriptconfig SCRIPT=Kconfiglib/examples/allmodconfig.py
"""
-
import kconfiglib
diff --git a/allnoconfig.py b/allnoconfig.py
index 9b66d83..7d81906 100755
--- a/allnoconfig.py
+++ b/allnoconfig.py
@@ -16,7 +16,6 @@ Usage for the Linux kernel:
See the examples/allnoconfig_walk.py example script for another way to
implement this script.
"""
-
import kconfiglib
diff --git a/allyesconfig.py b/allyesconfig.py
index afff0e7..3f576fa 100755
--- a/allyesconfig.py
+++ b/allyesconfig.py
@@ -13,7 +13,6 @@ Usage for the Linux kernel:
$ make [ARCH=<arch>] scriptconfig SCRIPT=Kconfiglib/examples/allmodconfig.py
"""
-
import kconfiglib
diff --git a/genconfig.py b/genconfig.py
index 23ba4b8..c575c9a 100755
--- a/genconfig.py
+++ b/genconfig.py
@@ -14,7 +14,6 @@ Kconfig.sync_deps() in kconfiglib.py.
By default, the configuration is generated from '.config'. A different
configuration file can be passed in the KCONFIG_CONFIG environment variable.
"""
-
import argparse
import kconfiglib
diff --git a/listnewconfig.py b/listnewconfig.py
index 45f6a57..06d0cf1 100755
--- a/listnewconfig.py
+++ b/listnewconfig.py
@@ -10,7 +10,6 @@ file. Usually, these are new symbols that have been added to the Kconfig files.
The default configuration filename is '.config'. A different filename can be
passed in the KCONFIG_CONFIG environment variable.
"""
-
import sys
from kconfiglib import standard_kconfig, BOOL, TRISTATE, INT, HEX, STRING, \
diff --git a/oldconfig.py b/oldconfig.py
index 6f9950e..4379dcf 100755
--- a/oldconfig.py
+++ b/oldconfig.py
@@ -22,7 +22,6 @@ pretty easy to add: Look at the parents of each item, and print all menu
prompts and comments unless they have already been printed (assuming you want
to skip "irrelevant" menus).
"""
-
from __future__ import print_function
import sys
diff --git a/olddefconfig.py b/olddefconfig.py
index 5c400de..cc98ec8 100755
--- a/olddefconfig.py
+++ b/olddefconfig.py
@@ -12,7 +12,6 @@ saving.
The default input/output filename is '.config'. A different filename can be
passed in the KCONFIG_CONFIG environment variable.
"""
-
import kconfiglib
diff --git a/savedefconfig.py b/savedefconfig.py
index 9408633..f8391a0 100755
--- a/savedefconfig.py
+++ b/savedefconfig.py
@@ -17,7 +17,6 @@ can be passed in the KCONFIG_CONFIG environment variable.
Note: Minimal configurations can also be generated from within the menuconfig
interface.
"""
-
import argparse
import kconfiglib
diff --git a/setconfig.py b/setconfig.py
index dce9950..4c41529 100755
--- a/setconfig.py
+++ b/setconfig.py
@@ -17,7 +17,6 @@ The exit status on errors is 1.
The default input/output configuration file is '.config'. A different filename
can be passed in the KCONFIG_CONFIG environment variable.
"""
-
import argparse
import sys