diff options
Diffstat (limited to 'scripts/lib/bsp/kernel.py')
-rw-r--r-- | scripts/lib/bsp/kernel.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/lib/bsp/kernel.py b/scripts/lib/bsp/kernel.py index 5bfa663809..3c4b79854d 100644 --- a/scripts/lib/bsp/kernel.py +++ b/scripts/lib/bsp/kernel.py | |||
@@ -202,8 +202,8 @@ def yocto_kernel_config_rm(scripts_path, machine): | |||
202 | config_items = read_config_items(scripts_path, machine) | 202 | config_items = read_config_items(scripts_path, machine) |
203 | 203 | ||
204 | print("Specify the kernel config items to remove:") | 204 | print("Specify the kernel config items to remove:") |
205 | input = raw_input(gen_choices_str(config_items)) | 205 | inp = input(gen_choices_str(config_items)) |
206 | rm_choices = input.split() | 206 | rm_choices = inp.split() |
207 | rm_choices.sort() | 207 | rm_choices.sort() |
208 | 208 | ||
209 | removed = [] | 209 | removed = [] |
@@ -359,8 +359,8 @@ def yocto_kernel_patch_rm(scripts_path, machine): | |||
359 | patches = read_patch_items(scripts_path, machine) | 359 | patches = read_patch_items(scripts_path, machine) |
360 | 360 | ||
361 | print("Specify the patches to remove:") | 361 | print("Specify the patches to remove:") |
362 | input = raw_input(gen_choices_str(patches)) | 362 | inp = input(gen_choices_str(patches)) |
363 | rm_choices = input.split() | 363 | rm_choices = inp.split() |
364 | rm_choices.sort() | 364 | rm_choices.sort() |
365 | 365 | ||
366 | removed = [] | 366 | removed = [] |
@@ -610,8 +610,8 @@ def yocto_kernel_feature_rm(scripts_path, machine): | |||
610 | features = read_features(scripts_path, machine) | 610 | features = read_features(scripts_path, machine) |
611 | 611 | ||
612 | print("Specify the features to remove:") | 612 | print("Specify the features to remove:") |
613 | input = raw_input(gen_choices_str(features)) | 613 | inp = input(gen_choices_str(features)) |
614 | rm_choices = input.split() | 614 | rm_choices = inp.split() |
615 | rm_choices.sort() | 615 | rm_choices.sort() |
616 | 616 | ||
617 | removed = [] | 617 | removed = [] |