hi Scott,
thanks for the info, my load address for kernel image is 0130_0000, mistakenly I wrote 0100_0000.
I have noted down bootm limitation also.
I will update the forum as soon as I get any success.
thanks once again
Ankur Maheshwari
--- Quote Start ---
originally posted by smcnutt@Apr 20 2006, 09:55 AM
hi ankur,
> gzip -9 vmlinux.bin
>
> mkimage - a nios2 -o linux -t kernel -c gzip -a 01000000 -e 01000000 -n
> 'linux-2s60es' -d vmlinux.bin.gz vmlinux.img
since you're using a compressed kernel ...
> i download my vmlinux.img at 01000000
... you need to load the image somewhere else. otherwise, u-boot will decompress
the kernel over the compressed image (the compressed image gets corrupted).
try downloading the image to a higher address, say 0150_0000 or something.
then when it is decompressed to 0100_0000 you won't have any overlap.
> bootm 01000000 01900000
specifying a ramdisk using the bootm command won't work. the kernel doesn't
accept parameters from the bootloader. you'll have to use another technique.
> is there any one who has booted any linux from any u-boot ever on any
> altera board.
yes, there are many people who used u-boot to with several versions of linux
(and ecos) on a variety of altera (and custom) boards. don't get frustrated,
you're very close to success :-)
regards,
--scott
<div align='right'><{post_snapback}> (index.php?act=findpost&pid=14517)
--- quote end ---
--- Quote End ---