* [U-Boot-Users] Howto store kernel in AT91 flash
@ 2005-09-28 21:04 kentropy
2005-09-28 22:49 ` Wolfgang Denk
2005-09-29 9:04 ` Peter Menzebach
0 siblings, 2 replies; 7+ messages in thread
From: kentropy @ 2005-09-28 21:04 UTC (permalink / raw)
To: u-boot
Using AT91rm9200DK and u-boot 1.1.3 I wonder how can I store uImage and ramdisk into flash memory avoiding to load them from tftp server each time.
Could someone provide me a simple example of u-boot commands and parameters or a link ?
TIA
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] Howto store kernel in AT91 flash
2005-09-28 21:04 [U-Boot-Users] Howto store kernel in AT91 flash kentropy
@ 2005-09-28 22:49 ` Wolfgang Denk
2005-09-29 9:04 ` Peter Menzebach
1 sibling, 0 replies; 7+ messages in thread
From: Wolfgang Denk @ 2005-09-28 22:49 UTC (permalink / raw)
To: u-boot
In message <INJP7W$80DE25EB196E621FA5EBB82DF2CEDC4E@libero.it> you wrote:
> Using AT91rm9200DK and u-boot 1.1.3 I wonder how can I store uImage and ramdisk into flash memory avoiding to load them from tftp server each time> .
> Could someone provide me a simple example of u-boot commands and parameters or a link ?
Will you please just read the manual?
Thanks.
Best regards,
Wolfgang Denk
--
Software Engineering: Embedded and Realtime Systems, Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
PLEASE NOTE: Some Quantum Physics Theories Suggest That When the Con-
sumer Is Not Directly Observing This Product, It May Cease to Exist
or Will Exist Only in a Vague and Undetermined State.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] Howto store kernel in AT91 flash
2005-09-28 21:04 [U-Boot-Users] Howto store kernel in AT91 flash kentropy
2005-09-28 22:49 ` Wolfgang Denk
@ 2005-09-29 9:04 ` Peter Menzebach
1 sibling, 0 replies; 7+ messages in thread
From: Peter Menzebach @ 2005-09-29 9:04 UTC (permalink / raw)
To: u-boot
kentropy wrote:
> Using AT91rm9200DK and u-boot 1.1.3 I wonder how can I store uImage and ramdisk into flash memory avoiding to load them from tftp server each time.
> Could someone provide me a simple example of u-boot commands and parameters or a link ?
> TIA
The parallel flash is 2 Mb. Here you can store u-boot and a linux kernel
as written in the u-boot manual. For a root fs, the space is not very big...
Another possibility is, to use the serial dataflash for everything,
which is 8Mb. This procedure seems to be unsupported by u-boot, since it
copies u-boot from serial dataflash to RAM and starts it, but it works
for me. Initialization of processor and RAM ist done in this case by a
pre-bootloader (romboot).
The procedure is described here:
http://www.atmel.com/dyn/resources/prod_documents/doc6067.pdf
Best regards
Peter
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] Howto store kernel in AT91 flash
@ 2005-09-29 14:02 kentropy
2005-09-29 14:26 ` Eric BENARD / Free
0 siblings, 1 reply; 7+ messages in thread
From: kentropy @ 2005-09-29 14:02 UTC (permalink / raw)
To: u-boot
> Will you please just read the manual?
Sorry, maybe I searched in the wrong place
I read here:
http://www.denx.de/twiki/bin/view/DULG/Manual
and in detail here:
http://www.denx.de/twiki/bin/view/DULG/LinuxInFlash
where you say
"Below is a transcript of the complete operation with a final iminfo command to check the newly placed Linux kernel image in the flash memory."
But there is not example about howto store images in flash.
Could you please point me in the right direction ?
TIA
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] Howto store kernel in AT91 flash
2005-09-29 14:02 kentropy
@ 2005-09-29 14:26 ` Eric BENARD / Free
0 siblings, 0 replies; 7+ messages in thread
From: Eric BENARD / Free @ 2005-09-29 14:26 UTC (permalink / raw)
To: u-boot
Le Jeudi 29 Septembre 2005 16:02, kentropy a ?crit?:
> But there is not example about howto store images in flash.
> Could you please point me in the right direction ?
this command will store in flash (target) the image previously loaded in ram
(source) which is (count) bytes large.
cp.b source target count
Eric
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] Howto store kernel in AT91 flash
@ 2005-09-29 15:26 kentropy
2005-09-30 11:35 ` Peter Menzebach
0 siblings, 1 reply; 7+ messages in thread
From: kentropy @ 2005-09-29 15:26 UTC (permalink / raw)
To: u-boot
> The procedure is described here:
> http://www.atmel.com/dyn/resources/prod_documents/doc6067.pdf
This procedure is for u-boot-1.0.0, maybe has been included into 1.1.3 ?
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] Howto store kernel in AT91 flash
2005-09-29 15:26 kentropy
@ 2005-09-30 11:35 ` Peter Menzebach
0 siblings, 0 replies; 7+ messages in thread
From: Peter Menzebach @ 2005-09-30 11:35 UTC (permalink / raw)
To: u-boot
kentropy wrote:
...
> This procedure is for u-boot-1.0.0, maybe has been included into 1.1.3 ?
...
At least, it works for me in u-boot 1.1.2. I guess, venen the newest
version might work. You don't even need the patch mentioned there, at
least not for u-boot 1.1.2. You only have to set the correct #defines in
the board specific config file...
Best regards
Peter
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2005-09-30 11:35 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-28 21:04 [U-Boot-Users] Howto store kernel in AT91 flash kentropy
2005-09-28 22:49 ` Wolfgang Denk
2005-09-29 9:04 ` Peter Menzebach
-- strict thread matches above, loose matches on Subject: below --
2005-09-29 14:02 kentropy
2005-09-29 14:26 ` Eric BENARD / Free
2005-09-29 15:26 kentropy
2005-09-30 11:35 ` Peter Menzebach
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox