Re: [U-Boot-Users] Looking for u-boot for omaph4

Could anyone tell me where can I got well-builded u-boot.bin for
omap2420h4 ?
What should be a buildable 242x-H4 & 243x-SDP images should be downloadable at http://linux.omap.com/pub/bootloader/2430sdp/u-boot.gz . If that image has issues I can fix it up. <make omap2420h4 , make >
The current U-Boot code is broken, and the board maintainer (Richard Woodruff, on Cc:) did not care so far.
Well, that is partially true. I have not tried to resync for many months now. Previous patches lagged commit so long that that it was not necessary workable by the time they were applied. The code has been pretty dynamic as perhaps a dozen versions of the board appeared in a very short time.
Some of those issues dealt with the cfi_flash code and what was acceptable. That code has changed much since then and is perhaps worth trying against again. The NAND tree has also changed a lot and will take more effort to re-validate.
Regards, Richard W.

In message EA12F909C0431D458B9D18A176BEE4A507011835@dlee02.ent.ti.com you wrote:
The current U-Boot code is broken, and the board maintainer (Richard Woodruff, on Cc:) did not care so far.
Well, that is partially true. I have not tried to resync for many months now. Previous patches lagged commit so long that that it was not necessary workable by the time they were applied. The code has been pretty dynamic as perhaps a dozen versions of the board appeared in a very short time.
Use git, and provide access to your repo.
Some of those issues dealt with the cfi_flash code and what was acceptable. That code has changed much since then and is perhaps worth trying against again. The NAND tree has also changed a lot and will take more effort to re-validate.
You will run into this again and again the longer you keep disconnected from the development in the main repo. Use git 9or one of the porcelains, for example stgit), and update often.
Best regards,
Wolfgang Denk

Dear all: I am new to git, I use the following commend to get uboot $git clone rsync://source.denx.net/git/u-boot.git u-boot.git
And finally I got :
$sent 115275 bytes received 56318206 bytes 32686.64 bytes/sec total size is 55817433 speedup is 0.99 Checking files out... 100% (4356/4356) done
Is that all? Does it means I got the newest version of uboot?
$cd uboot.git $make distclean $make omap2420h4_congfig $make
Oops! I still got *************************************************************************** --start-group lib_generic/libgeneric.a board/omap2420h4/libomap2420h4.a cpu/arm1136/libarm1136.a lib_arm/libarm.a fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a net/libnet.a disk/libdisk.a rtc/librtc.a dtt/libdtt.a drivers/libdrivers.a drivers/nand/libnand.a drivers/nand_legacy/libnand_legacy.a drivers/sk98lin/libsk98lin.a post/libpost.a post/cpu/libcpu.a common/libcommon.a --end-group -L /usr/local/arm/gcc-4.0.2/bin/../lib/gcc/arm-linux/4.0.2 -lgcc \ -Map u-boot.map -o u-boot common/libcommon.a(env_flash.o): In function `env_init': /home/yanming/Desktop/u-boot.git/common/env_flash.c:265: undefined reference to `flash_probe' make: *** [u-boot] Error 1 *******************************************************************
And I fraid I could not find the patch on the mail achieve. but I got http://linux.omap.com/pipermail/linux-omap-open-source/2005-December/006018.... However it seems little help for me.
Any suggestions? Thanks . Best Regards :-)
Wolfgang Denk wd@denx.de 說: In message you wrote:
The current U-Boot code is broken, and the board maintainer (Richard Woodruff, on Cc:) did not care so far.
Well, that is partially true. I have not tried to resync for many months now. Previous patches lagged commit so long that that it was not necessary workable by the time they were applied. The code has been pretty dynamic as perhaps a dozen versions of the board appeared in a very short time.
Use git, and provide access to your repo.
Some of those issues dealt with the cfi_flash code and what was acceptable. That code has changed much since then and is perhaps worth trying against again. The NAND tree has also changed a lot and will take more effort to re-validate.
You will run into this again and again the longer you keep disconnected from the development in the main repo. Use git 9or one of the porcelains, for example stgit), and update often.
Best regards,
Wolfgang Denk

Dear all: I download the new version from ftp://ftp.denx.de/pub/u-boot/u-boot.tar.bz2 (20060810 released ) but I still get the same error messages after building. Maybe there are something wrong with my tool chain (arm-linux-gcc-4.0.2) ? Best Regards. kabbin kabbin26@yahoo.com.tw 說: Dear all: I am new to git, I use the following commend to get uboot $git clone rsync://source.denx.net/git/u-boot.git u-boot.git
And finally I got :
$sent 115275 bytes received 56318206 bytes 32686.64 bytes/sec total size is 55817433 speedup is 0.99 Checking files out... 100% (4356/4356) done
Is that all? Does it means I got the newest version of uboot?
$cd uboot.git $make distclean $make omap2420h4_congfig $make
Oops! I still got *************************************************************************** --start-group lib_generic/libgeneric.a board/omap2420h4/libomap2420h4.a cpu/arm1136/libarm1136.a lib_arm/libarm.a fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a net/libnet.a disk/libdisk.a rtc/librtc.a dtt/libdtt.a drivers/libdrivers.a drivers/nand/libnand.a drivers/nand_legacy/libnand_legacy.a drivers/sk98lin/libsk98lin.a post/libpost.a post/cpu/libcpu.a common/libcommon.a --end-group -L /usr/local/arm/gcc-4.0.2/bin/../lib/gcc/arm-linux/4.0.2 -lgcc \ -Map u-boot.map -o u-boot common/libcommon.a(env_flash.o): In function `env_init': /home/yanming/Desktop/u-boot.git/common/env_flash.c:265: undefined reference to `flash_probe' make: *** [u-boot] Error 1 *******************************************************************
And I fraid I could not find the patch on the mail achieve. but I got http://linux.omap.com/pipermail/linux-omap-open-source/2005-December/006018.... However it seems little help for me.
Any suggestions? Thanks . Best Regards :-)
Wolfgang Denk wd@denx.de 說: In message you wrote:
The current U-Boot code is broken, and the board maintainer (Richard Woodruff, on Cc:) did not care so far.
Well, that is partially true. I have not tried to resync for many months now. Previous patches lagged commit so long that that it was not necessary workable by the time they were applied. The code has been pretty dynamic as perhaps a dozen versions of the board appeared in a very short time.
Use git, and provide access to your repo.
Some of those issues dealt with the cfi_flash code and what was acceptable. That code has changed much since then and is perhaps worth trying against again. The NAND tree has also changed a lot and will take more effort to re-validate.
You will run into this again and again the longer you keep disconnected from the development in the main repo. Use git 9or one of the porcelains, for example stgit), and update often.
Best regards,
Wolfgang Denk

