Re: openjdk6 broken on current

2013-05-08 Thread Jeremy Messenger
On Wed, May 8, 2013 at 8:29 AM, Larry Rosenman l...@lerctr.org wrote:
 Can SOMEONE please look at this?

 I have a real need to get java back on my -CURRENT server soon.

Roll back your -CURRENT and you will have your server running already.

 Thanks!


 On 2013-05-07 10:18, Alexander Yerenkow wrote:

 Can anyone look into latest changes in swapcontext?

 http://svnweb.freebsd.org/base/head/lib/libthr/thread/thr_sig.c?sortby=dateview=log
 [1]

 Seems some of it broke openjdk6 (more in java@ list archive).
 Thanks.

 2013/5/7 Larry Rosenman l...@lerctr.org

 On 2013-05-07 02:10, Alexander Yerenkow wrote:

 Then seems that's it - swapcontext change probably culprit.
 I got rechecked generated classes at other pc - classes are fine,
 same command with classes from 10-current not segfaulting in a bit
 older 10-current.
 Thank you Larry for access, I'm done there :)

 Any idea(s) on how to fix it?

 2013/5/7 Larry Rosenman l...@lerctr.org

 Alexander Yerenkow yeren...@gmail.com wrote:

 2013/5/7 Larry Rosenman l...@lerctr.org

 I have 64G ram.

 and I have workdir saved.

 who wants an SSH account to look at and fix it?

 Okay, while we are here, here is backtrace from executing java while
 building port openjdk6:

 #0 0x000801e2da93 in JVM_handle_bsd_signal () from
 /usr/ports/java/openjdk6/work/build/bsd-amd64/lib/amd64/server/libjvm.so
 #1 0x000800a49116 in swapcontext () from /lib/libthr.so.3
 #2 0x000800a48d39 in sigaction () from /lib/libthr.so.3
 #3 0x71d3 in ?? ()
 #4 0x000800a48c20 in sigaction () from /lib/libthr.so.3
 #5 0x000801ba9540 in Deoptimization::unpack_frames () from
 /usr/ports/java/openjdk6/work/build/bsd-amd64/lib/amd64/server/libjvm.so
 #6 0x000803869f7e in ?? ()
 #7 0x7fbfa080 in ?? ()
 #8 0x00080383b828 in ?? ()
 #9 0x00080685e6e0 in ?? ()
 #10 0x00080684f000 in ?? ()
 #11 0x7fbfa0d0 in ?? ()
 #12 0x7fbfa148 in ?? ()
 #13 0x00080308f000 in ?? ()
 #14 0x000806bab450 in ?? ()
 #15 0x000803869eb9 in ?? ()
 #16 0x in ?? ()

 Is there any known significant changes about libthr (or any other ) before
 r250047 ?

 There were some commits around swapcontext recently
 --
 Sent from Kaiten Mail. Please excuse my brevity.

 --
 Regards,
 Alexander Yerenkow

 --
 Larry Rosenman http://www.lerctr.org/~ler [2]
 Phone: +1 214-642-9640 [3] (c) E-Mail: l...@lerctr.org
 US Mail: 430 Valona Loop, Round Rock, TX 78681-3893

 --
 Regards,
 Alexander Yerenkow

 Links:
 --
 [1]

 http://svnweb.freebsd.org/base/head/lib/libthr/thread/thr_sig.c?sortby=dateamp;view=log
 [2] http://www.lerctr.org/~ler
 [3] tel:%2B1%20214-642-9640


 --
 Larry Rosenman http://www.lerctr.org/~ler
 Phone: +1 214-642-9640 (c) E-Mail: l...@lerctr.org
 US Mail: 430 Valona Loop, Round Rock, TX 78681-3893
 ___
 freebsd-hackers@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
 To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org



--
mezz.free...@gmail.com - m...@freebsd.org
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/ - gn...@freebsd.org
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to freebsd-hackers-unsubscr...@freebsd.org


preallocate files without (posix_)fallocate or fcntl's F_PREALLOCATE?

2008-11-05 Thread Jeremy Messenger

Hello folks,

At first, I don't really know C that well so... It's more of request or  
suggest if anyone is bored or interest to port on FreeBSD. :-)


Recently, Transmission has added preallocate files to prevent disk  
fragmentation but FreeBSD does not has any of (posix_)fallocate or fcntl's  
F_PREALLOCATE (checked in RELENG_7's src/* and manpages). Here's what it  
looks like:



static int
preallocateFile( int fd UNUSED, uint64_t length UNUSED )
{
#ifdef HAVE_FALLOCATE

return fallocate( fd, 0, offset, length );

#elif defined(HAVE_POSIX_FALLOCATE)

return posix_fallocate( fd, 0, length );

#elif defined(SYS_DARWIN)

fstore_t fst;
fst.fst_flags = F_ALLOCATECONTIG;
fst.fst_posmode = F_PEOFPOSMODE;
fst.fst_offset = 0;
fst.fst_length = length;
fst.fst_bytesalloc = 0;
return fcntl( fd, F_PREALLOCATE, fst );

#else

#warning no known method to preallocate files on this platform
return -1;

#endif
}


You can see a bit more over at  
http://trac.transmissionbt.com/changeset/7051 .. You can also point me to  
some sources if it exists for I can try do it by myself, but with lacking  
C knowledge is a bit hard for me at the most of time. I don't know if UFS  
does not need or does need it. If anyone is interesting to write simple  
one for FreeBSD will be cool. Thanks!


Cheers,
Mezz


--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: need help with vbox

2008-10-16 Thread Jeremy Messenger

On Thu, 16 Oct 2008 05:17:47 -, Desmond Chapman
[EMAIL PROTECTED] wrote:



It's dependent upon kbuild. Since the developers have no intention of  
fixing the issue, I would like a tutorial on converting the kmk file to  
a normal Makefile.


I think you are barking at the wrong tree. :-) I don't think the issue is  
in kBuild. It looks like an issue is in devel/kbuild/Makefile in the  
do-install target part.


