Added sdkconfig update helper

This commit is contained in:
CommanderRedYT
2022-05-15 23:27:30 +02:00
parent f9760528ca
commit 304b7225df

21
update_all_sdkconfigs.py Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/env python3
import os
import subprocess
# execute './switchconf.sh --list' to get the list of available configurations
output = subprocess.check_output(['bash', './switchconf.sh', '--list']).decode('utf-8').splitlines()
if len(output) == 0:
print('No configurations found!')
exit(1)
# check if PATH (env) contains 'bobbycar-boardcomputer-firmware
if 'bobbycar-boardcomputer-firmware' not in os.environ['PATH']:
print('Please execute ". export.sh"')
exit(1)
for config in output:
print('Switching to configuration: ' + config)
subprocess.check_call(['bash', './switchconf.sh', config])
# execute idf.py menuconfig and wait for user to close again
subprocess.check_call(['idf.py', 'menuconfig'])