12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- # Edit this file for your preferences, it will be read by build.sh
- # SEE http://www.kernel.org/ for latest kernel info
- # this is the name of the pet package suffix, and source sfs
- # name it whatever you like, usually put in a signifier for your distro
- # eg: "s" is for slacko
- package_name_suffix=slacko32FD4G
- # this is the kernel suffix hack, you can leave it empty ie: uname -r
- # if you don't leave empty the leading "dash" is required
- # example:
- #custom_suffix=-4G
- custom_suffix=
- # this is the version of the vanilla kernel, usually latest is best
- # or follow an LTS branch
- # THIS WILL ALMOST CERTAINLY NEED CHANGING
- # see kernel.org
- kernel_version="3.12.21"
- # below is a list of kernel mirrors
- # uncomment the closest one to you
- # make sure only one is uncommented!
- # you can search for more mirrors and use them
- # YOU CAN UNCOMMENT 1 BELOW, COMMENT UNCOMMENTED DEFAULT IF YOU DO
- kernel_mirror="http://www.kernel.org/pub/linux/kernel/v3.0/"
- #kernel_mirror="http://mirror.aarnet.edu.au/pub/ftp.kernel.org/linux/kernel/v3.0/"
- # new vars
- # if sourceforge seems unstable use the sfjro url
- #aufs_git=git://github.com/sfjro/aufs3-linux.git
- aufs_git=git://git.code.sf.net/p/aufs/aufs3-standalone
- # This is only for new kernels, leave blank if not using bleeding edge RC
- #aufsv=
- #aufsv=3.x-rcN
- #SPECIAL NOTE. LTS 3.10X kernels past 3.10.25 need this set with 'aufsv=3.10.x'
- ## JOBS ###
- # if you have a multicore processor you can set this var
- # don't set if you have a single core! >> cooked machine
- # DO NOT set it to 0 (zero) >> cooked machine
- #JOBS=-j6
- ## FATDOG Kernel ###
- # if this option is set a FatDog style kernel is produced
- # modules are split out of the kernel package and squashfs'd
- # NOTE: all modules for booting must be builtins as none go into the initrd.gz
- # Please make sure you use an appropriate DOTconfig
- # 0 is off, 1 is on, default is not set
- #FD=0
- FD=1
- ### squashfs compression ###
- # leave unset for the default of your mksquashfs binary
- # run "mksquashfs --help" to find out options from compression
- # for extra compression "-comp xz -Xbcj ia64" or "-comp xz -Xbcj x86" etc
- # Consult the mksquashfs manual for more info.
- COMP="-comp xz"
|