http://pointyhat.freebsd.org/errorlogs/sparc64-errorlogs/e.6.20080731104323/kBuild-0.1.3.log


	(cd ${WRKSRC}/out/freebsd.${MACHINE_ARCH}/release${PREFIX}/bin   
${COPYTREE_BIN} \* ${PREFIX}/bin)




# make -V COPYTREE_BIN
/bin/sh -c '(/usr/bin/find -d $0 $2 | /usr/bin/cpio -dumpl $1 /dev/null  
21)   /usr/sbin/chown -R root:wheel $1   /usr/bin/find $1 -type d  
-exec chmod 755 {} \;   /usr/bin/find $1 -type f -exec chmod 555 {} \;'  
--



So.. See that $1, it is ${PREFIX}/bin. It's a bug. The COPYTREE_BIN can't  
have ${PREFIX}/bin. I suggest you to not use COPYTREE_BIN, so do the  
different method should solve kbuild ports problem. I personal haven't use  
COPYTREE_* before, so possible misuse COPYTREE_BIN or just can't have  
${PREFIX}/bin (uncheck in bsd.port.mk/document).


BTW: Add CC'ing to freebsd-ports@ to make its search useful.

Cheers,
Mezz


--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Laptop suggestions?

2008-07-25 Thread Jeremy Messenger

On Thu, 24 Jul 2008 09:34:32 -0500, Frank Mayhar [EMAIL PROTECTED] wrote:


My old Dell Inspiron 5160 has developed problems that I can't fix, sigh,
so it's time to replace it.  I'm hoping for some good suggestions from
this list (cc'd to hackers for the exposure, I know everyone doesn't
read -mobile).

My criteria:
  * 3D acceleration.
  * MiniPCI wireless (don't care which card, I'll replace it
anyway).
  * At least 15 screen.
  * Decent power consumption.
  * Plays well with FreeBSD 7-stable.

Nice to have:
  * Dual core.
  * 4GB memory.
  * Working suspend/hibernate mode (and no, I'm not holding my
breath).

So, suggestions?  BTW, if I get a decent response I'll summarize it for
the list, along with the one I chose and my experience after
ordering/installing it.


Maybe you can wait for this:

http://www.ixsystems.com/products/bsd-laptop.html

I didn't compare your requirements in there, thought.

Cheers,
Mezz


--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: vkernel GSoC, some questions

2008-03-16 Thread Jeremy Messenger
On Sun, 16 Mar 2008 01:30:25 -0500, David O'Brien [EMAIL PROTECTED]  
wrote:



On Sat, Mar 15, 2008 at 02:58:40PM +0200, Jordan Gordeev wrote:

I am a student who considers applying for Google's Summer of Code
programme.
One of my ideas for a GSoC project has the following synopsis:

   Add virtual kernel (vkernel) support to FreeBSD for the i386 and  
amd64

architectures.

The vkernel support in question is the one found in DragonFlyBSD.


Not being up on DragonFlyBSD, can you better describe what vkernel is?


http://leaf.dragonflybsd.org/cgi/web-man/?command=vkernelsection=ANY

vkernel, vcd, vkd, vke -- virtual kernel architecture

Cheers,
Mezz


--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ATAPI dvdreader always fails on a particular DVD movie title

2008-01-19 Thread Jeremy Messenger

On Sat, 19 Jan 2008 16:19:37 -0600, Josh Paetzel [EMAIL PROTECTED] wrote:


On Saturday 19 January 2008 12:30:06 pm Joshua Isom wrote:

On Jan 19, 2008, at 10:03 AM, Doug Barton wrote:
 Yuri wrote:
 I tried to make a backup copy of one DVD that I own and 'dvdbackup'
 always fails at a particular point.

 Would the dvds in question happen to be Sony movies? If so a web
 search might be useful to you.

 Doug

Not only that, but do you actually see a DVD logo?  Disney movies use
Disney DVD which is incompatible with the DVD specification.



Sony isn't the only maker of DVDs that has goo in them that will confuse
libdvdcss.

In a nut shell, in many places it's illegal to use 'nonauthorized' tools  
(like
libdvdcss) to decrypt DVDs for any purpose (including playback).  On top  
of
that, the underlying tool used by nearly everything that reads movie  
DVDs on
FreeBSD (libdvdcss) is unmaintained by anyone upstream, as time goes on  
more
and more dvds are released that it either can't decrypt or are able to  
choke

it.


It's why I am still keeping WinXP in USB flash drive (2gb) for I can use  
AnyDVD and other nice tools for rip DVD movie. Rip DVD movie in  
Linux/FreeBSD suck and don't work for me.


Cheers,
Mezz


--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team  -  FreeBSD Multimedia Hat (ports, not src)
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
http://wiki.freebsd.org/multimedia  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


sem_open(3) BUGS, must be less than 14 characters still true?

2007-11-14 Thread Jeremy Messenger

Hello folks,

