tsdkvm.config - sdk-vm - Blend repository for building a Devuan SDK VM
 (HTM) git clone https://git.parazyd.org/sdk-vm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) LICENSE
       ---
       tsdkvm.config (892B)
       ---
            1 #!/usr/bin/env zsh
            2 # See LICENSE file for copyright and license details.
            3 
            4 blend_name="sdkvm"
            5 blend_vers="1.0"
            6 
            7 size=20479
            8 imageformat="qcow2"
            9 
           10 makecloud=false
           11 
           12 TAR_STAGE4=true
           13 
           14 image_name="${blend_name}-${blend_vers}-${arch}-$(date '+%Y%m%d')"
           15 vm_name="${blend_name}-${blend_vers}-${arch}-$(date '+%Y%m%d')"
           16 
           17 extra_packages+=(
           18         zsh
           19         sudo
           20         cgpt
           21         parted
           22         xz-utils
           23         curl
           24         git
           25         wget
           26         qemu-user-static
           27         build-essential
           28         rsync
           29         gcc-arm-none-eabi
           30         gcc-multilib
           31         lib32z1
           32         u-boot-tools
           33         device-tree-compiler
           34         lzop
           35         dosfstools
           36         vboot-utils
           37         vboot-kernel-utils
           38         libftdi-dev
           39         swig
           40         libpython-dev
           41         bc
           42         bison
           43         flex
           44         libssl-dev
           45         xorriso
           46         squashfs-tools
           47         live-boot
           48         syslinux-common
           49         qemu
           50         qemu-utils
           51 )
           52 
           53 virtualbox_url="https://download.virtualbox.org/virtualbox/6.0.14/virtualbox-6.0_6.0.14-133895~Debian~stretch_amd64.deb"
           54 vagrant_url="https://releases.hashicorp.com/vagrant/2.2.6/vagrant_2.2.6_x86_64.deb"