The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Make.conf"
Threesixes (talk | contribs) m (add sauce, needs much more sauce) |
Threesixes (talk | contribs) m (fix tt and add some video card goodies....) |
||
Line 3: | Line 3: | ||
== Where does this file reside? == | == Where does this file reside? == | ||
The < | The <code>make.conf</code> file is found at <code>/etc/portage/make.conf</code> and <code>/etc/make.conf</code> though <code>/etc/make.conf</code> is its deprecated location. | ||
to edit: | to edit: | ||
Line 22: | Line 22: | ||
* RUBY_TARGETS="ruby21" | * RUBY_TARGETS="ruby21" | ||
* ACCEPT_LICENSE="*" | * ACCEPT_LICENSE="*" | ||
== Video_Cards == | |||
several options for the video cards variable exist. | |||
for [[Intel]]: | |||
VIDEO_CARDS="intel" | |||
VIDEO_CARDS="intel i915" | |||
VIDEO_CARDS="intel i965" | |||
for [[Ati|Ati/Amd]]: | |||
VIDEO_CARDS="radeon" | |||
VIDEO_CARDS="fglrx" | |||
for [[Nvidia]]: | |||
VIDEO_CARDS="nouveau" | |||
VIDEO_CARDS="nvidia" | |||
[[Category:System]] | [[Category:System]] |
Revision as of 22:33, September 22, 2014
What is the make.conf file? What is its purpose?
Make.conf is portage's and Funtoo's main configuration file. It contains many variables that define how a package will installed in a Funtoo system. You can customize portage internal variables, such as, portage tree location, sources tarball location, overlays, to name a few. You can customize hardware specs, such as TMPFS, disk limits, GCC compilation flags to achieve best performance, etc. A great deal of this customization is done through the make.conf file. This page will attempt to explain the uses of the make.conf file, different variables that can be added to it, and their uses.
Where does this file reside?
The make.conf
file is found at /etc/portage/make.conf
and /etc/make.conf
though /etc/make.conf
is its deprecated location.
to edit:
root # nano /etc/portage/make.conf
Variables
- CFLAGS="-march=amdfam10 -O2 -pipe"
- CXXFLAGS="-march=amdfam10 -O2 -pipe"
- INPUT_DEVICES="evdev"
- VIDEO_CARDS="vesa nouveau"
- MAKEOPTS="-j 2"
- USE="mmx sse"
- PYTHON_ABIS="2.7 3.3"
- PYTHON_TARGETS="2.7 3.3"
- RUBY_TARGETS="ruby21"
- ACCEPT_LICENSE="*"
Video_Cards
several options for the video cards variable exist.
for Intel: VIDEO_CARDS="intel" VIDEO_CARDS="intel i915" VIDEO_CARDS="intel i965"
for Ati/Amd: VIDEO_CARDS="radeon" VIDEO_CARDS="fglrx"
for Nvidia: VIDEO_CARDS="nouveau" VIDEO_CARDS="nvidia"