summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/diffdir.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-08-28Fix exit value when diffing directories with missing files and the -Nmillert1-7/+11
or -P options are not used. From Ibrahim Khalifa
2017-08-28whitespacederaadt2-5/+5
2017-08-28whitespacederaadt4-10/+10
2017-08-28Fix unchecked return nitbeck1-2/+5
ok bcook@ jsing@
2017-08-28Do not forbid targets to specify non-visible panes - the checks fornicm4-35/+27
visibility are better where the target is used. GitHub issue 1049.
2017-08-28Add rkpmic(4), a driver for the RK808 Power Management IC. For now, thiskettenis4-3/+283
driver only provides support for the RTC embedded on this device. Support for the voltage regulators will come later. With this diff the Firefly-RK3399 gains a proper clock (if you connect a battery to the board).
2017-08-28spelling/grammar fixes;jmc1-3/+3
2017-08-28Inform the user when we are relinking the kernel.ajacoutot1-2/+8
2017-08-28regenstsp2-2/+12
2017-08-28Add PCI device IDs for audio and USB OTG devices found on Atom z8300 SoC.stsp1-1/+3
ok jsg@ kettenis@
2017-08-28Display that we are running the upgrade scripts when they exist. On slowishajacoutot1-1/+2
machines, running sysmerge(8) can take a little while so don't let people wonder about why the output seems stuck. ok sthen@ tb@ rpe@
2017-08-2865535 is a valid port to listen on.florian6-12/+12
Off-by-one pointed out by and diff from Kris Katterjohn katterjohn AT gmail, thanks! chris@ pointed out that more than httpd(8) is effected. OK gilles@
2017-08-28Fix clang warnings; ok guenther@ deraadt@otto2-6/+6
(guenther says: code could need a rewrite using writev(2) though)
2017-08-28sync list of supported machines with arm64.htmljsg1-6/+12
2017-08-28fix arm64 buildjsg1-2/+2
ok deraadt@
2017-08-27syncderaadt1-0/+1
2017-08-27Place all .o files, Symbols.map, and the test program into /usr/libdata/ld.so.a.deraadt1-1/+10
My work is done; the next piece is coming from rpe. ok visa kettenis
2017-08-27The test program run before ld.so is installed was encoding the $OBJDIRderaadt1-2/+2
path to ld.so. Since the testprogram is run from inside $OBJDIR, encode with a ./ path instead. ok kettenis visa
2017-08-27Link the ~45 .o which become ld.so in a random order.deraadt1-3/+4
ok kettenis visa
2017-08-27Add rkiic(4) a driver for the i2c controllers found on the Rockchip RK3399.kettenis4-3/+386
2017-08-27hppa & sh use support functions from libgcc. Rather than linking againstderaadt3-6/+17
the library, extract the specific pieces and link them directly. ok kettenis visa
2017-08-27Replace heaps of hand-written syscall stubs with a simpler frameworkderaadt39-801/+683
which is largely MI. ok visa kettenis
2017-08-27Add mvpxa(4), a driver for the SDHC compliant controller onpatrick4-3/+189
the ARMADA 38x series (SolidRun ClearFog, Turris Omnia). ok kettenis@
2017-08-27Enable generic sdhc(4) on FDT attachment driver.patrick2-2/+8
ok kettenis@
2017-08-27arm64 performance: use cache zeroing function in pmap_zero_page()drahn2-4/+5
This improves page zeroing (a rather common occurance) by over 8x. ok kettenis@, phessler@, tom@
2017-08-27Free history entries when resizing/reloadingjca1-7/+23
Cluebat & ok tb@
2017-08-27Add glass console support for arm64. This uses the "stdout-path" propertykettenis7-46/+148
of the /chosen node in the device tree to decide whether the framebuffer should be used as the console device. Most, if not all, machines will have that set to use a serial console and there is no easy way yet to change that. ok jsg@
2017-08-27Make it possible for iwm_stop() to sleep by always running it instsp2-18/+28
a process context. In interrupt context, schedule the init task instead of calling iwm_stop() directly. ok procter@
2017-08-27Clear second return register on exec.kettenis1-1/+3
ok guenther@
2017-08-27Add RK3399 i2c-related clocks and fix a typo.kettenis2-6/+126
2017-08-27Do not allow the current line of screen when the preview is toggled,nicm1-1/+10
from Thomas Adam.
2017-08-27Use kind and kri for S-Up/Down as well as kUP and kDN.nicm3-24/+30
2017-08-27always use %s to print a non-constant string; ok deraadt@ guenther@otto2-4/+4
2017-08-27Rely on the hardware to clear hazards on octeon.visa1-1/+12
2017-08-27Rewrite SRTP extension using CBB/CBS and the new extension framework.doug6-275/+652
input + ok beck@, jsing@
2017-08-27check return value from CBB_initbeck1-2/+3
2017-08-27Revisit 2q queue sizes. Limit the hot queue to 1/20th the cache size upbeck1-3/+11
to a max of 4096 pages. Limit the warm and cold queues to half the cache. This allows us to more effectively notice re-interest in buffers instead of losing it in a large hot queue. Discussed and shown with claudio@ and benno@ at tk217
2017-08-27Make the symbol for ASN1_time_tm_clamp_notafter visible so libtlsbeck4-5/+10
can get at it, so libtls can also deal with notafter's past the realm of 32 bit time in portable
2017-08-27Increase the buffer sizes for user prompts to ensure that they won't bedtucker1-3/+3
truncated by snprintf. Based on patch from cjwatson at debian.org via bz#2768, ok djm@
2017-08-27Remove unused copy_non_glob() in ksh.nayden1-43/+1
Report and diff by David Crosby <dave@dafyddcrosby.com> OK otto@
2017-08-26Fix previous: mmap(2) returns MAP_FAILED on failure, not NULL.schwarze1-6/+6
Bug pointed out by tedu@.
2017-08-26Rewrite ALPN extension using CBB/CBS and the new extension framework.doug5-144/+540
ok bcook@ beck@ input + ok jsing@
2017-08-26Since we no longer try to uniquely label routes addedkrw1-9/+5
by dhclients, there is no need to retry adding a route if the first attempt fails with EEXIST. And EUNREACHABLE should be considered final since the address if any is already configured. Use log_getverbose() to allow logging of EEXIST errors.
2017-08-26bug fixbru1-2/+2
2017-08-26For exceptional cases of mathematical formulae that can't reasonablyschwarze2-18/+23
be represented otherwise, use eqn(7). Idea originally from bentley@, feedback and OK bentley@, OK tb@, and no objection from jmc@.
2017-08-26Remove -fno-stack-protector; works fine without it.kettenis1-2/+2
ok deraadt@
2017-08-26Mark decimal constants as unsigned to avoid gcc warning.kettenis1-22/+22
2017-08-26Do not fork and exec cmp(1); instead, simply fstat(2), mmap(2), andschwarze1-38/+52
compare the files directly, allowing a much stricter pledge(2), at very little cost: merely 15 additional lines of very simple code. Suggested by George Brown <321 dot george at gmail dot com> on misc@.
2017-08-26Remove inadvertantly included param names inkrw1-2/+2
get_rtaddrs() prototype.
2017-08-26Change currently unused populate_rti_info() withkrw1-9/+6
the get_rtaddrs() everyone is using. Soon to be used or deleted.