In message 20060811034134.88382.qmail@web17808.mail.tpe.yahoo.com you wrote:
I download the new version from ftp://ftp.denx.de/pub/u-boot/u-boot.tar.bz2
(20060810 released ) but I still get the same error messages after building.
Please READ the messages posted here on the list. You question has been answered befroe.
--0-381000482-1155267694=:86553 Content-Type: text/html; charset=big5 Content-Transfer-Encoding: 8bit
And STOP Posting HTML here!!!!
Wolfgang Denk

Dear all I know the applying would be READ the list.However,I have run through the list, but I still can find the right message. Could anybody direct me to get it? Maybe somebody can show me the keyword or title. I am very grateful to your help. Best regaeds.
--- kabbin kabbin26@yahoo.com.tw 說:
Dear all: I download the new version from ftp://ftp.denx.de/pub/u-boot/u-boot.tar.bz2 (20060810 released ) but I still get the same error messages after building. Maybe there are something wrong with my tool chain (arm-linux-gcc-4.0.2) ? Best Regards. kabbin kabbin26@yahoo.com.tw 說: Dear all: I am new to git, I use the following commend to get uboot $git clone rsync://source.denx.net/git/u-boot.git u-boot.git
And finally I got :
$sent 115275 bytes received 56318206 bytes 32686.64 bytes/sec total size is 55817433 speedup is 0.99 Checking files out... 100% (4356/4356) done
Is that all? Does it means I got the newest version of uboot?
$cd uboot.git $make distclean $make omap2420h4_congfig $make
Oops! I still got
***************************************************************************
--start-group
lib_generic/libgeneric.a board/omap2420h4/libomap2420h4.a cpu/arm1136/libarm1136.a lib_arm/libarm.a fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a net/libnet.a disk/libdisk.a rtc/librtc.a dtt/libdtt.a drivers/libdrivers.a drivers/nand/libnand.a drivers/nand_legacy/libnand_legacy.a drivers/sk98lin/libsk98lin.a post/libpost.a post/cpu/libcpu.a common/libcommon.a --end-group -L
/usr/local/arm/gcc-4.0.2/bin/../lib/gcc/arm-linux/4.0.2
-lgcc \ -Map u-boot.map -o u-boot common/libcommon.a(env_flash.o): In function `env_init':
/home/yanming/Desktop/u-boot.git/common/env_flash.c:265:
undefined reference to `flash_probe' make: *** [u-boot] Error 1
*******************************************************************
And I fraid I could not find the patch on the mail achieve. but I got
http://linux.omap.com/pipermail/linux-omap-open-source/2005-December/006018....
However it seems little help for me.
Any suggestions? Thanks . Best Regards :-)
Wolfgang Denk wd@denx.de 說: In message you wrote:
The current U-Boot code is broken, and the board
maintainer (Richard
Woodruff, on Cc:) did not care so far.
Well, that is partially true. I have not tried to
resync for many
months now. Previous patches lagged commit so
long that that it was not
necessary workable by the time they were applied.
The code has been
pretty dynamic as perhaps a dozen versions of the
board appeared in a
very short time.
Use git, and provide access to your repo.
Some of those issues dealt with the cfi_flash code
and what was
acceptable. That code has changed much since then
and is perhaps worth
trying against again. The NAND tree has also
changed a lot and will
take more effort to re-validate.
You will run into this again and again the longer you keep disconnected from the development in the main repo. Use git 9or one of the porcelains, for example stgit), and update often.
Best regards,
Wolfgang Denk
-- Software Engineering: Embedded and Realtime Systems, Embedded Linux Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de Some people march to the beat of a different drummer. And some people tango!
最新版 Yahoo!奇摩即時通訊 7.0,免費網路電話任你打!
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&da... _______________________________________________
U-Boot-Users mailing list U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users
___________________________________________________ 最新版 Yahoo!奇摩即時通訊 7.0,免費網路電話任你打! http://messenger.yahoo.com.tw/

In message 20060813023411.82955.qmail@web17803.mail.tpe.yahoo.com you wrote:
I know the applying would be READ the list.However,I have run through the list, but I still can find the right message. Could anybody direct me to get it? Maybe somebody can show me the keyword or title. I am very grateful to your help.
Just search for a subject with "omaph4" in the tile.
--- kabbin kabbin26@yahoo.com.tw »¡¡G
Dear all: I download the new version from
And please don't top-post / full quote. See http://www.netmeister.org/news/learn2quote.html
Best regards,
Wolfgang Denk
participants (3)
-
kabbin
-
Wolfgang Denk
-
Woodruff, Richard