svn commit: r206463 - head/usr.bin/tar

2010-04-10 Thread Tim Kientzle
Author: kientzle Date: Sun Apr 11 01:30:15 2010 New Revision: 206463 URL: http://svn.freebsd.org/changeset/base/206463 Log: Correct the markup for the -s option, document the iso9660:rockridge and mtree:indent options Modified: head/usr.bin/tar/bsdtar.1 Modified: head/usr.bin/tar/bsdtar.1

svn commit: r206464 - head/usr.bin/tar

2010-04-10 Thread Tim Kientzle
Author: kientzle Date: Sun Apr 11 01:31:50 2010 New Revision: 206464 URL: http://svn.freebsd.org/changeset/base/206464 Log: Remove an unnecessary include and conditionalize some code. Modified: head/usr.bin/tar/bsdtar.c head/usr.bin/tar/bsdtar_platform.h Modified: head/usr.bin/tar/bsdtar.c

svn commit: r206465 - head/usr.bin/tar

2010-04-10 Thread Tim Kientzle
Author: kientzle Date: Sun Apr 11 01:32:30 2010 New Revision: 206465 URL: http://svn.freebsd.org/changeset/base/206465 Log: Consistently specify O_BINARY when opening files. Modified: head/usr.bin/tar/write.c Modified: head/usr.bin/tar/write.c

svn commit: r206466 - head/usr.bin/tar

2010-04-10 Thread Tim Kientzle
Author: kientzle Date: Sun Apr 11 01:36:10 2010 New Revision: 206466 URL: http://svn.freebsd.org/changeset/base/206466 Log: Fix -X. Modified: head/usr.bin/tar/matching.c Modified: head/usr.bin/tar/matching.c == --- h

svn commit: r206484 - head/usr.bin/tar

2010-04-11 Thread Tim Kientzle
Author: kientzle Date: Sun Apr 11 16:27:38 2010 New Revision: 206484 URL: http://svn.freebsd.org/changeset/base/206484 Log: Diff reduction against bsdtar 2.8.3 Modified: head/usr.bin/tar/subst.c Modified: head/usr.bin/tar/subst.c ==

svn commit: r206485 - head/usr.bin/tar

2010-04-11 Thread Tim Kientzle
Author: kientzle Date: Sun Apr 11 16:28:10 2010 New Revision: 206485 URL: http://svn.freebsd.org/changeset/base/206485 Log: Diff reduction against bsdtar 2.8.3 Modified: head/usr.bin/tar/tree.h Modified: head/usr.bin/tar/tree.h

Re: svn commit: r206466 - head/usr.bin/tar

2010-04-11 Thread Tim Kientzle
Alexander Best wrote: does this commit fix bin/144786 entirely? It fixes the problems listed in that bug. In testing that bug, I've uncovered some other problems with the inclusion/exclusion logic that I'm still working through. Tim ___ svn-src-hea

svn commit: r206487 - head/usr.bin/tar

2010-04-11 Thread Tim Kientzle
Author: kientzle Date: Sun Apr 11 18:44:42 2010 New Revision: 206487 URL: http://svn.freebsd.org/changeset/base/206487 Log: If a file is specifically both included and excluded, then: * It is not extracted (because it is excluded) * If it's not present in the archive, then an error is

svn commit: r207786 - head/usr.bin/tar

2010-05-08 Thread Tim Kientzle
Author: kientzle Date: Sat May 8 15:43:59 2010 New Revision: 207786 URL: http://svn.freebsd.org/changeset/base/207786 Log: Various manpage updates, including many long-option synonyms that were previously undocumented. Modified: head/usr.bin/tar/bsdtar.1 Modified: head/usr.bin/tar/bsdtar.1

svn commit: r207790 - head/usr.bin/tar

2010-05-08 Thread Tim Kientzle
Author: kientzle Date: Sat May 8 16:28:22 2010 New Revision: 207790 URL: http://svn.freebsd.org/changeset/base/207790 Log: Config updates. Modified: head/usr.bin/tar/config_freebsd.h Modified: head/usr.bin/tar/config_freebsd.h

svn commit: r207791 - head/usr.bin/tar

2010-05-08 Thread Tim Kientzle
Author: kientzle Date: Sat May 8 16:29:02 2010 New Revision: 207791 URL: http://svn.freebsd.org/changeset/base/207791 Log: FreeBSD is now using bsdtar 2.8.3. Modified: head/usr.bin/tar/Makefile Modified: head/usr.bin/tar/Makefile =

svn commit: r207792 - head/usr.bin/cpio

2010-05-08 Thread Tim Kientzle
Author: kientzle Date: Sat May 8 16:47:33 2010 New Revision: 207792 URL: http://svn.freebsd.org/changeset/base/207792 Log: bsdcpio 2.8.3 Added: head/usr.bin/cpio/err.h (contents, props changed) head/usr.bin/cpio/line_reader.c (contents, props changed) head/usr.bin/cpio/line_reader.h

svn commit: r208169 - head/lib/libarchive

2010-05-16 Thread Tim Kientzle
Author: kientzle Date: Sun May 16 20:43:17 2010 New Revision: 208169 URL: http://svn.freebsd.org/changeset/base/208169 Log: Reorganize slightly in preparation for making lzma and bz2 support conditional. Modified: head/lib/libarchive/Makefile head/lib/libarchive/config_freebsd.h Modified:

Re: svn commit: r207790 - head/usr.bin/tar

