Re: [U-Boot-Users] How to port u-boot to newest Intel x86 embedded system?

2008-11-22 Thread Frank
I your intent is to boot Linux on a x86 based system you might try looking at 
core boot. U-boot is a great boot loader, but doesn't have very much traction 
in the x86 world.


--- On Sat, 11/22/08, xuchun [EMAIL PROTECTED] wrote:

 From: xuchun [EMAIL PROTECTED]
 Subject: [U-Boot-Users] How to port u-boot to newest Intel x86 embedded 
 system?
 To: u-boot-users@lists.sourceforge.net
 Date: Saturday, November 22, 2008, 9:26 PM
 Hi,
 
 I want use u-boot as  boot loader in new product. But I
 found there is
 only one board type(sc520) in u-boot source
 code(u-boot-1.3.3). The CPU
 in this board is quite old. We use Intel Core in our
 project. Do u-boot
 have any plan to port to newest x86 chips?
 
 Thank you very much!
 
 
 
 
 
 
 -
 This SF.Net email is sponsored by the Moblin Your Move
 Developer's challenge
 Build the coolest Linux based applications with Moblin SDK
  win great prizes
 Grand prize is a trip for two to an Open Source event
 anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 U-Boot-Users mailing list
 U-Boot-Users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/u-boot-users


  

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


[U-Boot-Users] MACB and DM9000 support for AT91SAM9260

2008-09-02 Thread Frank v/d Schoot
Hi All,

We have a board with 2 ethernet ports: one on the macb and the other on a
dm9000-chip. Got them both working under linux but the dm9000 doesn't get a
MAC-address assigned now. I would like to give the dm9000 its MAC-address in
U-Boot via a environment-variable. Because I'm new to U-Boot, I do not see
how I can initialise the dm9000 (eth_init()) and macb (which is initialised
via eth_init() in eth.c). To me it looks like macb  dm9000 driver are using
a different type of driver concept. How can this problem be tackled?

Greetings Frank
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


[U-Boot-Users] [PATCH] Adder8xx: Fix CFG_MONITOR_LEN

2008-07-29 Thread Frank Svendsbøe
Due to increased space usage, U-Boot can no longer be stored in three sectors.
The current U-Boot use just over three flash sectors (197k), and U-Boot will
become corrupt after saving environment variables. This patch adds another 64k
to CFG_MONITOR_LEN.

Signed-off-by: Frank E. Svendsbøe [EMAIL PROTECTED]
---
 include/configs/Adder.h |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/configs/Adder.h b/include/configs/Adder.h
index 7389c38..cefdd29 100644
--- a/include/configs/Adder.h
+++ b/include/configs/Adder.h
@@ -131,7 +131,7 @@
 #define CFG_BOOTMAPSZ  (8  20)   /* Initial Memory map for Linux 
*/

 #define CFG_MONITOR_BASE   TEXT_BASE
-#define CFG_MONITOR_LEN(192  10) /* Reserve 192 KB for 
Monitor   */
+#define CFG_MONITOR_LEN(256  10) /* Reserve 256 KB for 
Monitor   */
 #ifdef CONFIG_BZIP2
 #define CFG_MALLOC_LEN (2500  10)/* Reserve ~2.5 MB for malloc() 
*/
 #else
-- 
1.5.6.3
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


Re: [U-Boot-Users] Set manually tsec speed in u-boot 1.2.0

2008-06-27 Thread Frank Prepelica
Hi Ben,

The ethernet adapter (PCMCIA ethernet card) which is directly connect to the 
board can be forced in windows to use 100Mbit full duplex, but u-boot still use 
1Gbit. It's a Marvell phy, the exact phy description I have not in mind.
The processor is a mpc8313.

We are using a customized board which based on the MPC8313ERDB board.

Nevertheless, is there a special env variable to set in U-Boot to use another 
speed, in this case 100Mbit? (e.g. I can choose by setting using ethact TSEC1 
which tsec should be used) Is there something equivalent for using tsec speed?

Regards,
Frank


