From a1f54fd1561ff2104f7c02c2499a9b6e3e4ecbfe Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sat, 8 Apr 2023 09:26:06 +0100 Subject: [PATCH] kexttool: store extensions.yaml in .config instead of build --- tools/kexttool/select.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/kexttool/select.py b/tools/kexttool/select.py index 922f31a..3a6ade7 100644 --- a/tools/kexttool/select.py +++ b/tools/kexttool/select.py @@ -3,8 +3,8 @@ import os from kexttool.kext import KextSource -selection_file_path = 'build/extensions.yaml' -kext_makefile_path = 'build/extensions.mk' +selection_file_path = '.config/extensions.yaml' +kext_makefile_path = '.config/extensions.mk' def description_to_list(kext): @@ -12,8 +12,8 @@ def description_to_list(kext): def create_selection_file(): - if not os.path.isdir('build'): - os.mkdir('build') + if not os.path.isdir('.config'): + os.mkdir('.config') all_kexts = KextSource.scan(os.path.join(os.getcwd(), 'kexts')) if len(all_kexts) == 0: