Re: MacBookPro7,1 and FreeBSD 8.1

2010-11-14 Thread Veniamin Gvozdikov
Hi. I think that I can broke my laptop %) I same found information about MacBook in the files: sys/dev/asmc/asmc.c sys/dev/asmc/asmcvar.h sys/dev/usb/input/atp.c I attached acpi dumps from this is how to http://www.projectosx.com/forum/index.php?showtopic=359 On Saturday 13 November 2010 13:40

i386 specific manual pages

2010-11-14 Thread Alexander Best
hi there, could we please have the following manual pages lib/libc/i386/sys/i386_get_ioperm.2 lib/libc/i386/sys/i386_get_ldt.2 lib/libc/i386/sys/i386_set_watch.3 (can this also be accessed?) lib/libc/i386/sys/i386_vm86.2 installed into /usr/share/man/man{2,3}/i386? they can be accessed via sysar

WITH_GPIO and obsolete files

2010-11-14 Thread Alexander Best
hi there, this patch will remove gpioctl and gpioctl.8 when WITH_GPIO was not specified in src.conf. also i just noticed that src.conf needs to be regenerated, because it's missing the WITH_GPIO description. cheers. alex -- a13x diff --git a/tools/build/mk/OptionalObsoleteFiles.inc b/tools/b

Re: i386 specific manual pages

2010-11-14 Thread Kostik Belousov
On Sun, Nov 14, 2010 at 01:55:59PM +, Alexander Best wrote: > hi there, > > could we please have the following manual pages > > lib/libc/i386/sys/i386_get_ioperm.2 > lib/libc/i386/sys/i386_get_ldt.2 > lib/libc/i386/sys/i386_set_watch.3 (can this also be accessed?) > lib/libc/i386/sys/i386_vm8

Re: i386 specific manual pages

2010-11-14 Thread Alexander Best
On Sun Nov 14 10, Kostik Belousov wrote: > On Sun, Nov 14, 2010 at 01:55:59PM +, Alexander Best wrote: > > hi there, > > > > could we please have the following manual pages > > > > lib/libc/i386/sys/i386_get_ioperm.2 > > lib/libc/i386/sys/i386_get_ldt.2 > > lib/libc/i386/sys/i386_set_watch.3

Re: The path is now set for "busybox", FreeBSD style

2010-11-14 Thread John Hein
Adrian Chadd wrote at 11:40 +0800 on Nov 14, 2010: > I've committed the below changes to -HEAD. You can now create and build your > own busybox style binary system, completely cross-compiled within the > existing Make framework. It isn't as impressive as it sounds though - a lot > of the framew

Re: Deterministic builds?

2010-11-14 Thread Erik Cederstrand
Den 12/11/2010 kl. 21.20 skrev Giorgos Keramidas: >> >> Since the SVN rev. is recorded, I think a timestamp is redundant. Any >> ideas where I can disable the timestamps in the source? > > The timestamp is not 'redundant'. It records _when_ you compiled the > sources of the kernel, which in it

Re: Deterministic builds?

2010-11-14 Thread Dimitry Andric
On 2010-11-14 21:22, Erik Cederstrand wrote: I'm curious as to why this might be useful? Would the mtime of the file not be be sufficient? I can only think of debugging purposes, but apart from the timestamp, two kernels with the same rev. would be bitwise identical, This does not have to be th

Re: Deterministic builds?

2010-11-14 Thread Erik Cederstrand
Den 14/11/2010 kl. 21.32 skrev Dimitry Andric: > On 2010-11-14 21:22, Erik Cederstrand wrote: >> I'm curious as to why this might be useful? Would the mtime of the >> file not be be sufficient? I can only think of debugging purposes, but >> apart from the timestamp, two kernels with the same rev.

Re: Deterministic builds?

2010-11-14 Thread Spörlein
On Sun, 14.11.2010 at 21:57:25 +0100, Erik Cederstrand wrote: > > Den 14/11/2010 kl. 21.32 skrev Dimitry Andric: > > > On 2010-11-14 21:22, Erik Cederstrand wrote: > >> I'm curious as to why this might be useful? Would the mtime of the > >> file not be be sufficient? I can only think of debugging

Re: Deterministic builds?

2010-11-14 Thread Giorgos Keramidas
On Sun, 14 Nov 2010 21:22:53 +0100, Erik Cederstrand wrote: >Den 12/11/2010 kl. 21.20 skrev Giorgos Keramidas: >>> Since the SVN rev. is recorded, I think a timestamp is redundant. Any >>> ideas where I can disable the timestamps in the source? >> >> The timestamp is not 'redundant'. It records

Re: WITH_GPIO and obsolete files

2010-11-14 Thread Oleksandr Tymoshenko
On 2010-11-14, at 6:27 AM, Alexander Best wrote: > hi there, > > this patch will remove gpioctl and gpioctl.8 when WITH_GPIO was not specified > in src.conf. > > also i just noticed that src.conf needs to be regenerated, because it's > missing the > WITH_GPIO description. Thanks Alexander,

Re: WITH_GPIO and obsolete files

2010-11-14 Thread Alexander Best
On Sun Nov 14 10, Oleksandr Tymoshenko wrote: > > On 2010-11-14, at 6:27 AM, Alexander Best wrote: > > > hi there, > > > > this patch will remove gpioctl and gpioctl.8 when WITH_GPIO was not > > specified > > in src.conf. > > > > also i just noticed that src.conf needs to be regenerated, becau

[PATCH] More explicit return codes for sigismember(3)

2010-11-14 Thread Garrett Cooper
Hi, I found this change kicking around my tree from a while back. It brings the manpage for sigismember(3) more in line with the POSIX definition [1] in the RETURN CODES section by explicitly noting that sigismember(3) returns 0 if a signal is valid and not a part of the set passed in. If s

[PATCH] Fix lib/libpam's include of sys/time.h

2010-11-14 Thread Garrett Cooper
libpam uses sys/time.h to pick up ctime, but it's actually defined in time.h according to POSIX and the ctime manpage. If someone could help review and commit this patch, it would be much appreciated. This is part of a much larger change to fix namespace pollution with time.h in sys/time.h.

Re: [PATCH] Fix lib/libpam's include of sys/time.h

2010-11-14 Thread Garrett Cooper
On Sun, Nov 14, 2010 at 9:14 PM, Garrett Cooper wrote: >    libpam uses sys/time.h to pick up ctime, but it's actually defined > in time.h according to POSIX and the ctime manpage. >    If someone could help review and commit this patch, it would be > much appreciated. This is part of a much large