20 lines
446 B
Python
Executable file
20 lines
446 B
Python
Executable file
#!/usr/bin/env python3
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
import os
|
|
import sys
|
|
|
|
import progver
|
|
from configuration import Config
|
|
|
|
config = Config(__file__, progver.VERSION, [
|
|
['mksrc', 'Make kernel source'],
|
|
['prepare', 'Prepare kernel source'],
|
|
['emergesrc', 'Build kernel source package'],
|
|
['build', 'Build kernel & modules'],
|
|
['initrd', 'Build initrd'],
|
|
['mkucodes', 'Build ucodes'],
|
|
['install', 'Install kernel']
|
|
])
|
|
config.parse(sys.argv)
|