diff options
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/kconf.py | 13 | ||||
| -rwxr-xr-x | tools/kernel | 12 |
2 files changed, 12 insertions, 13 deletions
diff --git a/tools/kconf.py b/tools/kconf.py deleted file mode 100755 index a54d6244..00000000 --- a/tools/kconf.py +++ /dev/null @@ -1,13 +0,0 @@ -#! /usr/bin/env python3 -# -*- coding: utf-8 -*- - -import os, json, sys - -if __name__ == '__main__': - print("kconf: running kernel as standalone...") - os.system("../scripts/debug_ahci_x64.sh") - sys.exit(0) - - - - diff --git a/tools/kernel b/tools/kernel new file mode 100755 index 00000000..733e81f7 --- /dev/null +++ b/tools/kernel @@ -0,0 +1,12 @@ +#! /usr/bin/env python3 +# -*- coding: utf-8 -*- + +import os, sys + +KERNEL_SCRIPT="./scripts/debug_ahci_x64.sh" + +if __name__ == '__main__': + print("kconf: Running kernel...") + os.system(KERNEL_SCRIPT) + sys.exit(0) + |