2010-05-16 Thread Tim Kientzle
Please try the attached patch and let me know if it fixes it for you... Cheers, Tim Anonymous wrote: Tim Kientzle writes: Author: kientzle Date: Sat May 8 16:28:22 2010 New Revision: 207790 URL: http://svn.freebsd.org/changeset/base/207790 Log: Config updates. Modified: head/usr.bin

svn commit: r208263 - head/lib/libarchive

2010-05-18 Thread Tim Kientzle
Author: kientzle Date: Tue May 18 14:11:38 2010 New Revision: 208263 URL: http://svn.freebsd.org/changeset/base/208263 Log: Retry reads that fail with EINTR. This fixes a problem with bsdtar failing on SIGINT. Modified: head/lib/libarchive/archive_read_open_fd.c head/lib/libarchive/archi

Re: svn commit: r207790 - head/usr.bin/tar

2010-05-22 Thread Tim Kientzle
Ah, yes. I did forget to add an EINTR check to the write side. Attached patch should fix "tar cf" Thanks for your careful testing... Anonymous wrote: Anonymous writes: Tim Kientzle writes: Please try the attached patch and let me know if it fixes it for you... Cheers, Tim

Re: svn commit: r208545 - in head/release: amd64 i386 ia64 pc98 powerpc sparc64 sun4v

2010-05-26 Thread Tim Kientzle
Kostik Belousov wrote: On 2010/05/26 11:47, Garrett Cooper wrote: On Wed, May 26, 2010 at 11:28 AM, Rob Farmer wrote: Does the order of the libs entries matter? ... In theory it shouldn't because the linker should be smart enough to evaluate the dependencies and link everything properly,

svn commit: r209147 - head/lib/libc/posix1e

2010-06-13 Thread Tim Kientzle
Author: kientzle Date: Mon Jun 14 02:26:13 2010 New Revision: 209147 URL: http://svn.freebsd.org/changeset/base/209147 Log: Separate _posix1e_acl_id_to_name() into a separate file, to break an unnecessary dependency on getpwuid() and getgrgid(). MFC after: 1 month Added: head/lib/libc/

svn commit: r209152 - head/usr.bin/tar

2010-06-13 Thread Tim Kientzle
Author: kientzle Date: Mon Jun 14 02:56:45 2010 New Revision: 209152 URL: http://svn.freebsd.org/changeset/base/209152 Log: If the compressed data is larger than the uncompressed, report the compression ratio as 0% instead of displaying nonsense triggered by numeric overflow. This is common

Re: svn commit: r228750 - head/usr.bin/cpio/test

2011-12-21 Thread Tim Kientzle
On Dec 20, 2011, at 2:27 PM, Martin Matuska wrote: > On 20.12.2011 21:56, John Baldwin wrote: >> On Tuesday, December 20, 2011 3:37:17 pm Martin Matuska wrote: >>> Author: mm >>> Date: Tue Dec 20 20:37:17 2011 >>> New Revision: 228750 >>> URL: http://svn.freebsd.org/changeset/base/228750 >>> >>> L

svn commit: r230179 - in head/sys/dev/usb: . serial

2012-01-15 Thread Tim Kientzle
Author: kientzle Date: Sun Jan 15 23:00:33 2012 New Revision: 230179 URL: http://svn.freebsd.org/changeset/base/230179 Log: BeagleBone uses an FTDI chip with an altered Product ID. Modified: head/sys/dev/usb/serial/uftdi.c head/sys/dev/usb/usbdevs Modified: head/sys/dev/usb/serial/uftdi.

svn commit: r223541 - head/usr.bin/tar

2011-06-25 Thread Tim Kientzle
Author: kientzle Date: Sat Jun 25 16:27:49 2011 New Revision: 223541 URL: http://svn.freebsd.org/changeset/base/223541 Log: If there is a read error reading Y/N confirmation from the keyboard, exit immediately with an error. If there is an error opening or reading a file to put into the a

svn commit: r223573 - head/usr.bin/tar

2011-06-26 Thread Tim Kientzle
Author: kientzle Date: Sun Jun 26 17:54:11 2011 New Revision: 223573 URL: http://svn.freebsd.org/changeset/base/223573 Log: The --newer-than test should descend into old directories to look for new files. PR: bin/150890 Submitted by: Tobias Herre MFC after:3 weeks Modif

svn commit: r211054 - head/usr.bin/cpio

2010-08-07 Thread Tim Kientzle
Author: kientzle Date: Sun Aug 8 01:25:33 2010 New Revision: 211054 URL: http://svn.freebsd.org/changeset/base/211054 Log: Fix -R when used with -p. Previously, the uname and gname weren't overwritten, so the disk restore would use those to lookup the original uid/gid again. Clearing th

svn commit: r213469 - head/usr.bin/tar

2010-10-05 Thread Tim Kientzle
Author: kientzle Date: Wed Oct 6 04:30:40 2010 New Revision: 213469 URL: http://svn.freebsd.org/changeset/base/213469 Log: Recognize both ! and ^ as markers for negated character classes. Submitted by: Mykola Dzham Modified: head/usr.bin/tar/pathmatch.c Modified: head/usr.bin/tar/pathm

svn commit: r213643 - head/usr.bin/ar

2010-10-08 Thread Tim Kientzle
Author: kientzle Date: Sat Oct 9 05:31:08 2010 New Revision: 213643 URL: http://svn.freebsd.org/changeset/base/213643 Log: Add -D (deterministic) option to ar. When set, it forces all timestamps and owners to zero and modes to 0644. Useful for producing libraries that are bitwise identic

Re: svn commit: r214596 - head/bin/rm

2010-10-31 Thread Tim Kientzle
On Oct 31, 2010, at 9:06 AM, Pawel Jakub Dawidek wrote: > On Sun, Oct 31, 2010 at 09:21:28AM +, Ulrich Spoerlein wrote: >> Author: uqs >> Date: Sun Oct 31 09:21:27 2010 >> New Revision: 214596 >> URL: http://svn.freebsd.org/changeset/base/214596 >> >> Log: >> Elaborate some more on the non-

svn commit: r214822 - head/lib/libarchive

2010-11-04 Thread Tim Kientzle
Author: kientzle Date: Fri Nov 5 05:11:54 2010 New Revision: 214822 URL: http://svn.freebsd.org/changeset/base/214822 Log: Clarify the naming: Methods that free an object should be called "free". Retain the old "finish" names to preserve source compatibility for now. Modified: head/lib

svn commit: r214905 - in head/lib/libarchive: . test

2010-11-06 Thread Tim Kientzle
Author: kientzle Date: Sun Nov 7 03:40:37 2010 New Revision: 214905 URL: http://svn.freebsd.org/changeset/base/214905 Log: If the Zip reader doesn't see a PK signature block because there's inter-entry garbage, just scan forward to find the next one. This allows us to handle a lot of Zip

Re: svn commit: r214905 - in head/lib/libarchive: . test

2010-11-07 Thread Tim Kientzle
On Nov 6, 2010, at 9:09 PM, Anonymous wrote: > Tim Kientzle writes: > >> Author: kientzle >> Date: Sun Nov 7 03:40:37 2010 >> New Revision: 214905 >> URL: http://svn.freebsd.org/changeset/base/214905 >> >> Log: >> If the Zip reader doesn'

svn commit: r216258 - in head/lib/libarchive: . test

2010-12-07 Thread Tim Kientzle
Author: kientzle Date: Tue Dec 7 16:48:01 2010 New Revision: 216258 URL: http://svn.freebsd.org/changeset/base/216258 Log: Don't write data into an empty "file." In particular, this check avoids a warning when extracting directory entries from certain GNU tar archives that store direct

svn commit: r225525 - head/lib/libarchive

2011-09-12 Thread Tim Kientzle
Author: kientzle Date: Tue Sep 13 05:52:34 2011 New Revision: 225525 URL: http://svn.freebsd.org/changeset/base/225525 Log: Fix cpio on ARM. PR: bin/160430 Submitted by: Ian Lepore Approved by: re (Kostik Belousov) MFC after:7 days Modified: head/lib/libarchive/archi

svn commit: r226635 - head/usr.bin/tar

2011-10-22 Thread Tim Kientzle
Author: kientzle Date: Sat Oct 22 16:52:04 2011 New Revision: 226635 URL: http://svn.freebsd.org/changeset/base/226635 Log: Bring in the --gid --gname --uid and --uname implementation from libarchive.googlecode.com. MFC after:3 days Modified: head/usr.bin/tar/bsdtar.c head/usr.bi

svn commit: r226636 - head/usr.bin/tar

2011-10-22 Thread Tim Kientzle
Author: kientzle Date: Sat Oct 22 16:53:29 2011 New Revision: 226636 URL: http://svn.freebsd.org/changeset/base/226636 Log: Typo from previous commit. Urgh. Modified: head/usr.bin/tar/read.c Modified: head/usr.bin/tar/read.c ===

svn commit: r226638 - head/lib/libarchive

2011-10-22 Thread Tim Kientzle
Author: kientzle Date: Sat Oct 22 17:56:24 2011 New Revision: 226638 URL: http://svn.freebsd.org/changeset/base/226638 Log: Correct the spelling of getgrgid and getpwuid in the man page. MFC after:3 days Modified: head/lib/libarchive/archive_read_disk.3 Modified: head/lib/libarchive

svn commit: r226643 - head/lib/libarchive

2011-10-22 Thread Tim Kientzle
Author: kientzle Date: Sat Oct 22 22:22:46 2011 New Revision: 226643 URL: http://svn.freebsd.org/changeset/base/226643 Log: Fix Buildworld WITHOUT_OPENSSL. PR: kern/160922 MFC after:3 days Modified: head/lib/libarchive/archive_hash.h head/lib/libarchive/config_freebsd.h

Re: svn commit: r268566 - head/usr.bin/users

2014-07-12 Thread Tim Kientzle
On Jul 12, 2014, at 8:31 AM, Ian Lepore wrote: > It is in no way established that any kind of "mess" exists. All we have > is some people who appear to hate C++ expressing their opinions about > how they hate C++. All the whining about how many more bytes the > compiled code is or many millise

Re: svn commit: r249774 - head/sys/boot/fdt/dts

2013-04-29 Thread Tim Kientzle
On Apr 22, 2013, at 11:53 AM, Oleksandr Tymoshenko wrote: > Author: gonzo > Date: Mon Apr 22 18:53:36 2013 > New Revision: 249774 > URL: http://svnweb.freebsd.org/changeset/base/249774 > > Log: > Split BeagleBone DTS to generic AM335x part and Beagle-bone specific > > Added: > head/sys/boot/f

svn commit: r250255 - head/sys/arm/arm

