aboutsummaryrefslogtreecommitdiffstats
path: root/qemu-headless/make_vm_debootstrap_armhf.py
blob: 69fc807cb13bbbc54937287d69957b58beb76daf (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python3

import make_vm_debootstrap

make_vm_debootstrap.parameters['arch'] = 'armhf'
make_vm_debootstrap.parameters['image'] = 'unstable-armhf.qcow2'
make_vm_debootstrap.parameters['kernel_package'] = 'linux-image-armmp-lpae'
make_vm_debootstrap.parameters['serial_console'] = 'ttyAMA0'

if __name__ == '__main__':
    make_vm_debootstrap.main()