<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test/usr.sbin/makefs/cd9660.c, branch main</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test/atom?h=main</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/'/>
<updated>2018-03-31T15:04:41Z</updated>
<entry>
<title>Synchronise with NetBSD's version of EFI handling for El Torito images.</title>
<updated>2018-03-31T15:04:41Z</updated>
<author>
<name>Benno Rice</name>
<email>benno@FreeBSD.org</email>
</author>
<published>2018-03-31T15:04:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=756e49c3039a69d8cd0224d41d9b84f911223ee3'/>
<id>urn:sha1:756e49c3039a69d8cd0224d41d9b84f911223ee3</id>
<content type='text'>
When I implemented my EFI support I failed to check if the upstream version
of makefs in NetBSD had done the same. Override my version with theirs to
make it easier to stay in sync with them in the future.

Reviewed by:	imp, mav
Obtained from:	NetBSD
MFC after:	1 week
Sponsored by:	iXsystems, Inc.
Differential Revision:	https://reviews.freebsd.org/D14913
</content>
</entry>
<entry>
<title>userland: Fix several typos and minor errors</title>
<updated>2017-12-27T03:23:01Z</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2017-12-27T03:23:01Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=dae3a64fb967bbff627efc2e8cdd127c6b93d902'/>
<id>urn:sha1:dae3a64fb967bbff627efc2e8cdd127c6b93d902</id>
<content type='text'>
- duplicate words
- typos
- references to old versions of FreeBSD

Reviewed by:	imp, benno
</content>
</entry>
<entry>
<title>various: general adoption of SPDX licensing ID tags.</title>
<updated>2017-11-27T15:37:16Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2017-11-27T15:37:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=1de7b4b805ddbf2429da511c053686ac4591ed89'/>
<id>urn:sha1:1de7b4b805ddbf2429da511c053686ac4591ed89</id>
<content type='text'>
Mainly focus on files that use BSD 2-Clause license, however the tool I
was using misidentified many licenses so this was mostly a manual - error
prone - task.

The Software Package Data Exchange (SPDX) group provides a specification
to make it easier for automated tools to detect and summarize well known
opensource licenses. We are gradually adopting the specification, noting
that the tags are considered only advisory and do not, in any way,
superceed or replace the license texts.

No functional change intended.
</content>
</entry>
<entry>
<title>makefs: clean up warnings</title>
<updated>2017-05-03T14:57:04Z</updated>
<author>
<name>Ed Maste</name>
<email>emaste@FreeBSD.org</email>
</author>
<published>2017-05-03T14:57:04Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=9e96f90b50beecbcc1924f34c6d40f75d39ade1d'/>
<id>urn:sha1:9e96f90b50beecbcc1924f34c6d40f75d39ade1d</id>
<content type='text'>
- make functions and variables static where appropriate
- use const char * where appropriate
- remove unused variables

Sponsored by:	The FreeBSD Foundation
</content>
</entry>
<entry>
<title>makefs: remove unused cd9660_defaults_set global</title>
<updated>2017-05-01T00:53:07Z</updated>
<author>
<name>Ed Maste</name>
<email>emaste@FreeBSD.org</email>
</author>
<published>2017-05-01T00:53:07Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=e651540a68b30afba3d2a39f383dc0da1caed7a7'/>
<id>urn:sha1:e651540a68b30afba3d2a39f383dc0da1caed7a7</id>
<content type='text'>
Sponsored by:	The FreeBSD Foundation
</content>
</entry>
<entry>
<title>makefs: Sync with NetBSD (fix unused variable warnings)</title>
<updated>2017-04-07T02:31:55Z</updated>
<author>
<name>Ed Maste</name>
<email>emaste@FreeBSD.org</email>
</author>
<published>2017-04-07T02:31:55Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=37ca9f42fd08a58ad4c6f845e454d540a654256a'/>
<id>urn:sha1:37ca9f42fd08a58ad4c6f845e454d540a654256a</id>
<content type='text'>
NetBSD revs:
cd9660.c		1.45
cd9660/cd9660_write.c	1.17

Obtained from:	NetBSD
</content>
</entry>
<entry>
<title>makefs: use emalloc and friends</title>
<updated>2017-04-06T16:18:42Z</updated>
<author>
<name>Ed Maste</name>
<email>emaste@FreeBSD.org</email>
</author>
<published>2017-04-06T16:18:42Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=5f5598b13024ac848af2f3de699e06bbcbcf29dc'/>
<id>urn:sha1:5f5598b13024ac848af2f3de699e06bbcbcf29dc</id>
<content type='text'>
The emalloc set of error-checking memory allocation routines were added
to libnetbsd in r316572. Use them in makefs to reduce differences with
NetBSD.

NetBSD revs:
cd9660.c			1.39
ffs.c				1.56
makefs.c			1.42
walk.c				1.27
cd9660/cd9660_archimedes.c	1.2
cd9660/cd9660_eltorito.c	1.20
cd9660/cd9660_write.c		1.16
cd9660/iso9660_rrip.c		1.12
ffs/buf.c			1.17
ffs/mkfs.c			1.26

Obtained from:	NetBSD
</content>
</entry>
<entry>
<title>makefs: sync with NetBSD</title>
<updated>2017-03-29T20:49:41Z</updated>
<author>
<name>Ed Maste</name>
<email>emaste@FreeBSD.org</email>
</author>
<published>2017-03-29T20:49:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=cfa6282553f2a6841da7e8d2ec6b5a6ae7928010'/>
<id>urn:sha1:cfa6282553f2a6841da7e8d2ec6b5a6ae7928010</id>
<content type='text'>
This is a collection of minor changes as diff reduction against NetBSD.

NetBSD revs:
cd9660.c		1.39
cd9660.h		1.19
makefs.c		1.34

Obtained from:	NetBSD
Sponsored by:	The FreeBSD Foundation
</content>
</entry>
<entry>
<title>makefs: improve error messages</title>
<updated>2017-03-15T18:14:54Z</updated>
<author>
<name>Ed Maste</name>
<email>emaste@FreeBSD.org</email>
</author>
<published>2017-03-15T18:14:54Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=870952f562c383da6b10667f217df7eb63f9467a'/>
<id>urn:sha1:870952f562c383da6b10667f217df7eb63f9467a</id>
<content type='text'>
- remove \n
- use __func__
- err adds the error string itself

NetBSD revs:
cd9660.c	1.48 1.49
ffs/buf.c	1.21
ffs/mkfs.c	1.27

Obtained from:	NetBSD
</content>
</entry>
<entry>
<title>makefs: use 'm' for cd9660 allow-multidot, per NetBSD</title>
<updated>2017-03-15T16:16:30Z</updated>
<author>
<name>Ed Maste</name>
<email>emaste@FreeBSD.org</email>
</author>
<published>2017-03-15T16:16:30Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=babca35cb2e1de7f9e8ed5c4c300ea7fb0caca88'/>
<id>urn:sha1:babca35cb2e1de7f9e8ed5c4c300ea7fb0caca88</id>
<content type='text'>
NetBSD revisions:
cd9660.c	1.55

Obtained from:	NetBSD
</content>
</entry>
</feed>