2013-05-04 Thread Tim Kientzle
Author: kientzle Date: Sat May 4 21:26:11 2013 New Revision: 250255 URL: http://svnweb.freebsd.org/changeset/base/250255 Log: Make a debugging printf a little more useful. Modified: head/sys/arm/arm/trap.c Modified: head/sys/arm/arm/trap.c ===

svn commit: r250435 - head/sys/boot/fdt/dts

2013-05-09 Thread Tim Kientzle
Author: kientzle Date: Fri May 10 05:34:08 2013 New Revision: 250435 URL: http://svnweb.freebsd.org/changeset/base/250435 Log: Move 'compatible' line out of the common am335x.dtsi and into the beaglebone-specific .dts file. Add a new .dts for the BeagleBone Black with more memory, sligh

svn commit: r250531 - head/sys/arm/arm

2013-05-11 Thread Tim Kientzle
Author: kientzle Date: Sat May 11 22:32:43 2013 New Revision: 250531 URL: http://svnweb.freebsd.org/changeset/base/250531 Log: Don't use the old stack-walking code with EABI ARM kernels or clang-compiled ARM kernels. This fixes a crash seen in clang-compiled ARM kernels that include WIT

Re: svn commit: r250692 - head/sys/arm/conf

2013-05-16 Thread Tim Kientzle
I don't object, but I'm not sure why we need this. I'd rather see a comment in the BEAGLEBONE config indicating that it can be used with beaglebone-black.dts. Generally, I want us to move away from compiled-in DTBs. The BEAGLEBONE config works just fine on either one and it's what I plan to con

Re: svn commit: r250692 - head/sys/arm/conf

2013-05-17 Thread Tim Kientzle
On May 16, 2013, at 9:49 PM, Rui Paulo wrote: > On 2013/05/16, at 2:02, Tim Kientzle wrote: > >> I don't object, but I'm not sure why we need this. >> >> I'd rather see a comment in the BEAGLEBONE >> config indicating that it can be used with >

svn commit: r250768 - head/sys/arm/ti

2013-05-18 Thread Tim Kientzle
Author: kientzle Date: Sat May 18 12:53:20 2013 New Revision: 250768 URL: http://svnweb.freebsd.org/changeset/base/250768 Log: Label the mmc child after the parent. Modified: head/sys/arm/ti/ti_mmchs.c Modified: head/sys/arm/ti/ti_mmchs.c =

svn commit: r250769 - head/sys/boot/fdt/dts

2013-05-18 Thread Tim Kientzle
Author: kientzle Date: Sat May 18 12:54:37 2013 New Revision: 250769 URL: http://svnweb.freebsd.org/changeset/base/250769 Log: Correct the spelling of "okay". Add pinmux setting for the Reset GPIO pin for MMC1. Modified: head/sys/boot/fdt/dts/beaglebone-black.dts Modified: head/sys/boot/fd

svn commit: r250791 - head/sys/arm/ti

2013-05-18 Thread Tim Kientzle
Author: kientzle Date: Sat May 18 22:42:21 2013 New Revision: 250791 URL: http://svnweb.freebsd.org/changeset/base/250791 Log: Back out r250768 until I can further investigate why it might be causing problems with the BeagleBone Black boot. Modified: head/sys/arm/ti/ti_mmchs.c Modified: he

svn commit: r252013 - head/contrib/apr/include

2013-06-19 Thread Tim Kientzle
Author: kientzle Date: Thu Jun 20 02:04:03 2013 New Revision: 252013 URL: http://svnweb.freebsd.org/changeset/base/252013 Log: Try to fix build of apr on FreeBSD/arm. Modified: head/contrib/apr/include/apr_general.h Modified: head/contrib/apr/include/apr_general.h ===

svn commit: r252373 - head/usr.bin

2013-06-29 Thread Tim Kientzle
Author: kientzle Date: Sat Jun 29 15:31:23 2013 New Revision: 252373 URL: http://svnweb.freebsd.org/changeset/base/252373 Log: Enable svnlite on armv6. Modified: head/usr.bin/Makefile Modified: head/usr.bin/Makefile

svn commit: r252374 - head/bin/ed

2013-06-29 Thread Tim Kientzle
Author: kientzle Date: Sat Jun 29 15:49:26 2013 New Revision: 252374 URL: http://svnweb.freebsd.org/changeset/base/252374 Log: Fix a -Wunsequenced warning. Submitted by: d...@gmx.com Modified: head/bin/ed/re.c Modified: head/bin/ed/re.c ==

svn commit: r252375 - head/lib/libfetch

2013-06-29 Thread Tim Kientzle
Author: kientzle Date: Sat Jun 29 15:51:27 2013 New Revision: 252375 URL: http://svnweb.freebsd.org/changeset/base/252375 Log: Fix -Wunsequenced warning. Submitted by: d...@gmx.com Modified: head/lib/libfetch/fetch.c Modified: head/lib/libfetch/fetch.c ==

svn commit: r252376 - head/lib/libutil

2013-06-29 Thread Tim Kientzle
Author: kientzle Date: Sat Jun 29 15:52:48 2013 New Revision: 252376 URL: http://svnweb.freebsd.org/changeset/base/252376 Log: Fix -Wunsequenced warning Submitted by: d...@gmx.com Modified: head/lib/libutil/login_times.c Modified: head/lib/libutil/login_times.c =

svn commit: r252377 - head/usr.sbin/pw

