build.conf 2.1 KB

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