Add packages sideload feature

This commit is contained in:
jld3103 2021-10-15 22:52:13 +02:00
parent 135ffc5def
commit 0e07a33968
5 changed files with 137 additions and 12 deletions

View file

@ -131,3 +131,14 @@ CFLAGS_ARCHES: dict[Arch, list[str]] = {
}
CROSSDIRECT_PKGS = ['crossdirect', 'qemu-user-static-bin', 'binfmt-qemu-static']
SSH_DEFAULT_HOST = '172.16.42.1'
SSH_DEFAULT_PORT = 22
SSH_COMMON_OPTIONS = [
'-o',
'GlobalKnownHostsFile=/dev/null',
'-o',
'UserKnownHostsFile=/dev/null',
'-o',
'StrictHostKeyChecking=no',
]