<feed xmlns='http://www.w3.org/2005/Atom'>
<title>teythoon/hurd.git/libstore, branch master</title>
<subtitle>Personal Hurd development repository</subtitle>
<id>https://darnassus.sceen.net/cgit/teythoon/hurd.git/atom?h=master</id>
<link rel='self' href='https://darnassus.sceen.net/cgit/teythoon/hurd.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://darnassus.sceen.net/cgit/teythoon/hurd.git/'/>
<updated>2016-05-16T14:59:09Z</updated>
<entry>
<title>Complete changes to use -L instead of -Wl,-rpath-link</title>
<updated>2016-05-16T14:59:09Z</updated>
<author>
<name>Thomas Schwinge</name>
<email>thomas@codesourcery.com</email>
</author>
<published>2016-05-16T14:49:30Z</published>
<link rel='alternate' type='text/html' href='https://darnassus.sceen.net/cgit/teythoon/hurd.git/commit/?id=34071b357d821cc6285ef85d600dfa842252949c'/>
<id>urn:sha1:34071b357d821cc6285ef85d600dfa842252949c</id>
<content type='text'>
Changes missing from commit c9c29eb890527fe68900e4a0af7c2df9a9fa5b40.

* console-client/Makefile (%.so.$(hurd-version)): Use $(lpath) instead of
$(rpath)
* libstore/Makefile (libstore_%.so.$(hurd-version)): Likewise.
</content>
</entry>
<entry>
<title>fix compiler warnings in hurd/libstore</title>
<updated>2015-12-29T22:12:42Z</updated>
<author>
<name>Flavio Cruz</name>
<email>flaviocruz@gmail.com</email>
</author>
<published>2015-12-29T22:08:32Z</published>
<link rel='alternate' type='text/html' href='https://darnassus.sceen.net/cgit/teythoon/hurd.git/commit/?id=b290ced29400ff6276c8438129236f99f50c3ff9'/>
<id>urn:sha1:b290ced29400ff6276c8438129236f99f50c3ff9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>lib*: Fix typos in comments (found by codespell)</title>
<updated>2015-01-03T12:07:30Z</updated>
<author>
<name>Stefan Weil</name>
<email>sw@weilnetz.de</email>
</author>
<published>2015-01-03T09:16:10Z</published>
<link rel='alternate' type='text/html' href='https://darnassus.sceen.net/cgit/teythoon/hurd.git/commit/?id=8f5e94f48e7668e3c5dcaa1cde1b8f591c05bb58'/>
<id>urn:sha1:8f5e94f48e7668e3c5dcaa1cde1b8f591c05bb58</id>
<content type='text'>
Signed-off-by: Stefan Weil &lt;sw@weilnetz.de&gt;
</content>
</entry>
<entry>
<title>Replace `bcopy' with `memcpy' or `memmove' as appropriate</title>
<updated>2014-12-10T15:09:53Z</updated>
<author>
<name>Justus Winter</name>
<email>4winter@informatik.uni-hamburg.de</email>
</author>
<published>2014-12-01T23:20:51Z</published>
<link rel='alternate' type='text/html' href='https://darnassus.sceen.net/cgit/teythoon/hurd.git/commit/?id=82a87d043498eeacb7e4f3edc85d1b7c424ea853'/>
<id>urn:sha1:82a87d043498eeacb7e4f3edc85d1b7c424ea853</id>
<content type='text'>
* ext2fs/inode.c: Replace `bcopy' with `memcpy' or `memmove' as
appropriate.
* ext2fs/pager.c: Likewise.
* isofs/lookup.c: Likewise.
* isofs/main.c: Likewise.
* isofs/rr.c: Likewise.
* libdiskfs/file-get-trans.c: Likewise.
* libiohelp/return-buffer.c: Likewise.
* libpager/pagemap.c: Likewise.
* libpipe/pq.c: Likewise.
* libpipe/pq.h: Likewise.
* libstore/unzipstore.c: Likewise.
* mach-defpager/default_pager.c: Likewise.
* pfinet/ethernet.c: Likewise.
* pfinet/tunnel.c: Likewise.
* storeio/dev.c: Likewise.
</content>
</entry>
<entry>
<title>Replace `bzero' with `memset'</title>
<updated>2014-12-10T12:45:05Z</updated>
<author>
<name>Justus Winter</name>
<email>4winter@informatik.uni-hamburg.de</email>
</author>
<published>2014-12-01T22:55:25Z</published>
<link rel='alternate' type='text/html' href='https://darnassus.sceen.net/cgit/teythoon/hurd.git/commit/?id=0a4ada8d40fb687a659161ff7e0d1d0994264402'/>
<id>urn:sha1:0a4ada8d40fb687a659161ff7e0d1d0994264402</id>
<content type='text'>
For reference, this patch was created using the following semantic
patch, and then manually applying the change in all functions
containing nested functions, as those are not supported by Coccinelle.

@@
expression A, B;
@@

- bzero (A, B)
+ memset (A, 0, B)

