Hurd Useful Links


| 133 words

namelink
kernel-list-archivehttps://lists.gnu.org/archive/html/bug-hurd/
debian-list-archivehttps://lists.debian.org/debian-hurd/
irc-archivehttps://logs.guix.gnu.org/hurd/
kernel-homehttps://www.gnu.org/software/hurd/index.html
debian-homehttps://www.debian.org/ports/hurd/

refs:

namelink
chttps://en.cppreference.com/w/c
posix latesthttps://pubs.opengroup.org/onlinepubs/9799919799/
posix 2013https://pubs.opengroup.org/onlinepubs/9699919799.2013edition/
posix 2008https://pubs.opengroup.org/onlinepubs/9699919799.2008edition/
glibchttps://sourceware.org/glibc/manual/2.41/html_mono/libc.html

mailing lists / irc

nameaddress
hurdbug-hurd@gnu.org
debiandebian-hurd@lists.debian.org
irclibrechat #hurd

*_MAX patch

See this

git repos

Clone all at once:

1
2
3
4
5
6
7
8
9
# glibc is too big, so not clone here.
for repo in hurd gnumach mig web; do
  if [ ! -d $repo ]; then
    git clone "https://crupest.life/git/hurd/$repo.git"
    pushd $repo
    git remote add upstream "https://git.savannah.gnu.org/git/hurd/$repo.git"
    popd
  fi
done