smbfs install option for sysinstall

2005-03-01 Thread David Yeske
I modified the installer a while back to be able to install from a smb share.
 
http://futurebsd.sourceforge.net/freebsd/smbfs/

It needs a little work though.  I'm looking for some feedback although I have
tested it recently.  I have done a recent install from a Windows XP machine
joined to a domain using a share that required domain admin credentials.  

Here are a couple of issues that should be fixed.

1. I am not sure how to get the smbfs kernel support into the installer
without also putting it into the GENERIC kernel of the release.

2. If a user uses is prompted for a password, then the output will make
sysinstall look kinda funny, although the user can enter the password
properly.  There is probably a way to intercept the stdin and stdout of
mount_smbfs and have it display in a menu?  This should work similar to the
root password change option?

3. This may add too much space to the floppy installer?

4. The English used in the menus could be better.

Regards,
David Yeske



__ 
Do you Yahoo!? 
Read only the mail you want - Yahoo! Mail SpamGuard. 
http://promotions.yahoo.com/new_mail 
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


netgraph arp issues vs linux veth

2004-04-27 Thread David Yeske
I made another attempt with netgraph and I think I'm almost there, but I'm
still having some issues.  I found a linux solution called veth
http://www.geocities.com/nestorjpg/veth/ which might do the job, but I would
prefer to use netgraph if possible.  Here is some more detailed config
information.

I ran this on the spoof machine

# ngctl mkpeer . eiface hook ether
# ifconfig ngeth0 link 00:bd:03:12:12:12
# ifconfig ngeth0 192.168.10.3 netmask 255.255.255.0

# ngctl mkpeer ngeth0: bridge lower link0
# ngctl name ngeth0:lower broken
# ngctl connect fxp0: broken: lower link1
# ngctl connect fxp0: broken: upper link2
# ngctl connect ngeth0: broken: upper link3
# ngctl msg ngeth0: setpromisc 1
# ngctl msg ngeth0: setautosrc 0
# ngctl msg fxp0: setpromisc 1
# ngctl msg fxp0: setautosrc 0

# ngctl show broken:
  Name: broken  Type: bridge  ID: 0046   Num hooks: 4
  Local hook  Peer name   Peer typePeer ID Peer hook
  --  -   ---- -
  link3   ngeth0  ether0005upper
  link2   fxp0ether0004upper
  link1   fxp0ether0004lower
  link0   ngeth0  ether0005lower

on the remote machine an arp -a lists this
? (192.168.10.3) at 00:bd:03:12:12:12 on rl0 [ethernet] 
? (192.168.10.1) at 00:00:e8:5b:13:44 on rl0 permanent [ethernet]

on the spoof machine an arp -a lists this
? (192.168.10.1) at (incomplete) on ngeth0 [ethernet]
? (192.168.10.3) at 00:bd:03:12:12:12 on ngeth0 permanent [ethernet]

a sniff on the spoof machine listed this while pinging the remote machine

# tcpdump -i ngeth0 'ether host 00:00:e8:5b:13:44'
tcpdump: listening on ngeth0
14:03:30.519263 arp reply 192.168.10.1 is-at 0:0:e8:5b:13:44
14:03:33.416568 192.168.10.1  192.168.10.3: icmp: echo request
14:03:40.530562 arp reply 192.168.10.1 is-at 0:0:e8:5b:13:44
14:03:43.427175 192.168.10.1  192.168.10.3: icmp: echo request
14:03:50.540805 arp reply 192.168.10.1 is-at 0:0:e8:5b:13:44
14:03:53.437845 192.168.10.1  192.168.10.3: icmp: echo request
14:04:00.550960 arp reply 192.168.10.1 is-at 0:0:e8:5b:13:44
14:04:03.448383 192.168.10.1  192.168.10.3: icmp: echo request

a sniff on the remote machine listed this while pinging the spoof machine

# tcpdump -i rl0 'ether host 00:bd:03:12:12:12'
tcpdump: listening on rl0
14:02:24.918804 192.168.10.1  192.168.10.3: icmp: echo request
14:02:29.179263 arp reply 192.168.10.1 is-at 0:0:e8:5b:13:44
14:02:34.929051 192.168.10.1  192.168.10.3: icmp: echo request
14:02:44.939136 192.168.10.1  192.168.10.3: icmp: echo request
14:02:52.052260 arp reply 192.168.10.1 is-at 0:0:e8:5b:13:44
14:02:54.949402 192.168.10.1  192.168.10.3: icmp: echo request
14:03:02.063079 arp reply 192.168.10.1 is-at 0:0:e8:5b:13:44
14:03:04.959534 192.168.10.1  192.168.10.3: icmp: echo request
14:03:12.072830 arp reply 192.168.10.1 is-at 0:0:e8:5b:13:44

Any clues or pointers are greatly appreciated and will mean I get to deploy
FreeBSD with netgraph rather than linux with veth.

Regards,
David Yeske

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


netgraph ability

2004-04-23 Thread David Yeske
I'm in a situation where I need to emulate multiple ethernet devices with
different mac addresses.  I have gotten far enough to have this.

I ran ngctl and then ran
mkpeer . eiface hook ether

I then ran
ifconfig ngeth0 link '00:bd:03:11:21:11'
ifconfig ngeth0 192.168.20.5
ifconfig sis0 192.168.23.45

So basically I want to be able to ping / connect to 
192.168.20.5 from another box on the 192.168.23.0/24 network, and have it see
the mac address that I have set rather than the mac address of my sis0 device.
I know I can do this with vmware, but I am trying to avoid that.

Anyone know if this is possible?  Is there a way to do this with the tap device
and or arpd?

Regards,
David Yeske
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


imgact_gzip.c

2003-06-06 Thread David Yeske
imgact_gzip.c seems to be pretty stale.  Has anyone considered fixing this?  If this 
were fixed
then kldload() / linker_load_module() could deal with a gzipped .ko file, and gzipped 
elf
executables would work also?

Regards,
David Yeske

__
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


BOOTP_NFSV3

2003-06-01 Thread David Yeske
I have a suggestion to deprecate the BOOTP_NFSV3 option, and I wanted to get some 
feedback.

If NFS_ROOT and BOOTP_NFSV3 are defined, then it is a noop in sys/i386/i386/locore.s?

If NFS_ROOT is defined and BOOTP_NFSV3 is undefined then it copies in a nfs_diskless 
structure in
sys/i386/i386/locore.s?  Is this still needed?

If BOOTP_NFSV3 is defined in sys/nfsclient/bootp_subr.c, then it will attempt a nfsv3 
mount and
then fall back to a nfsv2 mount.  Should that eventually be the default behavior?

Regards,
David Yeske

__
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


swapping over nfs might be broken

2003-05-31 Thread David Yeske
I've recently set up a diskless client and I noticed something.

subnet mask 255.255.255.0 router 192.168.1.2 rootfs 
192.168.1.100:/export/photon.freebsd/root
swapfs 192.168.1.100:/export/photon.freebsd hostname photon
Adjusted interface xl0
md_lookup_swap: Swap size is 131072 KB
Mounting root from nfs:nfs:/export/photon.freebsd/root
setrootbyname failed
NFS ROOT: 192.168.1.100:/export/photon.freebsd/root
NFS SWAP: 192.168.1.100:/export/photon.freebsd

$ swapinfo
Device  1K-blocks UsedAvail Capacity  Type

Everything looks normal except for swapinfo.  It looks like nfs swapping is broken?  
Has anyone
seen this?  I have tried this with md.ko as a module or compiled into the kernel with 
the same
results.  I'm also using these flags in my kernel.

options BOOTP
options BOOTP_NFSROOT
options BOOTP_NFSV3
options BOOTP_COMPAT

My nfs server and diskless client are both running current from around may 25th.  I'm 
also running
rpc.lockd and rpc.statd on the nfs server.  I also tried setting option-129, but that 
did not
help.  Why is option-129 limited to 4 bytes?

I have also seen that setrootbyname failed message for at least a year.  Should that 
message be
removed or changed to something more useful?

Regards,
David Yeske

__
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: End-Of-Life announcement for M-Systems DiskOnChip driver (fla).

2003-02-02 Thread David Yeske
I still use this.  Users will not suddenly quit using hardware that works, they will 
start using a
different OS that works with it, or they will be stuck trying to continue to support 
an old
version of FreeBSD because it works with it.  FreeBSD is the only BSD that currently 
supports the
DOC?

Has anyone obtained a copy of the TrueFFS SDK or Boot SDK?

Does anyone have DOC hardware that could be used to insure this driver continues to 
stay alive?

Regards,
David Yeske











__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: cvs -rbranch:date + val-tags

2002-12-02 Thread David Yeske
I am still looking into the -j flag and (r)tag.  This patch was done quickly, and I am 
still
trying to see what it breaks.  I realized some of the issues I had were also broken 
with an
unpatched cvs.  So I might have broken something that is already broken.

I am looking through diff -rv1_11_2 -rHEAD in the FreeBSD repository and diff 
-rCVS1_11_2 -rHEAD
in the NetBSD repository and comparing that with -rHEAD cvs/ccvs from the cvshome 
repository.

I don't know what the CVS people think of my patch, but I based it off a patch on 
their website
that they have had for over 4 years.

http://www.cvshome.org/cyclic/cvs/dev-branch.html

I would really appreciate it if anyone would give me feedback on what they feel is 
broken about
cvs.



--- Archie Cobbs [EMAIL PROTECTED] wrote:
 David Yeske wrote:
  I am working on getting cvs more usable so I don't have to worry about
  val-tags when I have read only media, and so I can do stuff like this.
  
  cvs update -rRELENG_4:2002/10/01
  
  cvs diff -rRELENG_4:2002/09/01 -rRELENG_4:2002/09/30
  
  I would appreciate any testing or feedback.  I have tested this some,
  but it probably has bugs.
 
 Awesome! I've wanted to be able to do tags like '-rRELENG_4:2002/09/01'
 for years.. 
 
 Haven't tested your changes but the patch looks reasonable to me.
 
 ISTR that the '-j' option allows some combinations of branch + date.
 Are you aware of that? Does anything need to be rectified between
 the '-j' stuff and your changes? Also, what do the CVS people think
 of your patch?
 
 Cheers,
 -Archie
 
 __
 Archie Cobbs * Packet Design * http://www.packetdesign.com


__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



cvs -rbranch:date + val-tags

2002-12-01 Thread David Yeske
I am working on getting cvs more usable so I don't have to worry about val-tags when I 
have read
only media, and so I can do stuff like this.

cvs update -rRELENG_4:2002/10/01

cvs diff -rRELENG_4:2002/09/01 -rRELENG_4:2002/09/30

I would appreciate any testing or feedback.  I have tested this some, but it probably 
has bugs.

http://pigseye.kennesaw.edu/~dyeske/freebsd/patch-src_contrib_cvs

I have also tried modifying the HEAD branch of cvs/ccvs from cvshome, but it seems to 
blow away
the $FreeBSD$ tag with or without my patch.

Regards,
David Yeske

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Option 60: Vendor class identifier = FreeBSD:i386:pxeboot

2002-12-01 Thread David Yeske
Pxeboot currently sends PXEclient for option 60, so it is not easy to differentiate 
between
pxeboot and a real pxe client.

I modified libstand to follow the pattern per src/sys/nfsclient/bootp_subr.c, although 
maybe I
should ask for MACHINE and ostype.

I would appreciate any testing or feedback.  I have tested this some, but it probably 
has bugs.

http://pigseye.kennesaw.edu/~dyeske/freebsd/patch-src_lib_libstand

Regards,
David Yeske

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



NetBSD pkgsrc on FreeBSD

2002-11-16 Thread David Yeske
The files in this directory provide pkgsrc functionality on FreeBSD.

http://pigseye.kennesaw.edu/~dyeske/netbsd/

I used the RedHat 5.0 zoularis binaries under FreeBSD current to get digest and bmake 
going
natively.  This is not well tested, and I know very little about pkgsrc.  I had some 
trouble
getting bmake going on FreeBSD current though.  I ended up building with 
-DNO_CPU_CFLAGS and
-DNO_WERROR, although maybe the FreeBSD pkgsrc configuration should not import 
everything in
/usr/share/mk on FreeBSD.  There is also a bmake binary in the directory that was 
compiled
statically on FreeBSD stable.

Regards,
David Yeske

__
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



smbfs install option

2002-10-22 Thread David Yeske
I got a smbfs install option working a while ago before drivers.flp came around, but 
there was no
space on the floppies.  Since drivers.flp came out I have not had time to get it going 
again.

This patch is NOT up to date though.  I was wondering how I should go about making 
this usable,
and which files should be on boot.flp, mfsroot.flp, drivers.flp, or somewhere else.  
Should this
go into 5.0R, or make it into HEAD after RELENG_5 branches, or should this be applied 
to something
other than sysinstall?  Or should we not have a smbfs install option?

The diff to GENERIC is NOT implying I think GENERIC should be modifed.  I did that 
just to have
those things added to GENERIC so they would make it onto BOOTMFS.

http://pigseye.kennesaw.edu/~dyeske/freebsd/smbfs_current.patch

http://pigseye.kennesaw.edu/~dyeske/freebsd/smbfs.c

Also I modified nfs.c to make smbfs.c

Regards,
David Yeske




__
Do you Yahoo!?
Y! Web Hosting - Let the expert host your web site
http://webhosting.yahoo.com/

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



cdrom.1 build option

2002-10-22 Thread David Yeske
Most of the time I don't need cdrom images when I make release.  This patch should 
make it an
option.  It does not change the default.  If this looks ok than I can open a pr and 
submit it...

http://pigseye.kennesaw.edu/~dyeske/freebsd/patch-src_release_Makefile

Regards,
David Yeske

__
Do you Yahoo!?
Y! Web Hosting - Let the expert host your web site
http://webhosting.yahoo.com/

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



kernel + mfsroot article review

2002-10-18 Thread David Yeske
I am writing an article about a replacement for write_mfs_in_kernel, and I wanted to 
get some
feedback on the article and the patch...
 
http://pigseye.kennesaw.edu/~dyeske/freebsd/article.html

It would be very helpful if people could download the kernel and boot it and give me 
feedback.

I have only tested it on my system.  It should behave just like the installer for 
4.7-RELEASE.

If anyone has time to help me test a remote kernel boot via tftp then let me know.


More questions or comments are always appreciated...

Regards,
David Yeske

__
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos  More
http://faith.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: kernel + mfsroot article review

2002-10-18 Thread David Yeske
MD_ROOT_SIZE is only needed for write_mfs_in_kernel.  When write_mfs_in_kernel was 
removed the
code that used it was not though.  I don't think it is still being used though.  A 
couple of files
still reference it:  src/sys/dev/md/md.c has ifdefs for it, src/release/Makefile still 
compiles it
on stable, src/sys/conf/options still defines it in opt_md.h, src/sys/i386/conf/LINT 
still has an
example...

MFS_ROOT_SIZE seems to be even more stale.

phk probably knows for sure though...

--- Luigi Rizzo [EMAIL PROTECTED] wrote:
 from your patch i am a bit unclear, do you still depend on
 having MD_ROOT_SIZE or you can get rid of it ?
 
   cheers
   luigi
 
 On Fri, Oct 18, 2002 at 03:56:11PM -0700, David Yeske wrote:
  I am writing an article about a replacement for write_mfs_in_kernel, and I wanted 
to get some
  feedback on the article and the patch...
   
  http://pigseye.kennesaw.edu/~dyeske/freebsd/article.html
  
  It would be very helpful if people could download the kernel and boot it and give 
me feedback.
  
  I have only tested it on my system.  It should behave just like the installer for 
4.7-RELEASE.
  
  If anyone has time to help me test a remote kernel boot via tftp then let me know.
  
  
  More questions or comments are always appreciated...
  
  Regards,
  David Yeske
  
  __
  Do you Yahoo!?
  Faith Hill - Exclusive Performances, Videos  More
  http://faith.yahoo.com
  
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-hackers in the body of the message

__
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos  More
http://faith.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



usb stuff

2000-03-30 Thread David Yeske

I am using a usb mouse, and dlink ethernet nic connected to a belkin usb hub in 
FreeBSD 4.0R.  I
also have a "Solidtek ACK-298" keyboard, but I have not gotten any progress out of it 
in freebsd. 
Has anyone tried usb "direct connect" with freebsd?  That would be much cooler than 
plip I think...

__
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



hard drive problems

2000-03-28 Thread David Yeske

I am getting a nasty error and I would like to resolve it.  I know my hard drive is 
"ok" according
to a couple of different tests including Western Digital DLT 2.2.  Here is the error 
and after
that is my dmesg.  

ad0: UDMA ICRC READ ERROR blk# 3500173 retrying
ad0: UDMA ICRC READ ERROR blk# 3500173 retrying
ad0: UDMA ICRC READ ERROR blk# 3499709 retrying
ad0: UDMA ICRC READ ERROR blk# 3499709 retrying
ad0: UDMA ICRC READ ERROR blk# 3499709 retrying
ad0: UDMA ICRC READ ERROR blk# 3499709ata0-master: WARNING: WAIT_READY 
active=ATA_ACTIVE_ATA
 falling back to PIO mode


Copyright (c) 1992-2000 The FreeBSD Project.
Copyright (c) 1982, 1986, 1989, 1991, 1993
The Regents of the University of California. All rights reserved.
FreeBSD 4.0-STABLE #4: Sun Mar 26 17:24:17 EST 2000
root@stuff:/usr/src/sys/compile/KERNEL
Timecounter "i8254"  frequency 1193182 Hz
CPU: AMD-K6(tm) 3D+ Processor (400.91-MHz 586-class CPU)
  Origin = "AuthenticAMD"  Id = 0x591  Stepping = 1
  Features=0x8021bfFPU,VME,DE,PSE,TSC,MSR,MCE,CX8,PGE,MMX
  AMD Features=0x8800SYSCALL,3DNow!
real memory  = 134152192 (131008K bytes)
avail memory = 127004672 (124028K bytes)
Preloaded elf kernel "kernel" at 0xc02f9000.
md0: Malloc disk
npx0: math processor on motherboard
npx0: INT 16 interface
pcib0: AcerLabs M1541 (Aladdin-V) PCI host bridge on motherboard
pci0: PCI bus on pcib0
pcib1: AcerLabs M5243 PCI-PCI bridge at device 1.0 on pci0
pci1: PCI bus on pcib1
pci1: NVidia Riva TNT2 graphics accelerator at 0.0 irq 11
ohci0: AcerLabs M5237 (Aladdin-V) USB controller mem 0xd000-0xdfff irq 10 at 
device 2.0
on pci0
usb0: OHCI version 1.0, legacy support
usb0: SMM does not respond, resetting
usb0: AcerLabs M5237 (Aladdin-V) USB controller on ohci0
usb0: USB revision 1.0
uhub0: AcerLabs OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
uhub1: Texas Instruments UT-USB41 hub, class 9/0, rev 1.00/1.00, addr 2
uhub1: 4 ports with 4 removable, bus powered
ums0: Logitech USB-PS/2 Mouse M-BA47, rev 1.00/1.10, addr 3, iclass 3/1
ums0: 4 buttons and Z dir.
isab0: AcerLabs M1533 portable PCI-ISA bridge at device 7.0 on pci0
isa0: ISA bus on isab0
atapci0: Promise ATA33 controller port
0xdf80-0xdf9f,0xdbe4-0xdbe7,0xdfa8-0xdfaf,0xdfe4-0xdfe7,0xdff0-0xdff7 irq 5 at device 
14.0 on pci0
atapci1: AcerLabs Aladdin ATA33 controller port 0xffa0-0xffaf irq 0 at device 15.0 
on pci0
ata0: at 0x1f0 irq 14 on atapci1
ata1: at 0x170 irq 15 on atapci1
pci0: unknown card (vendor=0x1274, dev=0x1371) at 16.0 irq 11
fxp0: Intel EtherExpress Pro 10/100B Ethernet port 0xde80-0xdebf mem
0xdfe0-0xdfef,0xdfffe000-0xdfffefff irq 11 at device 18.0 on pci0
fxp0: Ethernet address 00:d0:b7:49:9e:a8
fxp0: supplying EUI64: 00:d0:b7:ff:fe:49:9e:a8
fdc0: NEC 72065B or clone at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0
fdc0: FIFO enabled, 8 bytes threshold
fd0: 1440-KB 3.5" drive on fdc0 drive 0
atkbdc0: keyboard controller (i8042) at port 0x60-0x6f on isa0
atkbd0: AT Keyboard irq 1 on atkbdc0
vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0
sc0: System console on isa0
sc0: VGA 16 virtual consoles, flags=0x200
sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
sio0: type 16550A
sio1 at port 0x2f8-0x2ff irq 3 on isa0
sio1: type 16550A
ppc0: Parallel port at port 0x378-0x37f irq 7 on isa0
ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: FIFO with 16/16/1 bytes threshold
ppi0: Parallel I/O on ppbus0
lpt0: Printer on ppbus0
lpt0: Interrupt-driven port
plip0: PLIP network interface on ppbus0
ad0: 6149MB WDC AC26400R [13328/15/63] at ata0-master using UDMA33
ata1-master: Aladdin: two atapi devices on this channel, no DMA
acd0: CD-RW RICOH CD-R/RW MP7040A at ata1-master using PIO4
ata1-slave: Aladdin: two atapi devices on this channel, no DMA
afd0: 120MB LS-120 COSM 05 UHD Floppy [963/8/32] at ata1-slave using PIO2
Mounting root from ufs:/dev/ad0s2a
fxp0: starting DAD for fe80:0001::02d0:b7ff:fe49:9ea8
fxp0: DAD complete for fe80:0001::02d0:b7ff:fe49:9ea8 - no duplicates found
ad0: UDMA ICRC READ ERROR blk# 3500173 retrying
ad0: UDMA ICRC READ ERROR blk# 3500173 retrying
ad0: UDMA ICRC READ ERROR blk# 3499709 retrying
ad0: UDMA ICRC READ ERROR blk# 3499709 retrying
ad0: UDMA ICRC READ ERROR blk# 3499709 retrying
ad0: UDMA ICRC READ ERROR blk# 3499709ata0-master: WARNING: WAIT_READY 
active=ATA_ACTIVE_ATA
 falling back to PIO mode



__
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



working together

2000-03-28 Thread David Yeske

I just started to notice a little hostility.  Please feel free to flame me all you 
want, but do it
in private.  One of the best things that freebsd has is the teamwork.  People from all 
over the
world working together for a common belief.  One day I will be part of a large 
software project,
but until then I am going to help out other people any way I can.  I am going to give 
them fish
and teach them how to fish if I can.  I think freebsd has a really bad "unofficial" 
support
problem.  One day there will be happy friendly people who are willing to help people 
online, and
over other media like internet phone type systems, etc...  Let's keep working 
together, it is the
best thing we can do :)...

__
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



onboard intel

2000-03-28 Thread David Yeske

I have an onboard intel chipset fxp0 and an intel management 100 adaptor.  I have not 
gotten the
error that is being discussed, but I am trying to make it netboot.  I would like to 
help out with
the problem everyone is having.  Do I need to run a particular version and 
configuration of
freebsd?  I also have an occiliscope, and various other tools to see if it is a 
hardware issue.

Regards,
David Yeske

__
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



PXE

2000-03-13 Thread David Yeske

I just got an Intel PRO/100+ Management card for a project I am working on.  I have 
done a little
a little research and it looks like it is going to be a lot of work to netboot this 
thing.  Anyone
gotten this to work so far?  I have tried using bootpd and dhcpd with no luck.

Regards,
David Yeske
__
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message