<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/release/Makefile, branch stable/4</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=stable%2F4</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=stable%2F4'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2005-07-02T07:22:12Z</updated>
<entry>
<title>Populate /R/ftp/ports explicitly and copy this to /R/cdrom/disc1/ports</title>
<updated>2005-07-02T07:22:12Z</updated>
<author>
<name>Don Lewis</name>
<email>truckman@FreeBSD.org</email>
</author>
<published>2005-07-02T07:22:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=124b54909894f8148e25d011cadb55a49bb5c1a0'/>
<id>urn:sha1:124b54909894f8148e25d011cadb55a49bb5c1a0</id>
<content type='text'>
instead of attempting the reverse, because the ftp.1 target is executed
before the cdrom.1 target, which is optional.  This has been broken
ever since the order of the targets was swapped and cdrom.1 was made
optional, which happened a very long time ago.
</content>
</entry>
<entry>
<title>Change version to 4.11 in preparation for RELENG_4_11 branch.</title>
<updated>2004-12-17T04:35:57Z</updated>
<author>
<name>Ken Smith</name>
<email>kensmith@FreeBSD.org</email>
</author>
<published>2004-12-17T04:35:57Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=dd175fc8c47cfceb8c68aa74f213c2178b3037d8'/>
<id>urn:sha1:dd175fc8c47cfceb8c68aa74f213c2178b3037d8</id>
<content type='text'>
Approved by:	re (implicit)
</content>
</entry>
<entry>
<title>MF RELENG_4_10: Update for 4.10.</title>
<updated>2004-06-16T07:57:33Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2004-06-16T07:57:33Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=e76ae7c7918b977e09071d6213d8a70e123f448d'/>
<id>urn:sha1:e76ae7c7918b977e09071d6213d8a70e123f448d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MFC: Add URLS_ABSOLUTE=YES into the doc.1 target.</title>
<updated>2004-05-05T13:11:26Z</updated>
<author>
<name>Hiroki Sato</name>
<email>hrs@FreeBSD.org</email>
</author>
<published>2004-05-05T13:11:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=d127946b2f0df09f86235b5160ab00037fe98519'/>
<id>urn:sha1:d127946b2f0df09f86235b5160ab00037fe98519</id>
<content type='text'>
</content>
</entry>
<entry>
<title>This allows for tweaking the name put in the label on the CD's when using the</title>
<updated>2004-04-30T04:17:41Z</updated>
<author>
<name>Ken Smith</name>
<email>kensmith@FreeBSD.org</email>
</author>
<published>2004-04-30T04:17:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=734f6bd587e1bc8496dbb126c021e6c9198c4397'/>
<id>urn:sha1:734f6bd587e1bc8496dbb126c021e6c9198c4397</id>
<content type='text'>
Makefile to build the ISO's.  Previous 4.X releases had a non-generic name
for the labels but were put together 'manually' instead of using the Makefile.

This will be insta-MFC'ed...
</content>
</entry>
<entry>
<title>Bump BASE variable definition for 4.9.</title>
<updated>2003-11-02T07:07:08Z</updated>
<author>
<name>Bruce A. Mah</name>
<email>bmah@FreeBSD.org</email>
</author>
<published>2003-11-02T07:07:08Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=cff2f89135db720ec3452eda3d1096cab0ba0e26'/>
<id>urn:sha1:cff2f89135db720ec3452eda3d1096cab0ba0e26</id>
<content type='text'>
Pointed out by:	Kent Hauser &lt;kent.hauser@verizon.net&gt;
</content>
</entry>
<entry>
<title>Fix (one of) 4.9-RELEASE release breaker, "Loading kernel modules while</title>
<updated>2003-10-11T08:10:33Z</updated>
<author>
<name>Makoto Matsushita</name>
<email>matusita@FreeBSD.org</email>
</author>
<published>2003-10-11T08:10:33Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=7886bc6980c1f59bd282c60f903e5e05606b7793'/>
<id>urn:sha1:7886bc6980c1f59bd282c60f903e5e05606b7793</id>
<content type='text'>
installation phase sometimes causes an error" bug.  It also includes
"there's an error while loading firewire modules" bug.

Since the results of readdir(3)'s whims, either sbp.ko or if_fwe.ko is
picked up for load BEFORE firewire.ko.  Unfortunately module_path is
not properly set, kldload(2) cannot find kernel modules, firewire.ko,
which is required to load sbp.ko/if_fwe.ko.  This is why you'll see
"loading failed" message.

Actually these are mostly comes from following commits on the HEAD:
	src/release/Makefile rev 1.721
	src/usr.sbin/sysinstall/modules.c rev 1.5

Approved by:	murray (as of re@, pre-approved)
</content>
</entry>
<entry>
<title>MFC: r1.773 - set BOOTABLE flag in all !NOCDROM cases.</title>
<updated>2003-05-10T23:01:29Z</updated>
<author>
<name>Murray Stokely</name>
<email>murray@FreeBSD.org</email>
</author>
<published>2003-05-10T23:01:29Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=f1df00b7099a7728c0c4cf4eb9cf861c504c1625'/>
<id>urn:sha1:f1df00b7099a7728c0c4cf4eb9cf861c504c1625</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MFC: r1.728 - Allow a person to specify NOCDROM to skip the cdrom.1</title>
<updated>2003-05-05T05:08:37Z</updated>
<author>
<name>Murray Stokely</name>
<email>murray@FreeBSD.org</email>
</author>
<published>2003-05-05T05:08:37Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=ec4cc479c4dbe1c46239636a383d1c94f6fe509f'/>
<id>urn:sha1:ec4cc479c4dbe1c46239636a383d1c94f6fe509f</id>
<content type='text'>
target during a release build.
</content>
</entry>
<entry>
<title>Fixed spelling of automatic snapshots' names to be 4.8-STABLE.</title>
<updated>2003-04-15T14:40:55Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2003-04-15T14:40:55Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=7ab87fbcf1d41daae25fe3847b9d107f275a8bbe'/>
<id>urn:sha1:7ab87fbcf1d41daae25fe3847b9d107f275a8bbe</id>
<content type='text'>
Submitted by:	"Igor B. Bykhalo" &lt;goshik@binep.ac.ru&gt;
</content>
</entry>
</feed>
