blob: a54d6244679e12b579167c9bb3f49672e47f77e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /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)
|