I am maintaining for net-p2p/linuxdcpp, I noticed that in pkgsrc has a  
patch for linuxdcpp to make the characters less than 14 in sem_open() to  
fix bug. I am wondering how I can reproduce this problem? I run linuxdcpp  
pretty often and I don't see any problem. It makes me wondering if less  
than 14 characters isn't true anymore or I just have to look harder to  
find this bug? Thanks.


Cheers,
Mezz


--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team  -  FreeBSD Multimedia Hat (ports, not src)
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
http://wiki.freebsd.org/multimedia  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: VirtualBox?

2007-09-04 Thread Jeremy Messenger

On Tue, 04 Sep 2007 08:33:50 -0500, Ivan Voras [EMAIL PROTECTED] wrote:


Hi,

Is anyone working on porting VirtualBox?

http://www.virtualbox.org/wiki/Porting_VirtualBox

It mentions FreeBSD but nothing conclusive. It should be easier than
VMWare :)


http://www.virtualbox.org/wiki/VBox_vs_Others (see in host box)
http://www.virtualbox.org/wiki/FreeBSD%20build%20instructions
http://www.virtualbox.org/search?q=freebsdwiki=onchangeset=onticket=on

It looks like they are working on it.

Cheers,
Mezz


--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team  -  FreeBSD Multimedia Hat (ports, not src)
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
http://wiki.freebsd.org/multimedia  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portupgrade O(n^m)?

2007-02-15 Thread Jeremy Messenger

On Thu, 15 Feb 2007 12:17:00 -0600, [EMAIL PROTECTED] wrote:

snip

=
Pros:
=
-It's written in python (portable).


Isn't our more portable for hardware than Python? Also, it is smaller?

-It's a system which focuses on ports compilation from source, not  
binary package installation.


This is very cons. The ports can do both, so it is more flexible and is  
pros than this. In our ports tree, you can even choice to create your own  
packages, install your own packages that was built by you, use FreeBSD  
packages or compile by via ports tree.


-Stores information in a db format (not Berkeley DB, but something  
different)for entire system in a common file; stores installed leaf  
package information in another simple textfile.
-Has flags for stability reasons, since some packages are alpha or beta  
and don't compile under certain architectures.


No thanks, I am against this. I have seen the messy over at Gentoo's  
forums for you can't do the mix very well. Our ports have the better  
stability than their for in both stable and bleeding edge at the same  
time. I have used Gentoo before very long time ago and it is too often to  
break stuff, I personal prefer Slackware or Ubuntu over Gentoo and portage  
anytime for Linux.



-Portage files are fetched via rsync.


What is speical about it if you put rsync as in Cons? Why replace it when  
CVSup works fine?


http://www.gentoo.org/news/en/gwn/20021223-newsletter.xml#doc_chap2_sect4

I do realize that it's 2002.

-Has separate portage files which are phased out over time, in case the  
portage maintainers move the files in one release. The maintainers then  
create an informative message which describes what's going on while  
emerging the package or going through the portage database. If possible  
the outdated package is pruned and the newer, more recent dependency is  
merged.


I don't think I like this. Same comments for this in the first top.


=
Cons:
=
-It's written in python (not fast).


And it is not in base system. It requires Python to be install in the  
different way when our package system is based on Python. And Python  
breaks script more often than what we have in base system.



-Uses rsync.


Why put rsync in Pros too? :-)


==
Point:
==

snip

===
In light of previous statement:
===

I wasn't trying to port the pkg_* and port* utils to C++ thinking that I  
would magically get more optimized code. Sure, C++ is much better than  
ruby at optimizations if done correctly, but C++ is also easier to screw  
up than ruby or perl or python, because you have the power to shoot  
yourself in the foot easier (not as much as C or ASM, but close).


The point was that with C++ we could finally get a set of standardized  
tools and a common interface for FreeBSD for managing ports / packages  
which could be included in the base system, not a bunch of little  
specialized tools and packages.


If you can make C or C++ or whatever what we have in the base system tools  
better (is a must) than what we have now in ports tree, then I have no  
problem with it. Go ahead write it, but do expect for that it will be hard  
to get us to accept for our ports tree to change over to use new tools.


Cheers,
Mezz

I'll have to approach this problem from a black box perspective and be  
carefully in planning this out, but my goal is to be as backwards  
compatible friendly as possible or at least provide migration tools to  
ease the move from the old system to the new one.


Again, if anyone is interested in helping me out, it would be more than  
welcome. That way we could ensure that the project gets done in a timely  
manner and can reduce bugs and think of better solutions (more people  
can help in thinking out of the box, the larger the group).


Thanks,
-Garrett

PS Please reply on the @hackers list, if possible.



--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team  -  FreeBSD Multimedia Hat (ports, not src)
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
http://wiki.freebsd.org/multimedia  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portmaster and local ports (Was: Re: portupgrade O(n^m)?)

2007-02-15 Thread Jeremy Messenger

On Thu, 15 Feb 2007 15:54:29 -0600, Doug Barton [EMAIL PROTECTED] wrote:


David Gilbert wrote:

Jeremy == Jeremy Messenger [EMAIL PROTECTED] writes:


Jeremy Give ports-mgmt/portmaster a try.

I just did.  One flaw it has is that I have two no longer supported
ports installed.


What do you mean by no longer supported?


I want to run portmaster -a, but when it finds tund
(and I assume it would also stop for xsysinfo), it stops.


What do you mean it stops? Are you getting, Cannot cd to port
directory? If so, one possible fix is to not fail if the port has an


