2009-04-03 09:28:51 No u-boot-1.1.6 (or any VER)
Jim Carstensen (UNITED STATES)
Message: 72111
Using this document:
https://docs.blackfin.uclinux.org/doku.php?id=developing_with_blackfin_live_sources
Checked out everything (NOT behind firewall).
Built toolchain - all normal.
Set Path - all normal ( verified usng procedure, etc.)
Now get to the point where I want to build u-boot.
"Working in the u-boot source is the same as any release. Just use the directory ~/blackfin-sources/u-boot/u-boot-VER/ (where the exact VER changes over time) and follow the directions in the compiling page. "
Problem is that there is no ~/blackfin-sources/u-boot/u-boot-VER directory (not u-boot-1.1.6 or any version as described on compiling page).
What happened?
Thanks.
QuoteReplyEditDelete
2009-04-03 09:32:28 Re: No u-boot-1.1.6 (or any VER)
Mike Frysinger (UNITED STATES)
Message: 72112
why dont you post a listing of what is actually in the directory. i see plenty of u-boot versions in svn trunk.
$ svn ls svn://blackfin.uclinux.org/u-boot/trunk
BUILD-RELEASE
u-boot-1.1.6/
u-boot-2008.10/
u-boot-2009.01/
u-boot-2009.03/
u-boot_test_script/
QuoteReplyEditDelete
2009-04-03 09:43:13 Re: No u-boot-1.1.6 (or any VER)
Jim Carstensen (UNITED STATES)
Message: 72113
CHANGELOG doc lib_ppc
CHANGELOG-before-U-Boot-1.1.5 drivers localversion-adi
COPYING dtt m68k_config.mk
CREDITS examples microblaze_config.mk
MAINTAINERS fs mips_config.mk
MAKEALL i386_config.mk mkconfig
Makefile include nand_spl
README lib_arm net
arm_config.mk lib_avr32 nios2_config.mk
avr32_config.mk lib_blackfin nios_config.mk
blackfin_config.mk lib_generic patches
board lib_i386 post
common lib_m68k ppc_config.mk
config.mk lib_microblaze rtc
cpu lib_mips rules.mk
dir.log lib_nios tools
disk lib_nios2
uclinux@colinux:~/blackfin-sources/u-boot$
QuoteReplyEditDelete
2009-04-03 09:53:09 Re: No u-boot-1.1.6 (or any VER)
Mike Frysinger (UNITED STATES)
Message: 72114
looks like you didnt delete your old checkout before running the new svn command. that is trunk/u-boot-1.1.6/.
QuoteReplyEditDelete
2009-04-03 09:56:47 Re: No u-boot-1.1.6 (or any VER)
Jim Carstensen (UNITED STATES)
Message: 72115
OK. (as you can probably tell) I'm a relative newbie to this.
Could you please tell me how to "delete my old checkout"
thanks.
QuoteReplyEditDelete
2009-04-03 10:31:26 Re: No u-boot-1.1.6 (or any VER)
Mike Frysinger (UNITED STATES)
Message: 72117
`rm -rf` ?
QuoteReplyEditDelete
2009-04-03 11:17:38 Re: No u-boot-1.1.6 (or any VER)
Jim Carstensen (UNITED STATES)
Message: 72124
hmmm...
I did the 'rm -rf' before this and started with a clean slate. After that, I did this:
$ cd ~/blackfin-sources
$ svn checkout svn://blackfin.uclinux.org/toolchain/trunk toolchain
$ svn checkout svn://blackfin.uclinux.org/u-boot/trunk u-boot
$ svn checkout svn://blackfin.uclinux.org/uclinux-dist/trunk uclinux-dist
also did a 'svn up' in the u-boot directory (and the other two, as well).
Is it possible that I need to check it out separately? Is svn not grabbing the 1.1.6 directory under u-boot?
QuoteReplyEditDelete
2009-04-03 11:27:00 Re: No u-boot-1.1.6 (or any VER)
Mike Frysinger (UNITED STATES)
Message: 72126
are you sure that's what you did ? maybe you were reading an older version of the doc which said to check out u-boot-1.1.6 specifically.
QuoteReplyEditDelete
2009-04-03 11:39:09 Re: No u-boot-1.1.6 (or any VER)
Jim Carstensen (UNITED STATES)
Message: 72127
Yeah. I had used the older version of the doc. And I do remember checking it out separately. Unfortunately, I was logged in as root and there were some permission issues so I started over (rm -rf).
Will there be any problem with the u-boot build if I just go ahead and check it out from the trunk separately?
QuoteReplyEditDelete
2009-04-03 11:46:38 Re: No u-boot-1.1.6 (or any VER)
Mike Frysinger (UNITED STATES)
Message: 72128
u-boot doesnt care where/how you check it out
QuoteReplyEditDelete
2009-04-03 12:01:19 Re: No u-boot-1.1.6 (or any VER)
Jim Carstensen (UNITED STATES)
Message: 72129
So just a one more little nudge here...
svn checkout svn://blackfin.uclinux.org/u-boot/u-boot-1.1.6/trunk u-boot/u-boot-1.1.6
says 'svn://blackfin.uclinux.org/u-boot/u-boot-1.1.6/trunk' doesn't exist.
must be typing something wrong?
QuoteReplyEditDelete
2009-04-03 12:09:53 Re: No u-boot-1.1.6 (or any VER)
Mike Frysinger (UNITED STATES)
Message: 72131
you can click the SVN tab on the left to see the actual layout of svn. things are in trunk, not the other way around.
QuoteReplyEditDelete
2009-04-03 12:16:07 Re: No u-boot-1.1.6 (or any VER)
Jim Carstensen (UNITED STATES)
Message: 72132
That's what I thought. Except the doc shows this...
svn checkout svn://blackfin.uclinux.org/u-boot/trunk u-boot
where the 'trunk' comes last, not before the 'u-boot' so I thought I would follow the same convention.
So for this case it's 'trunk/u-boot/u-boot-1.1.6'?
I don't see u-boot in the trunk index in the svn tab on the left, here.
QuoteReplyEditDelete
2009-04-03 12:36:45 Re: No u-boot-1.1.6 (or any VER)
Mike Frysinger (UNITED STATES)
Message: 72133
that isnt how it works. you're confusing the forms. the template is:
svn://<host>/<repository name>/<svn branch>/<random subdir>
in this case, the repo is "u-boot", the branch is "trunk", and then you can check out any random subdir you want
QuoteReplyEditDelete
2009-04-03 14:17:55 Re: No u-boot-1.1.6 (or any VER)
Jim Carstensen (UNITED STATES)
Message: 72136
Ahhhh...I got it.
It's downloading now.
Thanks.