2013-06-29 Thread Tim Kientzle
Author: kientzle Date: Sat Jun 29 15:54:17 2013 New Revision: 252377 URL: http://svnweb.freebsd.org/changeset/base/252377 Log: Fix -Wunsequenced warning Submitted by: d...@gmx.com Modified: head/usr.sbin/pw/pw_user.c Modified: head/usr.sbin/pw/pw_user.c ===

svn commit: r252378 - head/usr.sbin/newsyslog

2013-06-29 Thread Tim Kientzle
Author: kientzle Date: Sat Jun 29 15:58:03 2013 New Revision: 252378 URL: http://svnweb.freebsd.org/changeset/base/252378 Log: Fix -Wunsequenced Submitted by: d...@gmx.com Modified: head/usr.sbin/newsyslog/newsyslog.c Modified: head/usr.sbin/newsyslog/newsyslog.c ===

Re: svn commit: r252376 - head/lib/libutil

2013-06-29 Thread Tim Kientzle
On Jun 29, 2013, at 9:19 AM, Konstantin Belousov wrote: > On Sat, Jun 29, 2013 at 03:52:49PM +0000, Tim Kientzle wrote: >> Author: kientzle >> Date: Sat Jun 29 15:52:48 2013 >> New Revision: 252376 >> URL: http://svnweb.freebsd.org/changeset/base/252376 >> >

Re: svn commit: r259058 - head/usr.bin/bc

2013-12-08 Thread Tim Kientzle
On Dec 7, 2013, at 2:04 PM, Tom Rhodes wrote: > On Sat, 7 Dec 2013 01:44:19 -0500 > Eitan Adler wrote: > >> On Sat, Dec 7, 2013 at 1:27 AM, Xin LI wrote: >>> Author: delphij >>> Date: Sat Dec 7 06:27:54 2013 >>> New Revision: 259058 >>> URL: http://svnweb.freebsd.org/changeset/base/259058 >>

svn commit: r234860 - head/sys/boot/uboot/lib

2012-04-30 Thread Tim Kientzle
Author: kientzle Date: Tue May 1 05:04:49 2012 New Revision: 234860 URL: http://svn.freebsd.org/changeset/base/234860 Log: Teach ubldr(8) about simple MBR partitioning. Modified: head/sys/boot/uboot/lib/devicename.c head/sys/boot/uboot/lib/disk.c head/sys/boot/uboot/lib/libuboot.h Modif

svn commit: r234908 - head/sys/boot/arm/uboot

2012-05-01 Thread Tim Kientzle
Author: kientzle Date: Wed May 2 05:49:58 2012 New Revision: 234908 URL: http://svn.freebsd.org/changeset/base/234908 Log: Remove some redundant register loads. Discussed on: arm@ Modified: head/sys/boot/arm/uboot/start.S Modified: head/sys/boot/arm/uboot/start.S ==

svn commit: r235094 - head/sys/boot/uboot/common

2012-05-06 Thread Tim Kientzle
Author: kientzle Date: Sun May 6 16:01:58 2012 New Revision: 235094 URL: http://svn.freebsd.org/changeset/base/235094 Log: Don't call strcmp with a NULL pointer. In particular, on the AM335x, which comes up with no memory mapped to low addresses, dereferencing the NULL causes a crash. M

svn commit: r235095 - head/sys/boot/uboot/common

2012-05-06 Thread Tim Kientzle
Author: kientzle Date: Sun May 6 16:32:28 2012 New Revision: 235095 URL: http://svn.freebsd.org/changeset/base/235095 Log: Ooops. Back out changes to main.c from r235094. This change is specific to BeagleBone; I need to figure out how to generalize this before committing. Modified: h

svn commit: r235261 - head/sys/boot/fdt

2012-05-10 Thread Tim Kientzle
Author: kientzle Date: Fri May 11 04:18:39 2012 New Revision: 235261 URL: http://svn.freebsd.org/changeset/base/235261 Log: Don't hang if there is no /cpus node in the device tree. Modified: head/sys/boot/fdt/fdt_loader_cmd.c Modified: head/sys/boot/fdt/fdt_loader_cmd.c =

svn commit: r235529 - in head/sys/boot: fdt uboot/common

2012-05-16 Thread Tim Kientzle
Author: kientzle Date: Thu May 17 04:04:48 2012 New Revision: 235529 URL: http://svn.freebsd.org/changeset/base/235529 Log: Access the device tree blob via copyin/copyout. The code previously assumed that copyin/copyout did no address translation and that the device tree blob could be m

svn commit: r235694 - head/sys/boot/uboot/lib

2012-05-20 Thread Tim Kientzle
Author: kientzle Date: Sun May 20 18:07:35 2012 New Revision: 235694 URL: http://svn.freebsd.org/changeset/base/235694 Log: Determine kernel load address dynamically from u-boot memory map. The generic ELF loading code maps the kernel into low memory by subtracting KERN_BASE. So the copy

svn commit: r236159 - head/sys/boot/arm/uboot

2012-05-27 Thread Tim Kientzle
Author: kientzle Date: Sun May 27 16:27:04 2012 New Revision: 236159 URL: http://svn.freebsd.org/changeset/base/236159 Log: Allow the load address used by ARM ubldr to be set via Make argument. In particular, this simplifies scripts that build system images. Modified: head/sys/boot/arm

svn commit: r236816 - head/lib/libc/arm