I was wondering about that too, because it has never stop when I don't  
have any of ports in /usr/ports. Sometimes, when I forgot test some  
unoffical ports that aren't exist in ports tree and the portmaster has  
never stop. It only will tell about that it doesn't exists in ports tree  
and MOVED. But, I have not tried to run portmaster that I keep same port  
name with MOVED has a line about that port is removed yet.



+IGNOREME file, but rather to issue a non-fatal warning. Would that
work for you? I don't want to skip the port altogether at this point,
since even if you have an +IGNOREME file for the port you may still
want to be advised of new versions, moves, etc.


I agree with you. I always move my ports from foobar to foobar-old and use  
marcusmerge to merge some of my unoffical ports into ports tree. Perhaps,  
add something like 'Do you really want it to be ignore? [With a bit  
explain about what is in MOVED], press yes or no'? Or/and add  
+REALLYANDREALLYIGNOREME? :-)



I'd rather not just delete their package info --- it is still correct.


It is correct for ports tree, but not to you when you want to keep it. :-)


The other alternative, as already suggested, is to create a ports
skeleton for those two packages. For this purpose, all you'd need is a
Makefile with:

PKGNAME=foo-1.2.3

that matches what's in your +CONTENTS file. Adding the mechanism to
ignore these ports (with no skeleton) is probably a good idea for the
long run anyway, so if anyone has an idea besides what I suggested
above, speak up. :)


Don't know, at least, I am 100% happy with portmaster and have not use  
portupgrade for months (maybe almost a year). ;-)


Cheers,
Mezz


Doug



--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team  -  FreeBSD Multimedia Hat (ports, not src)
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
http://wiki.freebsd.org/multimedia  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portupgrade O(n^m)?

2007-02-14 Thread Jeremy Messenger

On Wed, 14 Feb 2007 11:41:33 -0600, David Gilbert [EMAIL PROTECTED] wrote:


I have 734 ports installed on my laptop right now.  I'm pretty sure,
at times, I've had over 1000 ports on my laptop.

On machine with moderate numbers of ports (most servers seem to have
50 to 200 ports), portupgrade takes a moderate amount of time to start
work.  On machines like my laptop, portupgrade seems to take much more
time to run.  I assume it's solving the dependency graph before it
decides what to upgrade first, but is this truly a O(n^2) problem?  It
seems like the implemented algorithm is O(n^2).


Give ports-mgmt/portmaster a try.

Cheers,
Mezz


Dave.



--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team  -  FreeBSD Multimedia Hat (ports, not src)
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
http://wiki.freebsd.org/multimedia  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: LinkLib Issues In freebsd Lazarus

2006-07-16 Thread Jeremy Messenger

On Sun, 16 Jul 2006 14:51:05 -0500, Bob Richards [EMAIL PROTECTED] wrote:

snip

I went back to the Lazarus source tree gmake clean; gmake and received
the following error:

  Free Pascal Compiler version 2.0.2 [2006/07/14] for i386
  Copyright (c) 1993-2005 by Florian Klaempfl
  Target OS: FreeBSD/ELF for i386
  Compiling lazarus.pp
  Linking ../lazarus
  /usr/bin/ld: cannot find -lgdk_pixbuf
  lazarus.pp(113,1) Error: Error while linking

a locate gdk_pixbuf finds: /usr/X11R6/lib/libgdk_pixbuf-2.0

So, at this point I just sym-linked my libgdk_pixbuf-2.0 to
libgdk_pixbuf: ln -s libgdk_pixbuf-2.0.a libgdk_pixbuf.a

and ran gmake again, only to produce:

Linking ../lazarus
/usr/home/bob/lazarus/lcl/units/i386-freebsd/gtk/gtkint.o(.text+0x6f65):
In function `DATASOURCEINITIALIZE':
gtkobject.inc:2309: undefined reference to `gdk_pixbuf_get_from_drawable'

Many many more undefined reference to something missing in  gdk_pixbuf.


libgdk_pixbuf-2.0 is a GTK2 stuff, not GTK1. If it's GTK1  
(libgdk_pixbuf.a) is what you need, install graphics/gdk-pixbuf. The 'ln  
-s libgdk_pixbuf-2.0.a libgdk_pixbuf.a' is incorrect and will causing more  
break stuff.



so: freebsd's stock-installed gdk_pixbuf does not contain the functions
needed! So, I went to ports and found ruby18-gdk_pixbuf2-0.14.1 a make
install provided gdk_pixbuf2.so but no gdk_pixbuf2.a !! I find it
odd that no provision is provided to link to this lib!


It is a Ruby binding, which it is not a gdk_pixbuf library that you are  
looking for.


Cheers,
Mezz


--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team  -  FreeBSD Multimedia Hat (ports, not src)
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
http://wiki.freebsd.org/multimedia  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: system password's file --failed

2005-10-17 Thread Jeremy Messenger

On Tue, 18 Oct 2005 07:17:54 -0500, [EMAIL PROTECTED] wrote:


Hi all,
I failed this steps. FreeBSD cannot recognized my username.
I will try it again. Have anybody another solution ??


Did you read link that I have given?

Cheers,
Mezz


Thanks before.
regards.


Thanks for you all,
I will do this step.

regards.


Hi,

I would suggest you to try the below and make sure this
works

