summaryrefslogtreecommitdiffhomepage
path: root/tools/kernel
blob: 733e81f718bfecf650978cb586f00b983f2cd8f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
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)