We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a987bcd commit 9ea9c25Copy full SHA for 9ea9c25
cmds/cmd_menuconfig.py
@@ -218,6 +218,10 @@ def cmd(args):
218
os.system('kconfig-mconf Kconfig')
219
220
os.chdir(beforepath)
221
+
222
+ if platform.system() == "Windows":
223
+ os.system('chcp 65001 > nul')
224
225
return
226
else:
227
if float(os_version) >= 6.2:
@@ -246,7 +250,6 @@ def cmd(args):
246
250
if not os.path.isfile(fn):
247
251
248
252
249
-
253
if find_macro_in_config(fn, 'SYS_AUTO_UPDATE_PKGS'):
254
os.system('pkgs --update')
255
print "==============================>The packages have been updated completely."
0 commit comments