* auth/auth.c: Replace `bzero' with `memset'.
* boot/boot.c: Likewise.
* defpager/defpager.c: Likewise.
* exec/exec.c: Likewise.  Also, drop `safe_bzero' and just use
`hurd_safe_memset' directly.
* ext2fs/ext2fs.c: Likewise.
* ext2fs/getblk.c: Likewise.
* ext2fs/pager.c: Likewise.
* fatfs/pager.c: Likewise.
* ftpfs/dir.c: Likewise.
* ftpfs/netfs.c: Likewise.
* isofs/inode.c: Likewise.
* isofs/pager.c: Likewise.
* libdiskfs/file-getfh.c: Likewise.
* libdiskfs/file-statfs.c: Likewise.
* libfshelp/fetch-root.c: Likewise.
* libfshelp/start-translator.c: Likewise.
* libftpconn/create.c: Likewise.
* libftpconn/open.c: Likewise.
* libftpconn/unix.c: Likewise.
* libpipe/pipe.c: Likewise.
* libps/procstat.c: Likewise.
* libps/spec.c: Likewise.
* libshouldbeinlibc/cacheq.c: Likewise.
* libshouldbeinlibc/idvec.c: Likewise.
* libshouldbeinlibc/ugids.c: Likewise.
* libstore/argp.c: Likewise.
* libstore/enc.c: Likewise.
* libstore/kids.c: Likewise.
* libthreads/alpha/thread.c: Likewise.
* libtreefs/fsys.c: Likewise.
* libtrivfs/file-statfs.c: Likewise.
* mach-defpager/default_pager.c: Likewise.
* pfinet/glue-include/asm/uaccess.h: Likewise.
* pfinet/io-ops.c: Likewise.
* pfinet/options.c: Likewise.
* pfinet/socket.c: Likewise.
* pfinet/timer-emul.c: Likewise.
* pflocal/io.c: Likewise.
* startup/startup.c: Likewise.
* storeio/storeio.c: Likewise.
* sutils/fstab.c: Likewise.
* usermux/usermux.c: Likewise.
* utils/fakeauth.c: Likewise.
* utils/frobauth.c: Likewise.
* utils/login.c: Likewise.
* utils/x.c: Likewise.
</content>
</entry>
<entry>
<title>Deal with odd kernel behavior</title>
<updated>2014-11-09T21:38:22Z</updated>
<author>
<name>Samuel Thibault</name>
<email>samuel.thibault@ens-lyon.org</email>
</author>
<published>2014-11-09T21:38:22Z</published>
<link rel='alternate' type='text/html' href='https://darnassus.sceen.net/cgit/teythoon/hurd.git/commit/?id=84172a2e26fd81c1c39b6301b003cc89b97ee75c'/>
<id>urn:sha1:84172a2e26fd81c1c39b6301b003cc89b97ee75c</id>
<content type='text'>
Some versions of gnumach actually take address as a mapping hint, and would fail
if the hint is bogus.  Make sure to pass 0 for those versions.

* libstore/memobj.c (memobj_read): Make sure to set *buf to 0 before
calling vm_map.
</content>
</entry>
<entry>
<title>libstore: provide function declaration until available upstream</title>
<updated>2014-05-30T07:39:36Z</updated>
<author>
<name>Justus Winter</name>
<email>4winter@informatik.uni-hamburg.de</email>
</author>
<published>2014-05-21T11:30:24Z</published>
<link rel='alternate' type='text/html' href='https://darnassus.sceen.net/cgit/teythoon/hurd.git/commit/?id=73f5884a591f1e2efef948d108927327a054d97c'/>
<id>urn:sha1:73f5884a591f1e2efef948d108927327a054d97c</id>
<content type='text'>
Until the Hurd specific header is available, provide a local
declaration of ped_device_new_from_store.

* libstore/part.c (ped_device_new_from_store): New declaration.
</content>
</entry>
<entry>
<title>Make bz2 and gz support optional</title>
<updated>2014-03-20T09:44:20Z</updated>
<author>
<name>Gabriele Giacone</name>
<email>1o5g4r8o@gmail.com</email>
</author>
<published>2014-03-20T09:44:20Z</published>
<link rel='alternate' type='text/html' href='https://darnassus.sceen.net/cgit/teythoon/hurd.git/commit/?id=7b054153eccbf0843fbbfb131855f56ea5c695e0'/>
<id>urn:sha1:7b054153eccbf0843fbbfb131855f56ea5c695e0</id>
<content type='text'>
* config.make.in (HAVE_LIBBZ2, HAVE_LIBZ): New variables.
* configure.ac (--without-libbz2, --without-libz): New options.
* ext2fs/Makefile (OTHERLIBS): Make -lbz2 and -lz optional.
* fatfs/Makefile (OTHERLIBS): Likewise.
* isofs/Makefile (OTHERLIBS): Likewise.
* libstore/Makefile (maybe_part): Remove variable.
(store-types): Add part, bunzip2 and gunzip support conditionnally.
(LDLIBS): Make -lbz2 and -lz optional.
(OBJS): Add GUNZIP_OBJS and BUNZIP2_OBJS optional.
</content>
</entry>
<entry>
<title>libstore: fixed some pointer-sign related warnings</title>
<updated>2014-02-19T19:09:46Z</updated>
<author>
<name>Ignazio Sgalmuzzo</name>
<email>ignaker@gmail.com</email>
</author>
<published>2014-02-19T20:07:40Z</published>
<link rel='alternate' type='text/html' href='https://darnassus.sceen.net/cgit/teythoon/hurd.git/commit/?id=dd07e7f7ddb5d704599f798a8ef3d1c8a05cb9bf'/>
<id>urn:sha1:dd07e7f7ddb5d704599f798a8ef3d1c8a05cb9bf</id>
<content type='text'>
libstore/do-bunzip2.c: fixed type modifier, avoiding cast
</content>
</entry>
<entry>
<title>Add missing copyright notice</title>
<updated>2014-02-19T05:34:08Z</updated>
<author>
<name>Samuel Thibault</name>
<email>samuel.thibault@ens-lyon.org</email>
</author>
<published>2014-02-19T05:34:08Z</published>
<link rel='alternate' type='text/html' href='https://darnassus.sceen.net/cgit/teythoon/hurd.git/commit/?id=91090f8e8ef533ad39fc8060bbf1a69bcb0b5af7'/>
<id>urn:sha1:91090f8e8ef533ad39fc8060bbf1a69bcb0b5af7</id>
<content type='text'>
</content>
</entry>
</feed>