2012-06-09 Thread Tim Kientzle
Author: kientzle Date: Sat Jun 9 16:09:53 2012 New Revision: 236816 URL: http://svn.freebsd.org/changeset/base/236816 Log: __flt_rounds was omitted from the exported symbols here. Submitted by: Jan Sieka Reviewed by: arm@ MFC after:1 week Modified: head/lib/libc/arm/Symbol.map

svn commit: r237039 - head/lib/libc/arm

2012-06-13 Thread Tim Kientzle
Author: kientzle Date: Thu Jun 14 03:27:01 2012 New Revision: 237039 URL: http://svn.freebsd.org/changeset/base/237039 Log: __flt_rounds is a public symbol (expands from the FLT_ROUNDS macro), so include it in the public namespace on arm just as with other architectures. This corrects r

svn commit: r237110 - head/lib/libc/arm

2012-06-14 Thread Tim Kientzle
Author: kientzle Date: Fri Jun 15 03:57:16 2012 New Revision: 237110 URL: http://svn.freebsd.org/changeset/base/237110 Log: Per kib, since __flt_rounds is being added to FreeBSD 10, it belongs in FBSD_1.3. MFC after:1 week Modified: head/lib/libc/arm/Symbol.map Modified: head/lib/

svn commit: r240481 - head/sys/boot/common

2012-09-13 Thread Tim Kientzle
Author: kientzle Date: Fri Sep 14 05:24:06 2012 New Revision: 240481 URL: http://svn.freebsd.org/changeset/base/240481 Log: The MBR data is not necessarily aligned. This is a problem on ARM. Modified: head/sys/boot/common/part.c Modified: head/sys/boot/common/part.c

svn commit: r241100 - head/sys/arm/conf

2012-10-01 Thread Tim Kientzle
Author: kientzle Date: Mon Oct 1 14:56:48 2012 New Revision: 241100 URL: http://svn.freebsd.org/changeset/base/241100 Log: Support kernel options from ubldr. Modified: head/sys/arm/conf/BEAGLEBONE Modified: head/sys/arm/conf/BEAGLEBONE ===

svn commit: r241255 - head/lib/libpmc

2012-10-06 Thread Tim Kientzle
Author: kientzle Date: Sat Oct 6 17:54:42 2012 New Revision: 241255 URL: http://svn.freebsd.org/changeset/base/241255 Log: Fix "make install" Also make arm the same as other platforms: Install man pages for all CPUs in the family. Modified: head/lib/libpmc/Makefile Modified: head/li

svn commit: r241562 - head/sys/arm/ti/cpsw

2012-10-14 Thread Tim Kientzle
Author: kientzle Date: Sun Oct 14 22:58:12 2012 New Revision: 241562 URL: http://svn.freebsd.org/changeset/base/241562 Log: Return correct packet size. Modified: head/sys/arm/ti/cpsw/if_cpsw.c Modified: head/sys/arm/ti/cpsw/if_cpsw.c ==

svn commit: r241563 - head/sys/arm/ti/cpsw

2012-10-14 Thread Tim Kientzle
Author: kientzle Date: Sun Oct 14 23:00:24 2012 New Revision: 241563 URL: http://svn.freebsd.org/changeset/base/241563 Log: Name cpsw_stop to cpsw_stop_locked consistently with other functions in this file that assume locks are already held. Modified: head/sys/arm/ti/cpsw/if_cpsw.c Modifie

svn commit: r241564 - head/sys/arm/ti/cpsw

2012-10-14 Thread Tim Kientzle
Author: kientzle Date: Sun Oct 14 23:07:54 2012 New Revision: 241564 URL: http://svn.freebsd.org/changeset/base/241564 Log: Cut-and-paste dropped semicolon. Modified: head/sys/arm/ti/cpsw/if_cpsw.c Modified: head/sys/arm/ti/cpsw/if_cpsw.c =

svn commit: r241572 - head/sys/arm/ti/cpsw

2012-10-14 Thread Tim Kientzle
Author: kientzle Date: Mon Oct 15 04:10:49 2012 New Revision: 241572 URL: http://svn.freebsd.org/changeset/base/241572 Log: Fix an mbuf leak in cpsw driver, clean up mbuf management: * Record TX mbufs when we get them so we can release them. * Set TX/RX mbuf slots to NULL when we are no lo

svn commit: r241721 - head/sys/arm/ti/cpsw

2012-10-18 Thread Tim Kientzle
Author: kientzle Date: Fri Oct 19 05:50:56 2012 New Revision: 241721 URL: http://svn.freebsd.org/changeset/base/241721 Log: Replace deprecated M_DONTWAIT with M_NOWAIT. Modified: head/sys/arm/ti/cpsw/if_cpsw.c Modified: head/sys/arm/ti/cpsw/if_cpsw.c =

svn commit: r241831 - head/sys/arm/ti/cpsw

2012-10-21 Thread Tim Kientzle
Author: kientzle Date: Mon Oct 22 02:28:48 2012 New Revision: 241831 URL: http://svn.freebsd.org/changeset/base/241831 Log: Don't repeat the POSTREAD dma sync. Modified: head/sys/arm/ti/cpsw/if_cpsw.c Modified: head/sys/arm/ti/cpsw/if_cpsw.c ==

svn commit: r242061 - head/sys/arm/conf

