-
-
Notifications
You must be signed in to change notification settings - Fork 616
/
Copy pathbuild-docker
executable file
·78 lines (70 loc) · 2.2 KB
/
build-docker
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/env python3
import os
import subprocess
import tarfile
import common
from shell_helpers import LF
class DockerComponent(self.Component):
def get_argparse_args(self):
return {
'description': '''\
Build a guest root filesystem based on prebuilt Docker Ubuntu root filesystems.
See also: https://github.com/cirosantilli/linux-kernel-module-cheatTODO#ubuntu-guest-setup
'''
}
def build(self):
build_dir = self.get_build_dir()
container_name = 'lkmc-guest'
target_dir = os.path.join('/root', 'linux-kernel-module-cheat')
os.makedirs(build_dir, exist_ok=True)
containers = self.sh.check_output([
'docker',
'ps',
'-a',
'--format', '{{.Names}}',
]).decode()
if container_name in containers.split():
self.sh.run_cmd([
'docker',
'rm',
container_name,
])
self.sh.run_cmd([
'docker',
'create',
'--name', container_name,
'--network', 'host',
'--interactive',
'--privileged',
'--tty',
'--workdir', target_dir,
'--volume', '{}:{}'.format(kwargs['root_dir'], target_dir),
'ubuntu:20.04',
'bash',
])
self.sh.run_cmd([
'docker',
'export',
'-o',
kwargs['docker_tar_file'],
container_name,
])
tar = tarfile.open(kwargs['docker_tar_file'])
tar.extractall(kwargs['docker_tar_dir'])
tar.close()
# sudo not required in theory
# https://askubuntu.com/questions/1046828/how-to-run-libguestfs-tools-tools-such-as-virt-make-fs-without-sudo
self.sh.run_cmd([
'virt-make-fs',
'--format', 'raw',
'--size', '+1G',
'--type', 'ext2',
kwargs['docker_tar_dir'],
kwargs['docker_rootfs_raw_file'],
])
self.raw_to_qcow2(prebuilt=True)
def get_build_dir(self):
return kwargs['docker_build_dir']
def get_default_args(self):
return {'docker': True}
Main().cli()