<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/lib, branch zfs-0.5.1</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=zfs-0.5.1</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=zfs-0.5.1'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2010-09-10T19:16:43Z</updated>
<entry>
<title>Exclude atomic.S source from dist rules</title>
<updated>2010-09-10T19:16:43Z</updated>
<author>
<name>Brian Behlendorf</name>
<email>behlendorf1@llnl.gov</email>
</author>
<published>2010-09-10T18:43:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=d9400aede6ad32dde7021c739f0e8c7b570432af'/>
<id>urn:sha1:d9400aede6ad32dde7021c739f0e8c7b570432af</id>
<content type='text'>
The zfs package supports the option --with-config=srpm which
is used to bootstrap configure to allow the 'make srpm' target
to work.  This has the advantage of allowing creation of source
rpms without having all your -devel packages installed.  This
source package can then be feed back in to an automated build
farm which only installs the required packages listed by the
srpm.  This ensures that all proper dependencies are expressed
by the source package, because if they are not you will get
configure/build failures.

The trouble here is that --with-config=srpm prevents the
architecture check from running resulting in TARGET_ASM_DIR
being set to the default asm-generic.  The 'make dist' rule
then fails because there is no asm-generic/atomic.S file
because it is generated at build time.  To handle this I
have added an empty file asm-generic/atomic.S simply as a
place holder for 'make dist'.
</content>
</entry>
<entry>
<title>Fix "format not a string literal" warning</title>
<updated>2010-09-09T04:39:28Z</updated>
<author>
<name>Brian Behlendorf</name>
<email>behlendorf1@llnl.gov</email>
</author>
<published>2010-09-09T04:39:28Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8ec8000f95d60daa51f670fd46930a2cec6accae'/>
<id>urn:sha1:8ec8000f95d60daa51f670fd46930a2cec6accae</id>
<content type='text'>
Under Ubuntu 10.04 the default compiler flags include -Wformat
and -Wformat-security which cause the above warning.  In particular,
cases where "%s" was forgotten as part of the format specifier.

https://wiki.ubuntu.com/CompilerFlags
</content>
</entry>
<entry>
<title>Support custom build directories and move includes</title>
<updated>2010-09-08T19:38:56Z</updated>
<author>
<name>Brian Behlendorf</name>
<email>behlendorf1@llnl.gov</email>
</author>
<published>2010-09-04T20:26:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=6283f55ea1b91e680386388c17d14b89e344fa8d'/>
<id>urn:sha1:6283f55ea1b91e680386388c17d14b89e344fa8d</id>
<content type='text'>
One of the neat tricks an autoconf style project is capable of
is allow configurion/building in a directory other than the
source directory.  The major advantage to this is that you can
build the project various different ways while making changes
in a single source tree.

For example, this project is designed to work on various different
Linux distributions each of which work slightly differently.  This
means that changes need to verified on each of those supported
distributions perferably before the change is committed to the
public git repo.

Using nfs and custom build directories makes this much easier.
I now have a single source tree in nfs mounted on several different
systems each running a supported distribution.  When I make a
change to the source base I suspect may break things I can
concurrently build from the same source on all the systems each
in their own subdirectory.

wget -c http://github.com/downloads/behlendorf/zfs/zfs-x.y.z.tar.gz
tar -xzf zfs-x.y.z.tar.gz
cd zfs-x-y-z

------------------------- run concurrently ----------------------
&lt;ubuntu system&gt;  &lt;fedora system&gt;  &lt;debian system&gt;  &lt;rhel6 system&gt;
mkdir ubuntu     mkdir fedora     mkdir debian     mkdir rhel6
cd ubuntu        cd fedora        cd debian        cd rhel6
../configure     ../configure     ../configure     ../configure
make             make             make             make
make check       make check       make check       make check

This change also moves many of the include headers from individual
incude/sys directories under the modules directory in to a single
top level include directory.  This has the advantage of making
the build rules cleaner and logically it makes a bit more sense.
</content>
</entry>
<entry>
<title>Minor packaging fixes</title>
<updated>2010-09-01T22:42:32Z</updated>
<author>
<name>Brian Behlendorf</name>
<email>behlendorf1@llnl.gov</email>
</author>
<published>2010-09-01T19:54:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=1ae93745d2eadcdfdf1ab677180f28922e7c7d26'/>
<id>urn:sha1:1ae93745d2eadcdfdf1ab677180f28922e7c7d26</id>
<content type='text'>
The GIT file was removed from the tree because I have stopped
using TopGit.  Because of this is must also be removed from
the top level Makefile.am as will as the zfs.spec.in file
which referenced it.

