mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +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
|
type: object
|
||||||
properties:
|
properties:
|
||||||
architecture:
|
architecture:
|
||||||
enum: [i386, amd64]
|
enum: [i386, amd64, arm64]
|
||||||
userspace_architecture:
|
userspace_architecture:
|
||||||
enum: [i386]
|
enum: [i386]
|
||||||
bootloader:
|
bootloader:
|
||||||
|
|
|
@ -26,6 +26,7 @@ properties:
|
||||||
enum:
|
enum:
|
||||||
- grub
|
- grub
|
||||||
- extlinux
|
- extlinux
|
||||||
|
- none
|
||||||
volume:
|
volume:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
|
|
@ -9,6 +9,7 @@ wheezy:
|
||||||
jessie:
|
jessie:
|
||||||
amd64: linux-image-amd64
|
amd64: linux-image-amd64
|
||||||
i386: linux-image-686-pae
|
i386: linux-image-686-pae
|
||||||
|
arm64: linux-image-arm64
|
||||||
sid:
|
sid:
|
||||||
amd64: linux-image-amd64
|
amd64: linux-image-amd64
|
||||||
i386: linux-image-686-pae
|
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