-Ursprüngliche Nachricht-
Von: Ben Warren [mailto:[EMAIL PROTECTED] 
Gesendet: Mittwoch, 25. Juni 2008 18:34
An: Frank Prepelica
Cc: u-boot-users@lists.sourceforge.net
Betreff: Re: [U-Boot-Users] Set manually tsec speed in u-boot 1.2.0

Hi Frank,

Frank Prepelica wrote:

 Hi all,

  

 is there a way to set the tsec speed in u-boot (v1.2.0) manually to 
 100Mbit? Because u-boot always uses 1Gbit although the

 link speed is fixed set(in windows) to 100Mbit.

  

How does Windows fit into this?  Are you booting Windows on the board?  
Are you connecting to a Windows machine via a crossover, via a switch, 
or something else?  What PHY is connected to the TSEC?  What processor 
are you using?

regards,
Ben

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


[U-Boot-Users] Set manually tsec speed in u-boot 1.2.0

2008-06-25 Thread Frank Prepelica
Hi all,

 

is there a way to set the tsec speed in u-boot (v1.2.0) manually to
100Mbit? Because u-boot always uses 1Gbit although the 

link speed is fixed set(in windows) to 100Mbit.

 

Thanks

 

Best regards

Frank

 

 

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


[U-Boot-Users] 2-step U-boot(?)

2008-06-08 Thread Frank Wei
Hello,

I'm new to u-boot. Has anybody tried to make 2-step u-boot? I mean a really 
small u-boot (the first u-boot) possible only needs to initialize the CPU, 
memory... and load the full featured (the second u-boot) u-boot and the Linux 
to the RAM. In this way the second u-boot as an application can be updated on 
the fly.

Could you please share your knowledge here If you have done the job or the 
similar?

Regards,
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


[U-Boot-Users] Does u-boot provide SCP or FTP feature?

2008-06-05 Thread Frank Wei
Hello,

I'm new to u-boot. I saw u-boot does have TFTP but does anybody know that SCP 
and/or FTP have also been included?

Many thanks,
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


[U-Boot-Users] How to customize u-boot

2008-06-05 Thread Frank Wei
Hello,

I'm new to u-boot. How can I customize u-boot to only include minimum features 
(such as load the operating system, some basic initialize of hardware...). I 
see u-boot is quite big without getting rid of some unnecessary 
features/modules.

Regards,
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


[U-Boot-Users] Information regarding SSH access to DENX Servers (Debian SSL vulnerability)

2008-05-16 Thread Frank Lichtenheld
Hi.

As you might have noticed, there was a big problem discovered in the
Debian OpenSSL packages that caused generated SSL keys to be very weak.
Among others this affects keys generated for SSH authentication.

For more information see the security advisories for
Debian OpenSSL: http://www.debian.org/security/2008/dsa-1571
Debian OpenSSH: http://www.debian.org/security/2008/dsa-1576
Ubuntu: http://www.ubuntu.com/usn/usn-612-1

As a security measure the Debian SSH server will now reject keys
that are known to be weak. Custodians that suddenly can't log in
to our servers anymore should generate a new key after applying
the security updates above or on a different system that doesn't use
the affected packages (i.e. a non-Debian derivative).

It currently seems that the hostkey for the main server was not
affected, but we might decide to generate a new one in the next days
anyway. In this case a fingerprint will be posted here.

Sorry for any inconvienience caused.

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/

-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


Re: [U-Boot-Users] Newbie in U-Boot, Some Queries

2008-04-28 Thread Frank

--- [EMAIL PROTECTED] wrote:

 
 HI ,
 
 I am newbie to U-Boot, I have a customized  board with u-boot
 with it, I have seen through top level makefile of 
 U-Boot.Below stated is what I have observed from makefile.
 
  1. First initialization of processor (ARM922t in my case) is
 done in CPU folder with Startup.S where this assembly routine
 will call low_level_init code for initialization of RAM of
 customized board.
 
  2. Further I have observed rest all code which are required
 for boot-up is made as library and compiled at once.
 
  I would like to know how the code flow of U-Boot takes place
 , which are all the files which will be called in sequence
 while boot operation takes place, as far I have seen the code,
 Startup.S is one which starts first clearing Stack  PC which
 will further calls low_level_Init, I am unable to know how
 U-Boot works further from this place.
 
 I would request U-Boot users to share there knowledge in
 explaining me how the code flow of U-Boot takes place, which
 will help me in finishing my project where RAM  Flash is
 changed.
 
 
 Best Regards,
 Rajesh
 
cscope is your friend...


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


[U-Boot-Users] How to configure the MPC8313ERDB to support 2x128MB DDR

2008-04-15 Thread Frank Prepelica
Hi all,

 

I'm using a customized MPC8313ERDB board, which means we replaced the
Vitesse switch with a second

Marvell PHY and we are using 64MB of NOR flash instead of 8MB.

Furthermore we added a second DDR RAM (additional 128MB) on that board. 

 

I adapted U-Boot (v1.3.1) to support the 64MB flash memory and the
second Marvell PHY. This works really fine.

But I got problems when adding the second 128MB RAM module. 

 

I just thought I change the value of 

 

#define CFG_DDR_SIZE to 256

 

But after that I see the 128MB of the first RAM module mirrored at
address 0x0800 .

 

Therefore I guess there's more configuration necessary, of course there
is.

 

I don't know where to set the DDRLAWBAR1 to base address 0x0800 
because I can't even see 

DDRLAWBAR0 for the first 128MB RAM module. I found nothing in the
MPC8313ERDB.h

 

Could anyone please tell me which defines I have to change or I have to
add. Are there further changes necessary in the

board specific file sdram.c?

 

Thanks for any hint!

 

 

Best regards,

 


 
 


Frank Prepelica
Software Design Engineer

Ubidyne GmbH
Lise-Meitner-Str.-14
89081 Ulm - Germany

Phone: +49 731 88 00 71 58

Fax: +49 731 88 00 71 99
Email:  [EMAIL PROTECTED]
Homepage:   www.ubidyne.com http://www.ubidyne.com 

image002.gif-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


[U-Boot-Users] Service Announcement: DENX services moving to new server

2008-03-31 Thread Frank Lichtenheld
Hi.

All public services provided by DENX are currently moving to a server
with newer, more powerful hardware. This move should be transparent for
users and developers, except maybe for minor glitches during DNS update
times. If you encounter any problems, please report them to [EMAIL PROTECTED]

There is one exception: The CVS access (pserver and cvsweb) is no more.
For people that really still want use a cvs client to access the code,
a git-cvsserver is set up instead. More information is available at
http://www.denx.de/en/Software/GitCVS

Please note that the git repositories are now available under
additional URIs:
(git|http)://www.denx.de/git/name is also available as
(git|http)://git.denx.de/name
And the gitweb interface is now avilable directly at
http://git.denx.de/ (in addition to the old
http://www.denx.de/cgi-bin/gitweb.cgi)

It is planned to prefer the new URIs now when refering to the repositories
(since they are slightly shorter and more flexible should we ever decide
to have the website and the code on different machines), but the old ones
should continue to work for the forseeable future.

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.denx.de/

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users