2012-10-24 Thread Tim Kientzle
Author: kientzle Date: Thu Oct 25 04:10:32 2012 New Revision: 242061 URL: http://svn.freebsd.org/changeset/base/242061 Log: Support boot loaders in the standard kernel. Modified: head/sys/arm/conf/RPI-B Modified: head/sys/arm/conf/RPI-B ===

svn commit: r242062 - head/sys/arm/conf

2012-10-24 Thread Tim Kientzle
Author: kientzle Date: Thu Oct 25 04:12:33 2012 New Revision: 242062 URL: http://svn.freebsd.org/changeset/base/242062 Log: Everybody needs bpf. Modified: head/sys/arm/conf/PANDABOARD Modified: head/sys/arm/conf/PANDABOARD =

svn commit: r242063 - head/sys/arm/conf

2012-10-24 Thread Tim Kientzle
Author: kientzle Date: Thu Oct 25 04:14:42 2012 New Revision: 242063 URL: http://svn.freebsd.org/changeset/base/242063 Log: Support FreeBSD Boot loaders. Modified: head/sys/arm/conf/PANDABOARD Modified: head/sys/arm/conf/PANDABOARD

svn commit: r242067 - head/sys/arm/ti/cpsw

2012-10-24 Thread Tim Kientzle
Author: kientzle Date: Thu Oct 25 04:33:47 2012 New Revision: 242067 URL: http://svn.freebsd.org/changeset/base/242067 Log: Refer to headers locally. This makes it a lot easier to build this driver out-of-tree. Modified: head/sys/arm/ti/cpsw/if_cpsw.c Modified: head/sys/arm/ti/cpsw/if_cps

svn commit: r242068 - head/sys/arm/ti/cpsw

2012-10-24 Thread Tim Kientzle
Author: kientzle Date: Thu Oct 25 04:37:47 2012 New Revision: 242068 URL: http://svn.freebsd.org/changeset/base/242068 Log: Do proper padding of runt packets using code copied from bge(4). Reviewed by: gnn Modified: head/sys/arm/ti/cpsw/if_cpsw.c Modified: head/sys/arm/ti/cpsw/if_cpsw.

svn commit: r242124 - head/sys/arm/conf

2012-10-25 Thread Tim Kientzle
Author: kientzle Date: Fri Oct 26 05:41:58 2012 New Revision: 242124 URL: http://svn.freebsd.org/changeset/base/242124 Log: Comment out the BOOTP/NFSROOT support. Transition this config file to support a production kernel mounted on an SD card. Modified: head/sys/arm/conf/PANDABOARD Mod

svn commit: r242125 - head/sys/arm/ti

2012-10-25 Thread Tim Kientzle
Author: kientzle Date: Fri Oct 26 05:48:53 2012 New Revision: 242125 URL: http://svn.freebsd.org/changeset/base/242125 Log: set the kernelname from the boot loader environment. This fixes kern.bootfile sysctl. Submitted by: Giovanni Trematerra Modified: head/sys/arm/ti/ti_machdep.c Mo

svn commit: r242171 - head/sys/arm/conf

2012-10-26 Thread Tim Kientzle
Author: kientzle Date: Sat Oct 27 04:02:12 2012 New Revision: 242171 URL: http://svn.freebsd.org/changeset/base/242171 Log: Comment out the other BOOTP option This should make PANDABOARD suitable for building bootable SD images. Submitted by: Giovanni Trematerra Modified: head/sys/ar

svn commit: r242191 - head/sys/arm/ti

2012-10-27 Thread Tim Kientzle
Author: kientzle Date: Sat Oct 27 22:13:42 2012 New Revision: 242191 URL: http://svn.freebsd.org/changeset/base/242191 Log: Missing paren. Pointy hat:me Modified: head/sys/arm/ti/ti_machdep.c Modified: head/sys/arm/ti/ti_machdep.c

svn commit: r242277 - head/usr.sbin/kldxref

2012-10-28 Thread Tim Kientzle
Author: kientzle Date: Mon Oct 29 03:31:22 2012 New Revision: 242277 URL: http://svn.freebsd.org/changeset/base/242277 Log: Clarify a warning message. Modified: head/usr.sbin/kldxref/ef.c Modified: head/usr.sbin/kldxref/ef.c ===

Re: svn commit: r242402 - in head/sys: kern vm

2012-11-01 Thread Tim Kientzle
On Nov 1, 2012, at 7:37 AM, Ian Lepore wrote: > > Back from some quick googling... yep, arm cortex-a8 processors have a > 64-byte cache line size. Maybe we don't support those yet, which is why > the value appears to be constant in arm param.h right now. Beaglebone runs a Cortex-A8. There's a l

svn commit: r243523 - in head/sys/arm: arm broadcom/bcm2835 ti/am335x

2012-11-25 Thread Tim Kientzle
Author: kientzle Date: Sun Nov 25 16:19:12 2012 New Revision: 243523 URL: http://svnweb.freebsd.org/changeset/base/243523 Log: Fix spelling. Modified: head/sys/arm/arm/mpcore_timer.c head/sys/arm/broadcom/bcm2835/bcm2835_systimer.c head/sys/arm/ti/am335x/am335x_dmtimer.c Modified: head/s

svn commit: r243526 - head/sys/boot/uboot/lib

2012-11-25 Thread Tim Kientzle
Author: kientzle Date: Sun Nov 25 18:22:53 2012 New Revision: 243526 URL: http://svnweb.freebsd.org/changeset/base/243526 Log: Print kernel args when booting the kernel. Modified: head/sys/boot/uboot/lib/elf_freebsd.c Modified: head/sys/boot/uboot/lib/elf_freebsd.c ==