1 ) Install a new freebsd server
2 ) create a user on your linux machine say with
username
freebsd and some
password
3 ) now copy the data in your /etc/passwd file of linux
machine to freebsd
machine
4 ) Also copy the /etc/shadow file to freebsd server and
renmae it as
/etc/master.passwd
5 ) Also copy /etc/groups
6 ) Now try to login to freebsd machine with the new
user
created on the
linux machine.

Note : Please create a copy of the original file on
freebsd machine before
you change the real file

If the test is successful. I suppose you can migrate
from
linux to freebsd
with all the users and their passwords.

Also while coping the file make sure that the default
enteries are there.
That just transfer the user details and not the system
user details


On 10/14/05, Jiawei Ye [EMAIL PROTECTED] wrote:


On 10/14/05, Simon Roberts [EMAIL PROTECTED]
wrote:
 Try /etc/passwd and /etc/shadow
 User id and basic stuff in passwd, the encrypted
passwords in shadow. I
 don't know if the encryption algorithms are
compatible
between linux
 and bsd or not.

 hth
 Simon
Make sure you don't have 16 chars username before
migrating. FreeBSD
doesn't support really long usernames.

Jiawei
--
Without the userland, the kernel is useless.
--inspired by The Tao of Programming



--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: system password's file

2005-10-13 Thread Jeremy Messenger

On Fri, 14 Oct 2005 05:07:42 -0500, [EMAIL PROTECTED] wrote:


Hi all,
I want to migrate from linux to freebsd. My linux box
(mail server) have alot of user (hundreds) --this is the
problem. I dont know which file which the password's file.
I dont want typing user name and its password one by one.
Beside of that, thereis possibly my users change  their
passwords.
How can I do this migrating ? (save)
I'm sorry my English is not good.


Read the whole thread:

http://lists.freebsd.org/pipermail/freebsd-isp/2004-February/001780.html

Cheers,
Mezz


Thanks before.
regrds.



--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Libc

2005-03-03 Thread Jeremy Messenger
On Thu, 3 Mar 2005 12:02:50 -0800, Ashwin Chandra [EMAIL PROTECTED] wrote:
Hey guys,
if we broke libc, and we cannot do anything at the prompt
/libexec/ld-elf.so.1: Shared object libc.so.5 not found..
what is the quick fix for this?
libmap.conf(5), but a real solution is to recompile that file.
Cheers,
Mezz
also what is the correct way of adding names to system calls in libc so  
instead of doing a syscall(445), we can actually call it by name  
like,sys_ash();

Ash

--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Makefile .for and .if expansion

2005-02-12 Thread Jeremy Messenger
On Sat, 12 Feb 2005 18:32:01 -0800, Kris Kennaway [EMAIL PROTECTED]  
wrote:

The following small makefile doesn't behave as one would naively
expect:
This problem is known to me for pretty very long time when I reported to  
Brandon D. Valentine for linux-flashplugins6 issue.. You will see in the  
Makefile that the PLUGINSDIR doesn't work that has like this:

=
do-install:
@${MKDIR} ${PREFIX}/lib/linux-flashplugin6
.for f in ${LIBFILES}
@${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/lib/linux-flashplugin6
.if exists(${PLUGINSDIR})
@${LN} -sf ${PREFIX}/lib/linux-flashplugin6/${f} ${PREFIX}/${PLUGINSDIR}
.endif
.endfor
=
Cheers,
Mezz
MANLANG?=foo 
all:
.for i in ${MANLANG}
.if empty(${i})
@echo foo ${i}
.endif
.endfor
ports-i386%make
foo foo
foo
I think this is because the .if evaluation is happening too early, and
it's not being done after the .for loop is expanded and the i variable
is set.
In order to get this to work I seem to have to do the following:
MANLANG?=foo 
.for i in ${MANLANG}
j=  ${i}
.if (${j} != \\)
.for l in ${j}
k+= ${l}
.endfor
.endif
.endfor
all:
@echo ${k}
ports-i386%make
foo
If I remove the inner .for it breaks, and if I remove the j assignment
it breaks.  Also if I try and remove the use of k and put an echo
inside the inner .for (with the all: preceding the whole loop) it
breaks.
This is extremely nasty.
Am I missing an easier way to do this?
Kris

--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: kernel iconv support?

2005-01-19 Thread Jeremy Messenger
On Wed, 19 Jan 2005 22:44:48 -0800, David Yu [EMAIL PROTECTED] wrote:
Hi folks,
I was wondering why the kernel side iconv support is so incomplete. I
mean, only XLAT and XLAT 16 converters are implemented. Is there any
reason that we don't want to put all converters into the kernel (e.g.
too large)? Or just no one wrote it?
I think the iconv support is really important in filename conversion
in some file systems, especially for non-English users. A fully
functional iconv will be good for many people.
http://www.freebsd.org/news/status/report-july-2004-dec-2004.html#Improved-Multibyte/Wide-Character-Support
David

--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Right way to test SMBus? Trying to add nForce2...

2004-09-03 Thread Jeremy Messenger
On Thu, 02 Sep 2004 16:44:35 -0500, Jeremy Messenger [EMAIL PROTECTED] wrote:
Hello,
snip
But in dmesg shows:
=
amdpm0: nForce SMBus Controller port 0-0x1f,0xec00-0xec1f irq 23 at  
device 1.1 on pci0
amdpm0: could not map i/o space
device_attach: amdpm0 attach returned 6
=

