live-sdk

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

config (1228B)


      1 #!/usr/bin/env zsh
      2 # Copyright (c) 2016-2017 Dyne.org Foundation
      3 # live-sdk is written and maintained by Ivan J. <parazyd@dyne.org>
      4 #
      5 # This file is part of live-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 ## live-sdk configuration
     22 ## ----------------------
     23 
     24 MAKEOPTS="-j$(grep -c 'processor' /proc/cpuinfo)"
     25 
     26 export PATH="$PATH:/usr/sbin:/sbin:/usr/bin:/bin"
     27 
     28 ## uncomment if you wish to create stage4 tarballs for faster rebuilding
     29 # TAR_STAGE4=true
     30 
     31 ## extra_packages for all images
     32 extra_packages+=(
     33 	live-config
     34 	live-config-sysvinit
     35 	syslinux
     36 	syslinux-common
     37 	isolinux
     38 	rsync
     39 	squashfs-tools
     40 	xorriso
     41 	cryptsetup
     42 )