Fix type in lib/libzpool/Makefile.am which was preventing
the needed zrlock.h header from being included by 'make dist'.
I simply had the name wrong in the Makefile.am.

Regenerated autogen.sh build products.

Signed-off-by: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;
</content>
</entry>
<entry>
<title>Add initial autoconf products</title>
<updated>2010-08-31T20:42:02Z</updated>
<author>
<name>Brian Behlendorf</name>
<email>behlendorf1@llnl.gov</email>
</author>
<published>2010-08-26T19:28:14Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=e70e591c51177d202396b1b0c5de04a7664d45cf'/>
<id>urn:sha1:e70e591c51177d202396b1b0c5de04a7664d45cf</id>
<content type='text'>
Add the initial products from autogen.sh.  These products will
be updated incrementally after this point as development occurs.

Signed-off-by: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;
</content>
</entry>
<entry>
<title>Add linux user util support</title>
<updated>2010-08-31T20:42:01Z</updated>
<author>
<name>Brian Behlendorf</name>
<email>behlendorf1@llnl.gov</email>
</author>
<published>2010-08-26T18:57:29Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=9b020fd97a3dc449a94baec028b30b1fe3c2d5bc'/>
<id>urn:sha1:9b020fd97a3dc449a94baec028b30b1fe3c2d5bc</id>
<content type='text'>
This topic branch contains required changes to the user space
utilities to allow them to integrate cleanly with Linux.

Signed-off-by: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;
</content>
</entry>
<entry>
<title>Add linux user disk support</title>
<updated>2010-08-31T20:42:00Z</updated>
<author>
<name>Brian Behlendorf</name>
<email>behlendorf1@llnl.gov</email>
</author>
<published>2010-08-26T18:56:53Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=d603ed6c278f9c25b17ba8e75e9bce6e5d715ac0'/>
<id>urn:sha1:d603ed6c278f9c25b17ba8e75e9bce6e5d715ac0</id>
<content type='text'>
This topic branch contains all the changes needed to integrate the user
side zfs tools with Linux style devices.  Primarily this includes fixing
up the Solaris libefi library to be Linux friendly, and integrating with
the libblkid library which is provided by e2fsprogs.

Signed-off-by: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;
</content>
</entry>
<entry>
<title>Add linux unused code tracking</title>
<updated>2010-08-31T20:42:00Z</updated>
<author>
<name>Brian Behlendorf</name>
<email>behlendorf1@llnl.gov</email>
</author>
<published>2010-08-26T18:55:32Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=f1fb119f6bb0c3185ec88912e4488fdd9ec08ab2'/>
<id>urn:sha1:f1fb119f6bb0c3185ec88912e4488fdd9ec08ab2</id>
<content type='text'>
Track various large hunks which have been dropped simply
because they are not relevant to this port.

Signed-off-by: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;
</content>
</entry>
<entry>
<title>Add linux topology support</title>
<updated>2010-08-31T20:42:00Z</updated>
<author>
<name>Brian Behlendorf</name>
<email>behlendorf1@llnl.gov</email>
</author>
<published>2010-08-26T18:55:19Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=6b003d7cda153c58bb5faab62c5e5a7aab780715'/>
<id>urn:sha1:6b003d7cda153c58bb5faab62c5e5a7aab780715</id>
<content type='text'>
Solaris recently introduced the idea of drive topology because
where a drive is located does matter.  I have already handled
this with udev/blkid integration under Linux so I'm hopeful
this case can simply be removed but for now I've just stubbed
out what is needed in libspl and commented out the rest here.

Signed-off-by: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;
</content>
</entry>
<entry>
<title>Add linux compatibility</title>
<updated>2010-08-31T20:41:59Z</updated>
<author>
<name>Brian Behlendorf</name>
<email>behlendorf1@llnl.gov</email>
</author>
<published>2010-08-26T18:54:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=054bc00b4c0c257f6baf6d7145b270c7283fe51e'/>
<id>urn:sha1:054bc00b4c0c257f6baf6d7145b270c7283fe51e</id>
<content type='text'>
Resolve minor Linux compatibility issues.

Signed-off-by: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;
</content>
</entry>
</feed>