I think, I might have to change the PCI registers from 0x14 to 0x50  
and/or (not sure) 0x54, which I haven't done on this part yet. I hope, I  
have the right PCI registers number (found in google). I am going to try  
add two PCI registers (not sure how to do it yet) and I want to know how  
should I test with SMBus to make sure it works? Thanks!
snip
Changed from 0x14 to 0x50 looks like it works without throw any error.
Update dmesg shows:
=
amdpm0: nForce SMBus Controller port 0x5000-0x501f,0xec00-0xec1f irq 23  
at device 1.1 on pci0
smbus0: System Management Bus on amdpm0
=

I found a source for nForce2 SMBus[1] and it said that it has two SMBus  
interfaces (0x50 and 0x54) in a nForce2. So.. I think, I will not hack it  
more (due to lack of C knowledge) and keep patch (attaching) it by myself  
for personal. To have one 0x50 seems work for me.

BTW: I am willing to test patch(es) if there has any.
[1]  
http://www2.lm-sensors.nu/~lm78/cvs/browse.cgi/lm_sensors2/kernel/busses/i2c-nforce2.c

Cheers,
Mezz
Cheers,
Mezz

--
mezz7 at cox.net  -  mezz at FreeBSD.org
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  gnome at FreeBSD.org--- sys/pci/amdpm.c.origThu Sep  2 11:24:09 2004
+++ sys/pci/amdpm.c Fri Sep  3 01:11:02 2004
@@ -73,10 +73,11 @@
 /* nVidia nForce chipset */
 #define AMDPM_VENDORID_NVIDIA 0x10de
 #define AMDPM_DEVICEID_NF_SMB 0x01b4
+#define AMDPM_DEVICEID_NF2_SMB 0x0084
 
 /* PCI Configuration space registers */
 #define AMDPCI_PMBASE 0x58
-#define NFPCI_PMBASE  0x14
+#define NFPCI_PMBASE  0x50
 
 #define AMDPCI_GEN_CONFIG_PM 0x41
 #define AMDPCI_PMIOEN (17)
@@ -167,7 +168,8 @@
}
 
if ((vid == AMDPM_VENDORID_NVIDIA) 
-   (did == AMDPM_DEVICEID_NF_SMB)) {
+   ((did == AMDPM_DEVICEID_NF_SMB) ||
+(did == AMDPM_DEVICEID_NF2_SMB))) {
device_set_desc(dev, nForce SMBus Controller);
 
/* 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Right way to test SMBus? Trying to add nForce2...

2004-09-02 Thread Jeremy Messenger
Hello,
I got a new motherboard; it is MSI K7N2 Delta2 Platinum (MS-6570E-010).
http://www.msicomputer.com/product/p_spec.asp?model=K7N2_Delta2_Platinumclass=mb
Right now, I am playing with the sys/pci/amdpm.c by add IDs. It's my first  
time to poke in the drivers code with no C knowledge, so please try to  
speak in English. :-)

Before pciconf:
=
[EMAIL PROTECTED]:1:1:	class=0x0c0500 card=0x57001462 chip=0x008410de rev=0xa1  
hdr=0x00
vendor   = 'NVIDIA Corporation'
device   = 'nForce PCI System Management'
class= serial bus
subclass = SMBus
=

After pciconf:
=
[EMAIL PROTECTED]:1:1:	class=0x0c0500 card=0x57001462 chip=0x008410de rev=0xa1  
hdr=0x00
vendor   = 'NVIDIA Corporation'
device   = 'nForce PCI System Management'
class= serial bus
subclass = SMBus
=

But in dmesg shows:
=
amdpm0: nForce SMBus Controller port 0-0x1f,0xec00-0xec1f irq 23 at  
device 1.1 on pci0
amdpm0: could not map i/o space
device_attach: amdpm0 attach returned 6
=

I think, I might have to change the PCI registers from 0x14 to 0x50 and/or  
(not sure) 0x54, which I haven't done on this part yet. I hope, I have the  
right PCI registers number (found in google). I am going to try add two  
PCI registers (not sure how to do it yet) and I want to know how should I  
test with SMBus to make sure it works? Thanks!

So far the patch looks like this:
=
--- sys/pci/amdpm.c.origThu Sep  2 11:24:09 2004
+++ sys/pci/amdpm.c Thu Sep  2 12:20:01 2004
@@ -73,6 +73,7 @@
 /* nVidia nForce chipset */
 #define AMDPM_VENDORID_NVIDIA 0x10de
 #define AMDPM_DEVICEID_NF_SMB 0x01b4
+#define AMDPM_DEVICEID_NF2_SMB 0x0084
 /* PCI Configuration space registers */
 #define AMDPCI_PMBASE 0x58
@@ -167,7 +168,8 @@
}
if ((vid == AMDPM_VENDORID_NVIDIA) 
-   (did == AMDPM_DEVICEID_NF_SMB)) {
+   ((did == AMDPM_DEVICEID_NF_SMB) ||
+(did == AMDPM_DEVICEID_NF2_SMB))) {
device_set_desc(dev, nForce SMBus Controller);
/*
=
Cheers,
Mezz
--
mezz7 at cox.net  -  mezz at FreeBSD.org
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  gnome at FreeBSD.org
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: POSIX Threads

2004-01-26 Thread Jeremy Messenger
On Wed, 29 Oct 2003 13:10:53 +0100, Isaac Gelado [EMAIL PROTECTED] wrote:

snip
But, when the server is running under FreeBSD 5.0
snip

I think that you do really need to update your machine to 5.1-CURRENT for 
the threads. It's a lot improvement from 5.0, but I have no idea if it 
will solve your problem in that area. At least, you can help with the 
developers to keep the things up to date.

Cheers,
Mezz
--
bsdforums.org 's moderator, mezz.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: POSIX Threads

2004-01-26 Thread Jeremy Messenger
On Tue, 27 Jan 2004 01:19:43 +0100, ISAAC GELADO FERNANDEZ [EMAIL PROTECTED] 
wrote:



- Mensaje original -
De: Jeremy Messenger [EMAIL PROTECTED]
Fecha: MiƩrcoles, Octubre 29, 2003 6:33 pm
Asunto: Re: POSIX Threads
On Wed, 29 Oct 2003 13:10:53 +0100, Isaac Gelado [EMAIL PROTECTED] wrote:

snip
 But, when the server is running under FreeBSD 5.0
snip
I think that you do really need to update your machine to 5.1-
CURRENT for
the threads. It's a lot improvement from 5.0, but I have no idea if
it
will solve your problem in that area. At least, you can help with
the
developers to keep the things up to date.
I recently upgraded my system to 5.2 and now all works perfectly.
Check the date of this email; it was from Oct 29th, 2003 :-) Something 
is going crazy in the mailing list, I am getting over 70 to 80 old stuff 
coming in my inbox. Ugh..

Cheers,
Mezz
Cheers,
Mezz
--
bsdforums.org 's moderator, mezz.


--
bsdforums.org 's moderator, mezz.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: PUzzling sshd behaviour

2003-09-08 Thread Jeremy Messenger
On Mon, 8 Sep 2003 22:27:27 +0200, Andreas Klemm [EMAIL PROTECTED] 
wrote:

On Sun, Sep 07, 2003 at 02:55:10AM +0100, Bruce M Simpson wrote:
On Sat, Sep 06, 2003 at 10:54:35PM -0300, Daniel C. Sobral wrote:
 Bruce M Simpson wrote:
 On Fri, Sep 05, 2003 at 08:46:46AM -0700, Kris Kennaway wrote:
 The fact that sshd requires reverse IP resolution is well-known
 behaviour.  It's probably the most common FAQ about sshd (Why is my
 login taking 60 seconds to present the password prompt?).
 
 But what about:
  VerifyReverseMapping
  Specifies whether sshd should try to verify the remote 
host
  name
  and check that the resolved host name for the remote IP
  address
  maps back to the very same IP address.  The default is 
``no''.

 AFAIK, that means the reverse mapping result will not be held against
 you. :-)

This sounds like a bug. Does anyone else agree?
Yes and I really needed this functionality in a project for 12 Suns...

But it didn't work as expected from the description.

And for me a functionality like being able to prevent reverse lookup
would be completely logical ...
Result was to create about 20 /etc/hosts entries on every sun, to
prevent this 60 seconds timeout for our Out Of Band login via VPN
and from sun to sun etc etc
My solution is to install and setup dnscache to do the local DNS cache.

Cheers,
Mezz
	Andreas ///


--
bsdforums.org 's moderator, mezz.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: PUzzling sshd behaviour

2003-09-08 Thread Jeremy Messenger
On Mon, 8 Sep 2003 23:13:06 +0200, Andreas Klemm [EMAIL PROTECTED] 
wrote:

On Mon, Sep 08, 2003 at 03:59:51PM -0500, Jeremy Messenger wrote:
My solution is to install and setup dnscache to do the local DNS cache.
DNS cache sounds like it caches DNS records after a successfull
DNS query, right ?
The problem at my clients project was, that the DNS server
a) wasn't reachable from time to time because they played
   around with a pix firewall in a cat6k
b) these particular OOB IPs and the sun's IPs were not in
   DNS database
So ... I assume a dns *cache* wouldn't have brought any better
functionality. We still would have needed a functionality in
sshd, to turn off reverse lookup entirely ...
The suns have already been secured by firewalls so no real need
for this reverse lookup feature.
I use tinydns and dnscache to do the local DNS, so I don't have to touch 
the /etc/hosts anymore. The /etc/hosts is just pain in my ass. It solved 
all of my SSH and other reverse lookup problems. Current, I have the split 
horizon DNS[1] setup for the internal and external DNS queries separate.

[1] http://www.fefe.de/djbdns/#splithorizon

Great article about djbdns on FreeBSD can be found at 
http://ezine.daemonnews.org/200210/ezdjbdns.html ..

Cheers,
Mezz
	Andreas ///


--
bsdforums.org 's moderator, mezz.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: bcm4400

2003-08-25 Thread Jeremy Messenger
On Mon, 25 Aug 2003 15:00:47 -0500, mike [EMAIL PROTECTED] wrote:

Hello,
I am trying to find this driver.  It is a broadcom 4400.. I ran slackware 
and found a suitable driver, now switching to freebsd I cant find one, I 
was hoping someone has.  Thanks
Check - http://lists.freebsd.org/pipermail/freebsd-hackers/2003- 
August/002765.html

Cheers,
Mezz
--
bsdforums.org 's moderator, mezz.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Where / how to begin the FreeBSD development journey?

2003-07-21 Thread Jeremy Messenger
On 21 Jul 2003 22:30:39 -0500, Shawn [EMAIL PROTECTED] wrote:

I've recently setup and started using Free-BSD 5.1 as my desktop at home
and was looking to find more information about getting started in
contributing to the Free-BSD project.
What piqued my interest is the well organised clean Free-BSD kernel, and
the vast wealth of documentation on using the system. Also, the general
attitude of the Free-BSD community seems to be far more mature than that
of many other operating systems projects that seem to be appearing all
over lately. While I am no master of the trade so to speak, I have seen
lots of code over the last 10 years or so, and reading the Free-BSD
kernel code is quite pleasant and enjoyable in comparison.
The responsiveness and stability of Free-BSD 5.1 on my system have
convinced me enough that I've switched my personal development desktop
and email to Free-BSD 5.1, it really is that wonderful.
Now before anyone floats away from all the hot air I've blown, I was
wondering if there were any other recommended pieces of reading material
that might be helpful in better understanding Free-BSD's architecture
and design. I am aware of Tannenbaum's books, and I also own a few Linux
Kernel books as well.
As well, I have read through most of the documentation already
(certainly all that was available in the installer), and did not find
any specific mentions of how one should begin to familiarise themselves
with FreeBSD's internals and so forth. I did however find some
recommendations to read 'The Design and Implementation of the 4.4 BSD
Operating System', which I recently obtained and have begun.
I did peruse the bugs list at the FreeBSD web site curious as to what
the current outstanding issue list was, and felt compelled to see if
there was anything left open that I might put my hand to and felt a bit
overwhelmed. I noticed that there are over 2,000 some entries with some
dating as far back as 1996. So, I wasn't exactly sure where one would
begin there either.
An acquaintance of mine had suggested that I should involve myself with
the newly founded DragonFly BSD project. But, I felt that I would rather
start here first.
So where or how does one begin the journey?
Is this http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers- 
handbook/ what you are looking for? Also, you can try to check 
http://www.freebsd.org/docs.html ..

Cheers,
Mezz
--
bsdforums.org 's moderator, mezz.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: failed freebsd 5.1 install

2003-07-09 Thread Jeremy Messenger
On Tue, 8 Jul 2003 22:56:52 -0700, Greg Kutzbach [EMAIL PROTECTED] wrote:

Motherboard
Intel VS440FX Motherboard 
http://www.intel.com/support/motherboards/desktop/VS440FX/
84MB RAM
IBM 40GP Hard drive
removed all PCI cards except video
Running Matrox MGA 4MB video
Pentium Pro 200
IDE Generic CD Rom (secondary master)

Error**

CD Loader 1.01

Building the boot loader arguments
Looking up /BOOT/LOADER... Found
Relocating the loader and the BTX
Starting the BTX loader
BTX loader 1.00 BTX version is 1.01

int=0005 err= efl=00010286 eip=0001c8a4
eax=00a3 abx= ecx= edx=
esi=cce65d00 edi= ebp= esp=0009407c
cs=002b ds=0033 es=0033 fs=0033 gs=0033 ss=0033
cs:eip=62 6f 6f 74 2e 6e 65 74-69 66 2e 69 70 00 62 6f
6f 74 2e 6e 65 74 69 66-2e 6e 65 74 6d 61 73 6b
ss:esp=00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00
**
I had the same problem before and it turned out that one of my ram stick 
was bad. Maybe, you should check your ram too.

Cheers,
Mezz
Greg Kutzbach
AIM: groggory
[EMAIL PROTECTED]


--
bsdforums.org 's moderator, mezz.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Panic on boot on Quadri 700Mhz Intel ...

2003-06-24 Thread Jeremy Messenger
On 24 Jun 2003 10:14:55 -, [EMAIL PROTECTED] wrote:

Hi,

I boot on Freebsd 4.8 Release or 5.1 Release,

I have panic with 4.8 :
int=000d  err=  efl=00030006  eip=06a6
eax=000cd095  ebx=02900116  ecx=0004  edx=0080
esi=323b  edi=3228  ebp=03e6  esp=03cc
cs=c980  dx=c980  es=9c80fs=9c80  gs=9c80  ss=9a3e
cs:eip=26 0f 01 14 0f 20 c0 0c-01 0f 22 c0 eb 00 b8 10
ss:esp=0c 32 59 01 90 02 95 09-80 9b 82 02 e9 04 a6 e9
BTX halted
and panic with 5.1 :

CD Loader 1.01

Building the boot loader arguments
Looking up /BOOT/LOADER... Found
Relocating the loader and the BTX
Starting the BTX loader
BTX loader 1.00 BTX version 1.01
Console: internal video/keyboard
BIOS CD is cd0
BIOS drive A: is disk0
int=000d  err=  efl=00030006  eip=06a6
eax=000cd095  ebx=02900116  ecx=0004  edx=0080
esi=323b  edi=3228  ebp=03e6  esp=03cc
cs=c980  dx=c980  es=9c80fs=9c80  gs=9c80  ss=9a3b
cs:eip=26 0f 01 14 0f 20 c0 0c-01 0f 22 c0 eb 00 b8 10
00 8e d8 8e c0 8e e8 8e-e0 0f 20 c0 24 fe 0f 22
ss:esp=0c 32 59 01 90 02 95 09-80 9b 46 02 e9 04 a6 e9
97 02 00 0c 00 00 80 9b-00 00 e0 43 00 f0 8d a1
BTX halted
this host have 2Go ram.
and Intel Raid Integrated (Raid5 on Ultra160)
It happened on me some weeks ago and it turned out that one of my stick ram 
was bad. I replaced to a new one (lifetime warranty) stick ram and it fixed 
the problem. So, you might want to test on the ram too.

Cheers,
Mezz
I tested boot without panic on netbsd161/openbsd33.

Regard.

PS: Im not subscribed in list, please CC to me.


--
bsdforums.org 's moderator, mezz.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]