mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
enable support for creating kvm images for jessie on arm64
This commit is contained in:
parent
fad4a4e3a1
commit
46594b1ef0
4 changed files with 35 additions and 1 deletions
|
@ -42,7 +42,7 @@ properties:
|
|||
type: object
|
||||
properties:
|
||||
architecture:
|
||||
enum: [i386, amd64]
|
||||
enum: [i386, amd64, arm64]
|
||||
userspace_architecture:
|
||||
enum: [i386]
|
||||
bootloader:
|
||||
|
|
|
@ -26,6 +26,7 @@ properties:
|
|||
enum:
|
||||
- grub
|
||||
- extlinux
|
||||
- none
|
||||
volume:
|
||||
type: object
|
||||
properties:
|
||||
|
|
|
@ -9,6 +9,7 @@ wheezy:
|
|||
jessie:
|
||||
amd64: linux-image-amd64
|
||||
i386: linux-image-686-pae
|
||||
arm64: linux-image-arm64
|
||||
sid:
|
||||
amd64: linux-image-amd64
|
||||
i386: linux-image-686-pae
|
||||
|
|
32
manifests/examples/kvm/jessie-arm64-virtio.yml
Normal file
32
manifests/examples/kvm/jessie-arm64-virtio.yml
Normal file
|
@ -0,0 +1,32 @@
|
|||
---
|
||||
name: debian-{system.release}-{system.architecture}-{%y}{%m}{%d}
|
||||
provider:
|
||||
name: kvm
|
||||
virtio_modules:
|
||||
- virtio_pci
|
||||
- virtio_blk
|
||||
bootstrapper:
|
||||
workspace: /target
|
||||
system:
|
||||
release: jessie
|
||||
architecture: arm64
|
||||
bootloader: none
|
||||
charmap: UTF-8
|
||||
locale: en_US
|
||||
timezone: UTC
|
||||
volume:
|
||||
backing: raw
|
||||
partitions:
|
||||
type: msdos
|
||||
boot:
|
||||
filesystem: ext2
|
||||
size: 32MiB
|
||||
root:
|
||||
filesystem: ext4
|
||||
size: 864MiB
|
||||
swap:
|
||||
size: 128MiB
|
||||
packages: {}
|
||||
plugins:
|
||||
root_password:
|
||||
password: test
|
Loading…
Add table
Reference in a new issue