svn commit: r244939 - head/sys/arm/ti/cpsw

2013-01-01 Thread Tim Kientzle
Author: kientzle Date: Tue Jan 1 18:55:04 2013 New Revision: 244939 URL: http://svnweb.freebsd.org/changeset/base/244939 Log: Overhauled CPSW driver for TI CPSW Ethernet module (as used in AM335x SoC for BeagleBone). Among other things: * Watchdog reset doesn't hang the driver. * D

svn commit: r245064 - head/sys/arm/ti/cpsw

2013-01-05 Thread Tim Kientzle
Author: kientzle Date: Sat Jan 5 17:59:44 2013 New Revision: 245064 URL: http://svnweb.freebsd.org/changeset/base/245064 Log: While trying to track down the root cause for TX stalls in this driver, I've also had some time to evaluate the effectiveness of different watchdog strategies.

svn commit: r245068 - head/sys/arm/conf

2013-01-05 Thread Tim Kientzle
Author: kientzle Date: Sat Jan 5 20:30:10 2013 New Revision: 245068 URL: http://svnweb.freebsd.org/changeset/base/245068 Log: Prefer the new NFS modules Modified: head/sys/arm/conf/BEAGLEBONE Modified: head/sys/arm/conf/BEAGLEBONE

svn commit: r245070 - head/sys/arm/ti/cpsw

2013-01-05 Thread Tim Kientzle
Author: kientzle Date: Sat Jan 5 20:37:40 2013 New Revision: 245070 URL: http://svnweb.freebsd.org/changeset/base/245070 Log: Shuffle the TX underrun to work the same way as the RX underrun, as suggested by YongHyeon PYUN. Modified: head/sys/arm/ti/cpsw/if_cpsw.c Modified: head/sys/arm/ti

svn commit: r245672 - head/sys/arm/ti

2013-01-19 Thread Tim Kientzle
Author: kientzle Date: Sat Jan 19 17:12:23 2013 New Revision: 245672 URL: http://svnweb.freebsd.org/changeset/base/245672 Log: Clarify the error messages for unrecognized pins and muxtypes. Modified: head/sys/arm/ti/ti_scm.c Modified: head/sys/arm/ti/ti_scm.c

svn commit: r245673 - head/sys/boot/fdt/dts

2013-01-19 Thread Tim Kientzle
Author: kientzle Date: Sat Jan 19 17:22:12 2013 New Revision: 245673 URL: http://svnweb.freebsd.org/changeset/base/245673 Log: Use correct GPIO interrupt lines. Modified: head/sys/boot/fdt/dts/beaglebone.dts Modified: head/sys/boot/fdt/dts/beaglebone.dts =

svn commit: r245703 - head/sys/boot/fdt/dts

2013-01-20 Thread Tim Kientzle
Author: kientzle Date: Mon Jan 21 01:02:49 2013 New Revision: 245703 URL: http://svnweb.freebsd.org/changeset/base/245703 Log: Use correct size for AM335x CPSW memory window. Modified: head/sys/boot/fdt/dts/beaglebone.dts Modified: head/sys/boot/fdt/dts/beaglebone.dts ===

svn commit: r246228 - head/sys/arm/conf

2013-02-01 Thread Tim Kientzle
Author: kientzle Date: Sat Feb 2 06:01:57 2013 New Revision: 246228 URL: http://svnweb.freebsd.org/changeset/base/246228 Log: Tweaks to standard BEAGLEBONE config, as recently discussed on FreeBSD-ARM. Modified: head/sys/arm/conf/BEAGLEBONE Modified: head/sys/arm/conf/BEAGLEBONE =

svn commit: r246229 - in head/contrib/libarchive/libarchive: . test

2013-02-01 Thread Tim Kientzle
Author: kientzle Date: Sat Feb 2 06:06:39 2013 New Revision: 246229 URL: http://svnweb.freebsd.org/changeset/base/246229 Log: Fix an obvious typo that broke time specifications of the form "2 hours ago". Modified: head/contrib/libarchive/libarchive/archive_getdate.c head/contrib/libarchi

svn commit: r246276 - head/sys/arm/ti/cpsw

2013-02-02 Thread Tim Kientzle
Author: kientzle Date: Sun Feb 3 01:08:01 2013 New Revision: 246276 URL: http://svnweb.freebsd.org/changeset/base/246276 Log: Another overhaul of the CPSW driver for BeagleBone Major changes: * Finally tracked down the flow control setting that seems to have been causing TX stall

Re: svn commit: r245803 - in head: . gnu/usr.bin share/man/man5 share/mk usr.bin/dtc

2013-02-03 Thread Tim Kientzle
I'm finding it rather annoying that dtc isn't installed on systems that use device trees. Would there be any negative fallout from installing /usr/bin/dtc as part of the regular world? Tim P.S. In particular, I'm moving away from compiled-in device trees (in favor of having the loader read it fr

svn commit: r238185 - head/usr.bin/mkesdb

2012-07-06 Thread Tim Kientzle
Author: kientzle Date: Sat Jul 7 04:14:28 2012 New Revision: 238185 URL: http://svn.freebsd.org/changeset/base/238185 Log: Unbreak building WITH_ICONV=yes and new yacc. Modified: head/usr.bin/mkesdb/ldef.h Modified: head/usr.bin/mkesdb/ldef.h

  1   2   >