Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-11 | Hoist fill() up, it's AF independent; no obj change. | Florian Obser | |
Diff between ping and ping6 is easier to read if all identical or as close as possible to being identical functions are in one place. | |||
2016-09-11 | whitespace | Florian Obser | |
2016-09-11 | Pass from around as struct sockaddr. | Florian Obser | |
2016-09-11 | Get rid of check_icmph(), it's just a convoluted way of saying: Is | Florian Obser | |
this an ICMP echo reply. But we want to print things if it's not an echo reply! | |||
2016-09-11 | Whitespace | Florian Obser | |
2016-09-11 | Move smsghdr initialization into main, another step towards AF | Florian Obser | |
independent pinger(). | |||
2016-09-11 | Remove useless comment. | Florian Obser | |
2016-09-11 | Switch to sendmsg like ping6(8). | Florian Obser | |
2016-09-11 | sync to ping(8), no functional change | Florian Obser | |
2016-09-11 | pinger() is no longer called in a sighandler since some time, just | Florian Obser | |
printf(3). | |||
2016-09-11 | Switch sparc64 boot code to libsa MI softraid. | Joel Sing | |
2016-09-11 | Shuffle pinger() initialization around to reduce diff to ping(8). | Florian Obser | |
2016-09-11 | Switch i386 boot code to libsa MI softraid. | Joel Sing | |
2016-09-11 | Switch amd64 to libsa MI softraid. | Joel Sing | |
2016-09-11 | Remove destination IP from mac, it's not helping anything. | Florian Obser | |
Next step in making these functions AF independent. Note that before rev 1.147 of ping6(8) it did not put the destination IP into the mac, only ping(8) did. | |||
2016-09-11 | Provide initial libsa softraid - this is currently just the data structures | Joel Sing | |
and softraid crypto key handling code. | |||
2016-09-11 | Update header guards. | Joel Sing | |
2016-09-11 | Rename softraid boot files, which are currently in an MD location. This | Joel Sing | |
will allow us to bring in a MI softraid.{c,h} in lib/libsa. | |||
2016-09-11 | Install mg tutorial with correct permissions. ok deraadt | Martin Natano | |
2016-09-11 | Install sqlite3 header files with correct ownership. "Morituri te | Martin Natano | |
salutant." ok deraadt | |||
2016-09-11 | Files in /etc/ssl belong to root. ok deraadt | Martin Natano | |
2016-09-11 | Callers of time(3) should #include <time.h>. | Theo Buehler | |
ok deraadt | |||
2016-09-11 | Install binaries, scripts and documentation with the usual owner/group/mode. | Martin Natano | |
ok deraadt | |||
2016-09-11 | Add a few directories missed in the past | Matthieu Herrb | |
2016-09-11 | Remove #ifdef's for architectures of the past around SIZEOF_BPF_HDR | Theo de Raadt | |
This is still a mess. Why don't we just clean this up? | |||
2016-09-11 | Set the usual owner for /usr/bin/skeyprune. ok deraadt | Martin Natano | |
2016-09-11 | ramdisk ftp(1) client never probes for ftp & ftp-data services, because | Theo de Raadt | |
only http is used. | |||
2016-09-11 | ramdisk does not need a passwd entry for uucp. | Theo de Raadt | |
2016-09-11 | First compute the variables, then set them readonly. So that we can catch | Antoine Jacoutot | |
errors (e.g. mktemp(1) failing). | |||
2016-09-11 | Indent cleanup. | Antoine Jacoutot | |
Fix apply_patches return code while here. | |||
2016-09-11 | normalize seq handling in pinger; little step to make this AF | Florian Obser | |
independent | |||
2016-09-11 | Correctly initialize source address for multicast pings. This got | Florian Obser | |
broken 9 months ago in 1.136, sorry about that! | |||
2016-09-11 | remove useless comment; reduces diff to ping; no obj change | Florian Obser | |
2016-09-11 | safeputc is unused ever since we nuked RFC 4620 support | Florian Obser | |
2016-09-11 | remove documentation for filters, we'll document when it's ready | Gilles Chehade | |
2016-09-11 | Remove #ifdef'ed out clock setting code, as we handle setting the clock using | Mark Kettenis | |
the gneric clock API. | |||
2016-09-11 | Get SDIO reset working. | Marcus Glocker | |
Tested and ok kettenis | |||
2016-09-11 | KNF: Break an overlong line. No binary change. | Theo Buehler | |
2016-09-11 | Install programs with ${INSTALL_STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} | Philip Guenther | |
Install info and data files with -o ${DOCOWN} -g ${DOCGRP} -m ${NONBINMODE} Prompted by natano@ Tweaks and oks deraadt@ natano@ | |||
2016-09-11 | Symlinks to binaries should belong to root:bin. | Martin Natano | |
tweaks and ok guenther | |||
2016-09-11 | The /etc/{localtime,rmt}, /var/tmp and /sys symlinks and the etc tarball | Martin Natano | |
should be owned by root. ok deraadt | |||
2016-09-11 | Install the /usr/share/calendar/$lang directories with root as owner. | Martin Natano | |
This will be important as soon as we start building release sets without root privileges. ok deraadt guenther | |||
2016-09-11 | even though zsig.c is knocked out, it should be in this Makefile to | Theo de Raadt | |
match the one up top | |||
2016-09-11 | a lonely little space | Theo de Raadt | |
2016-09-11 | Remove trailing whitespace | Philip Guenther | |
noted by jasper's emacs | |||
2016-09-11 | sync | Theo de Raadt | |
2016-09-11 | extra spaces | Theo de Raadt | |
2016-09-10 | Skip printing a debug message when an external interrupt is received | Mike Larkin | |
2016-09-10 | Advertise high-speed support. | Mark Kettenis | |
2016-09-10 | Use PLL6 as a parent clock for the SDx clocks for frequencies > 400 kHz. | Mark Kettenis | |
This makes sximmc(4) much faster since we can actually provide the appropriate clock rates for the modern SD cards. This uncovered a bug in the code that calculated the PLL6 output frequencies, which this commit also fixes. |