FreeBSD on X1 Carbon (Gen 6): Difference between revisions

From Run Your Own
Jump to navigation Jump to search
Line 4: Line 4:


== Tracking FreeBSD-STABLE 12 ==
== Tracking FreeBSD-STABLE 12 ==
=== /etc/src/conf Source build options ===
=== /etc/src/conf - source build options ===
<pre>
<pre>
WITHOUT_ASSERT_DEBUG=true # compile without the assert(3) checks.
WITHOUT_ASSERT_DEBUG=true # compile without the assert(3) checks.
Line 10: Line 10:
WITHOUT_BSNMP=true # Set to not build or install bsnmpd(1)
WITHOUT_BSNMP=true # Set to not build or install bsnmpd(1)
WITHOUT_CALENDAR=true # Set to not build calendar(1)
WITHOUT_CALENDAR=true # Set to not build calendar(1)
WITH_CCACHE_BUILD=true
#WITHOUT_LIB32=true
#WITHOUT_LIB32=true
WITHOUT_TESTS=true # Set to not build nor install the FreeBSD Test Suite
WITHOUT_TESTS=true # Set to not build nor install the FreeBSD Test Suite
Line 22: Line 21:
</pre>
</pre>


=== /etc/make.conf - system build information ===
<pre>
CPUTYPE?=skylake          # no kabylake yet?
</pre>


=== FreeBSD source and installation ===
  rm -rf /usr/src/*
  rm -rf /usr/src/*
  svnlite checkout https://svn0.eu.FreeBSD.org/base/stable/12 /usr/src
  svnlite checkout https://svn0.eu.FreeBSD.org/base/stable/12 /usr/src

Revision as of 10:46, 20 November 2018

Base Installation

  • grab ISO
  • encryption info goes here

Tracking FreeBSD-STABLE 12

/etc/src/conf - source build options

WITHOUT_ASSERT_DEBUG=true # compile without the assert(3) checks.
WITHOUT_AUDIT=true # Set to not build audit support into system programs.
WITHOUT_BSNMP=true # Set to not build or install bsnmpd(1)
WITHOUT_CALENDAR=true # Set to not build calendar(1)
#WITHOUT_LIB32=true
WITHOUT_TESTS=true # Set to not build nor install the FreeBSD Test Suite
WITHOUT_INET6=true
#WITHOUT_CROSS_COMPILER=true
#WITHOUT_KERBEROS=true # some pkgs do not like to have it without
WITHOUT_MAIL=true
WITHOUT_QUOTAS=true
WITHOUT_DEBUG_FILES=true
WITH_SVN=true # Set to install svnlite(1) as svn(1).

/etc/make.conf - system build information

CPUTYPE?=skylake           # no kabylake yet?

FreeBSD source and installation

rm -rf /usr/src/*
svnlite checkout https://svn0.eu.FreeBSD.org/base/stable/12 /usr/src

References