vm-sdk

simple distro kit (vm edition)
git clone git://parazyd.org/vm-sdk.git
Log | Files | Refs | Submodules | README | LICENSE

config (1349B)


      1 #!/usr/bin/env zsh
      2 # Copyright (c) 2016-2017 Dyne.org Foundation
      3 # vm-sdk is written and maintained by Ivan J. <parazyd@dyne.org>
      4 #
      5 # This file is part of vm-sdk
      6 #
      7 # This source code is free software: you can redistribute it and/or modify
      8 # it under the terms of the GNU General Public License as published by
      9 # the Free Software Foundation, either version 3 of the License, or
     10 # (at your option) any later version.
     11 #
     12 # This software is distributed in the hope that it will be useful,
     13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 # GNU General Public License for more details.
     16 #
     17 # You should have received a copy of the GNU General Public License
     18 # along with this source code. If not, see <http://www.gnu.org/licenses/>.
     19 
     20 
     21 ## vm-sdk configuration
     22 ## ---------------------
     23 
     24 arch=amd64
     25 size=20479
     26 imageformat=qcow2
     27 #imageformat=raw
     28 
     29 PATH="$PATH:/usr/sbin:/sbin"
     30 
     31 ## options for `make` when building kernel
     32 MAKEOPTS="-j$(expr $(grep -c 'processor' /proc/cpuinfo) + 1)"
     33 
     34 ## uncomment if you wish to create stage4 tarballs for faster rebuilding
     35 # TAR_STAGE4=true
     36 
     37 ## Comment out if you don't want to create a cloud-based qcow.
     38 vars+=(makecloud)
     39 makecloud=true
     40 
     41 ## extra_packages for all images
     42 extra_packages+=(fake-hwclock busybox-static ntp)
     43 extra_packages+=(fbterm)