Advertisement
Guest User

gentoo-on-rpi3-64 portage make.conf

a guest
Sep 21st, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Simple make.conf for 64-bit Raspberry Pi 3
  2.  
  3. # NB most settings now taken from the default/linux/arm64/13.0/desktop/rpi3
  4. # profile
  5. # See /usr/local/portage/rpi3/profiles/targets/rpi3/<...>
  6. # You can override as desired in this file (/etc/portage/make.conf)
  7. # (and via the other /etc/portage/<...> subdirectory entries)
  8.  
  9. # Some scripts looks for PORTDIR in make.conf explicitly
  10. PORTDIR="/usr/portage"
  11.  
  12. # for use when compiling locally
  13. MAKEOPTS="-j5 -l4"
  14. EMERGE_DEFAULT_OPTS="--jobs=5 --load-average=4"
  15. # for use with compiling with distcc only
  16. #MAKEOPTS="-j8 -l4"
  17. #EMERGE_DEFAULT_OPTS="--jobs=5 --load-average=4"
  18.  
  19. # per https://wiki.gentoo.org/wiki/Raspberry_Pi_VC4
  20. VIDEO_CARDS="fbdev vc4"
  21. INPUT_DEVICES="evdev synaptics"
  22.  
  23. # use (and verify) signed package snapshots
  24. FEATURES="${FEATURES} webrsync-gpg"
  25. PORTAGE_GPG_DIR="/var/lib/gentoo/gkeys/keyrings/gentoo/release"
  26.  
  27. # uncomment to build binary packages as a byproduct of each emerge
  28. # (these are useful backups) in /usr/portage/packages
  29. FEATURES="${FEATURES} buildpkg"
  30.  
  31. # uncomment to disribute emerges, where possible, using distcc
  32. #FEATURES="${FEATURES} distcc distcc-pump"
  33.  
  34. # uncomment to use binary packages from PORTAGE_BINHOST, where available,
  35. # (and build normally, where not)
  36. FEATURES="${FEATURES} getbinpkg"
  37. PORTAGE_BINHOST="https://isshoni.org/pi64pie"
  38.  
  39. GENTOO_MIRRORS="http://gentoo.gossamerhost.com rsync://gentoo.gossamerhost.com/gentoo-distfiles/ ftp://mirrors.tera-byte.com/pub/gentoo http://gentoo.mirrors.tera-byte.com/ rsync://mirrors.tera-byte.com/gentoo ftp://mirror.csclub.uwaterloo.ca/gentoo-distfiles/ http://mirror.csclub.uwaterloo.ca/gentoo-distfiles/"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement