* Frank Samuel <windrainman(a)yahoo.com> [050916 21:22]:
> Then flash_rom is used to
> flash the image to the IWILL DK8S2 machine. But after
> doing this and reboot the machine, it never comes up.
> Is there something wrong with the procedures I
> performed? Greatly appreciated.
How big is your flash chip? How big is the image you are
burning?
Do you have a serial cable attached to the machine and
the correct baud rate set?
Stefan
I don't know about anyone else but the dental floss idea didn't
work at all for me, the floss interferes with the pins.
I had this idea on how to remove the chip easily, but I
haven't tried it. Just get some strong epoxy and glue
onto the top surface of the flashrom something to
act as a handle. After it's dry, use that to pull the
chip out.
JB Weld might work.
-Dave
Look at Config.kernelimage.lb in targets/arima/hdama.
Clay Jones senior software engineer | c.jones(a)f5.com | www.f5.com
<http://www.f5.com/>
P. 509 343 3500 | F. 509 343 3501 | D. 509 343 3519
F5 Networks | 1322 North Whitman Lane | Liberty Lake, Washington
99019
The Leader in Application Traffic Management
Ensuring secure and optimized application delivery for global
enterprises
________________________________
From: linuxbios-bounces(a)openbios.org
[mailto:linuxbios-bounces@openbios.org] On Behalf Of Lu, Yinghai
Sent: Friday, September 16, 2005 10:10 AM
To: San Mehat; Stephen.Kimball(a)bench.com
Cc: linuxbios(a)openbios.org
Subject: RE: [LinuxBIOS] Building a viable rom *without* the fallback
image
That is 128k.
In the MB Option.lb there ROM_SIZE
You can change that to ROM_SIZE=524288
So Fallback will use 128k, and Nomal will use 384k.
YH
________________________________
From: linuxbios-bounces(a)openbios.org
[mailto:linuxbios-bounces@openbios.org] On Behalf Of San Mehat
Sent: Friday, September 16, 2005 9:45 AM
To: Stephen.Kimball(a)bench.com
Cc: linuxbios(a)openbios.org
Subject: Re: [LinuxBIOS] Building a viable rom *without* the fallback
image
hmm.. so i commented out the 'normal' section of my target Config.lb and
changed the buildrom line to only build the fallback image, but
the generated rom file is now 131072 bytes instead of the expected 512k.
Any ideas?
danke ;)
-san
On 9/16/05, San Mehat <san(a)google.com> wrote:
Thank you all,
I shall try this out...
-San
On 9/16/05, Stephen.Kimball(a)bench.com <Stephen.Kimball(a)bench.com >
wrote:
You could also look at Steven Magnani 's post:
http://www.linuxbios.org/pipermail/linuxbios/2005-August/012263.html
<http://www.google.com/url?sa=D&q=http%3A%2F%2Fwww.google.com%2Furl%3Fsa
%3DD%26q%3Dhttp%253A%252F%252Fwww.linuxbios.org%252Fpipermail%252Flinuxb
ios%252F2005-August%252F012263.html>
He suggests some mainboard Config file changes, which look good. I
haven't tried it.
All,
We've managed to get into linux on epia-sp using our modified
V2 linuxbios source. Next week we'll be cleaning up the
code for release back to the project. There were a lot of real
puzzlers we had to figure out.
Missing pieces include:
1) DDR init not using SPD values, controller settings taken
from stock bios and are specific to our particular DDR module
2) Size isn't detected correctly
3) VGA BIOS doesn't exist, however it might not be needed
4) Cache init code taken from V1 epia-m tree, so it's lots of
inline ASM which is probably against the ideals (romcc)
>From my point of view the worst thing about linuxbios is the
crippling lack of documentation. Document this thing better and
you'll see more developers jumping on board, I think.
-Dave
Li-Ta Lo wrote:
>Are you sure your DRAM is inited correctly? We had similar problem on
>EPIA. The kernel boots but it has problem to DMA received packets.
Just a couple hours ago we figured this out, it was related to
incorrect settings of the VLINK control registers. We copied values
from award and now it's stable.
Thanks--
Dave
We've got epia-sp almost into linux fully, but RTL8139 (eth1) or the
VIA 3065 (eth0) don't work properly.
Interrupts are occuring as expected on ethernet packets. We're trying to
work with the RTL8139 for now which is a card plugged into the epia-sp.
It's able to act as a pci bus master. I suspect something about the PCI
isn't working, like the card isn't able to dma into host memory or
something similiar.
Inside linux drivers/net/8139too.c inside function rtl8139_rx_interrupt
if ((rx_size > (MAX_ETH_FRAME_SIZE+4)) ||
(rx_size < 8) ||
(!(rx_status & RxStatusOK))) {
rtl8139_rx_err (rx_status, dev, tp, ioaddr);
printk("here2 rx_size = %d\n", rx_size); // (DA)
return;
}
The interrupt service routine is exiting because rx_size is always 0. This
is the size of the received packet I think.
A similiar problem is occuring in the 3065 ethernet. We're failing to do
something within linuxbios that's preventing pci devices from functioning
properly.
Does anyone have any suggestions? I'm hoping these symptoms are familiar.
Thanks--
Dave
I am pretty new to LinuxBIOS. I tried building Iwill's
dk8s2 motherboard by
buildtarget Iwill/dk8s2
cd Iwill/dk8s2 && make
Tried on four platforms but met different problems. I
feel surprised and would like to ask some questions
here. And hope someone can anwer.
1. Do I need to compile it on a machine with IWILL
DK8S2
motherboard?
2. Do I need to use a specific kernel version, gcc
version?
Thanks a lot.
Xuehua
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
That is 128k.
In the MB Option.lb there ROM_SIZE
You can change that to ROM_SIZE=524288
So Fallback will use 128k, and Nomal will use 384k.
YH
________________________________
From: linuxbios-bounces(a)openbios.org
[mailto:linuxbios-bounces@openbios.org] On Behalf Of San Mehat
Sent: Friday, September 16, 2005 9:45 AM
To: Stephen.Kimball(a)bench.com
Cc: linuxbios(a)openbios.org
Subject: Re: [LinuxBIOS] Building a viable rom *without* the fallback
image
hmm.. so i commented out the 'normal' section of my target Config.lb and
changed the buildrom line to only build the fallback image, but
the generated rom file is now 131072 bytes instead of the expected 512k.
Any ideas?
danke ;)
-san
On 9/16/05, San Mehat <san(a)google.com> wrote:
Thank you all,
I shall try this out...
-San
On 9/16/05, Stephen.Kimball(a)bench.com <Stephen.Kimball(a)bench.com >
wrote:
You could also look at Steven Magnani 's post:
http://www.linuxbios.org/pipermail/linuxbios/2005-August/012263.html
<http://www.google.com/url?sa=D&q=http%3A%2F%2Fwww.google.com%2Furl%3Fsa
%3DD%26q%3Dhttp%253A%252F%252Fwww.linuxbios.org%252Fpipermail%252Flinuxb
ios%252F2005-August%252F012263.html>
He suggests some mainboard Config file changes, which look good. I
haven't tried it.