diff --git a/kconfig-mconf.zip b/kconfig-mconf.zip new file mode 100644 index 00000000..60e4dbf8 Binary files /dev/null and b/kconfig-mconf.zip differ diff --git a/menuconfig.ps1 b/menuconfig.ps1 new file mode 100644 index 00000000..76c152f4 --- /dev/null +++ b/menuconfig.ps1 @@ -0,0 +1,10 @@ +$env_bin_dir = "$HOME\.env\tools\bin" + +if (!(Test-Path -Path $env_bin_dir)) { + echo 'Can not find kconfig-mconf, install now.' + mkdir $env_bin_dir | Out-Null + Expand-Archive -Path kconfig-mconf.zip -DestinationPath $env_bin_dir + echo 'install kconfig-mconf done.' +} +$env:path="$HOME\.env\tools\bin;$env:path" +python $HOME/.env/tools/scripts/env.py menuconfig $args \ No newline at end of file