first commit

This commit is contained in:
2025-06-13 23:47:44 +02:00
commit 373bf070a4
2860 changed files with 1663538 additions and 0 deletions

21
buildroot/bin/opt_enable Executable file
View File

@@ -0,0 +1,21 @@
#!/usr/bin/env python
import sys, os,config
def main():
args = sys.argv[1:]
for name in args:
changed = False
for file in config.FILES:
if os.path.exists(file):
if config.enable(file, name):
changed = True
if not changed:
print(f"ERROR: Can't find {name}")
exit(1)
if __name__ == "__main__":
main()