1
0
mirror of https://git.yoctoproject.org/poky synced 2026-04-20 11:28:58 +00:00

scripts: python3: rename raw_input to input

Renamed raw_input to input as raw_input does not
exist in python 3.

(From meta-yocto rev: c9df9f2699885f2ba5b031c8761aefbf3c796067)

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ed Bartosh
2016-06-02 13:12:49 +03:00
committed by Richard Purdie
parent 02ac95ab5d
commit 5483fa294f
2 changed files with 12 additions and 12 deletions

View File

@@ -202,8 +202,8 @@ def yocto_kernel_config_rm(scripts_path, machine):
config_items = read_config_items(scripts_path, machine)
print("Specify the kernel config items to remove:")
input = raw_input(gen_choices_str(config_items))
rm_choices = input.split()
inp = input(gen_choices_str(config_items))
rm_choices = inp.split()
rm_choices.sort()
removed = []
@@ -359,8 +359,8 @@ def yocto_kernel_patch_rm(scripts_path, machine):
patches = read_patch_items(scripts_path, machine)
print("Specify the patches to remove:")
input = raw_input(gen_choices_str(patches))
rm_choices = input.split()
inp = input(gen_choices_str(patches))
rm_choices = inp.split()
rm_choices.sort()
removed = []
@@ -610,8 +610,8 @@ def yocto_kernel_feature_rm(scripts_path, machine):
features = read_features(scripts_path, machine)
print("Specify the features to remove:")
input = raw_input(gen_choices_str(features))
rm_choices = input.split()
inp = input(gen_choices_str(features))
rm_choices = inp.split()
rm_choices.sort()
removed = []