All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: Please help me...
  1999-12-31  2:29 Please help me dony
@ 1999-12-27  8:42 ` Raphael Bossek
  2000-01-02  7:23   ` dony
  1999-12-30  2:11 ` Brendan J Simon
       [not found] ` <000401bf5016$4757c420$0201a8c0@home>
  2 siblings, 1 reply; 49+ messages in thread
From: Raphael Bossek @ 1999-12-27  8:42 UTC (permalink / raw)
  To: dony; +Cc: linuxppc-embed


hi dony,

> Do you know why? How can I programme to make it run?
i thing you have download it into wrong address! i would recompile
the kernel with debugging information and single step your code...
the decompressor and some of the first lines of code of the kernel
are initialisation and possible to debug... check where the
decompressor jump to and compare where the decompressor reads from!
use binutils to get mixed code on your host and compare the lines
with your debuger
let take me a look... the 8xxrom load the kernel elf image to phy
address 0x00200000

> Since the kernel is a compressed image (zvmlinux), need I make
> some codes to decompress it and then run it? if so, how to do it?
the decompressor is part of the image but it expects the real image
at a special address which you have to consider before downloading
into ram. this will be done by the 8xxrom from Magnus Damm and some
patches for the 823 avilable at http://www.s4l.de/powerpc.html of
course :-) the 8xxrom resists in flash and load the linux kernel from
a pcmcia ide hd or from flash using a rom-fs but this is an another
solution that can be used in a ready product with little modifications
in image selection...

-- 
Raphael Bossek <raphael.bossek@solutions4linux.de> [ICQ #40047651]
PGP fingerprint: DF 6F 2C 76 46 1E B4 1C  5B A5 2E 1B FC E0 D3 F6
PGP public key: http://www.solutions4linux.de/private/pgpkey.asc

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me...
  1999-12-31  2:29 Please help me dony
  1999-12-27  8:42 ` Raphael Bossek
@ 1999-12-30  2:11 ` Brendan J Simon
       [not found]   ` <38701F3A.FAD6263E@huawei.com.cn>
       [not found] ` <000401bf5016$4757c420$0201a8c0@home>
  2 siblings, 1 reply; 49+ messages in thread
From: Brendan J Simon @ 1999-12-30  2:11 UTC (permalink / raw)
  To: dony, linuxppc-embedded


dony wrote:

> Hi,
>       Now I am trying to embed linux onto our MPC860-based board. I have
> some questions which may be solved by you embed-linux gurus....
>      What I want to do  is the following:
>     1     Initialize the MPC860 CPU , memory, serial port, enet port .
>     2    Download  the linux powerpc kernel (which I have cross-compiled
> on my X86 box)
>            from the TFTP server to RAM on board.
>     3    run the kernel.
> Now the 1 and 2 step work well, but when I download the kernel to RAM on
> board, It just cannot run.Do you know why? How can I programme to make
> it run? Since the kernel is a compressed image (zvmlinux), need I make
> some codes to decompress it and then run it? if so, how to do it?

So I take it that you have written your own boot loader that is in
ROM/Flash which fetches the kerenl from a TFTP server and places it in RAM
somewhere.  Good.  How does your bootloader know where to put the code ?
Does it look at the internals of the elf image or is it an s-record file
you are downloading ?  The image must be placed at or above 2MB.  You will
have problems if it is below 2MB.  I have my kernel in Flash at FFE00000 or
FF800000.  Once the kernel is loaded, you have to jump to the start
address.

I assume you are using the mbxboot code for the kernel.  Are you ?  What
board are you using ?
The mbxboot code will copy the iteself to location 0x100000 (1MB) and jump
to that address so it is running from RAM.  It then decompress the kernel
image to location 0 and jumps to the start of the kernel.

Can you send the output of "objcopy --headers zImage" to the list.  Also
send the output of the mbxboot loader messages with the loaded and
relocated addresses (if the code is getting that far).

Brendan Simon.


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me...
       [not found]   ` <38701F3A.FAD6263E@huawei.com.cn>
@ 1999-12-30  4:23     ` Brendan J Simon
       [not found]       ` <38704D0B.94438516@huawei.com.cn>
  0 siblings, 1 reply; 49+ messages in thread
From: Brendan J Simon @ 1999-12-30  4:23 UTC (permalink / raw)
  To: dony, linuxppc-embedded


dony wrote:

> Brendan J Simon wrote:
>
> > dony wrote:
> >
> > > Hi,
> > >       Now I am trying to embed linux onto our MPC860-based board. I have
> > > some questions which may be solved by you embed-linux gurus....
> > >      What I want to do  is the following:
> > >     1     Initialize the MPC860 CPU , memory, serial port, enet port .
> > >     2    Download  the linux powerpc kernel (which I have cross-compiled
> > > on my X86 box)
> > >            from the TFTP server to RAM on board.
> > >     3    run the kernel.
> > > Now the 1 and 2 step work well, but when I download the kernel to RAM on
> > > board, It just cannot run.Do you know why? How can I programme to make
> > > it run? Since the kernel is a compressed image (zvmlinux), need I make
> > > some codes to decompress it and then run it? if so, how to do it?
> >
> > So I take it that you have written your own boot loader that is in
> > ROM/Flash which fetches the kerenl from a TFTP server and places it in RAM
> > somewhere.
>
> Yes, you are right. The monitor program I use is based on vxWorks BSP .
> All the implement details about BOOTP/TFTP are wraped in some functions
> supplied by vxWorks along with some share libraries. What I should do is just
> to call these functions and compiled them under its IDE .
>
> > Good.  How does your bootloader know where to put the code ?
> > Does it look at the internals of the elf image or is it an s-record file
> > you are downloading ?
>
> Yes, It will handle the Elf headers after downloading the kernel from tftp
> server, and then jump there to start. but it failed to run.
>
> > The image must be placed at or above 2MB.  You will
> > have problems if it is below 2MB.
>
>  If I try to downloaded it to 2MB, it cannot download succesfully and halt. But
> If I download it to 1MB, it can do successfully. Why?

I don't know.  Our bootloader is very simple.  It has 3 basic functions.
1) Basic hardware diagnostics (RAM check, etc).
2) Program an S-Record into flash if a dipswitch is set.
3) Run application code from flash if present.

There is no OS involved.  I have never used vxWorks so I don't know how it
allocates it's memory or what.  Is it that you have a vxWorks bootloader that is
expecting a vxWorks kernel and that the kernel is expected to be compiled for a
certain location ?  If so, you will probably have to modify your bootloader to
cater for a linux kernel (or any elf program).


> > I have my kernel in Flash at FFE00000 or
> > FF800000.
>
> If you translate FF8000000 into decimal, it is so huge! Does the 860 support
> it?

Why translate it to decimal ?  It is a big number whether it is in decimal,
hexadecimal, octal or binary.
The MPC860 has a 32 bit address space which means it can access memory from
0x00000000-0xFFFFFFFF.  You program the chip selects with the appropriate base
address and size to your liking for RAM, Flash and other peripherals.


> And how you put it in flash?

Our bootloader has routines to receive S-records and program them into our flash
modules.


> > Once the kernel is loaded, you have to jump to the start
> > address.
> >
> > I assume you are using the mbxboot code for the kernel.  Are you ?  What
> > board are you using ?
>
> Yes. And I use our own MPC860-based board.

Have you made any modifications to the linux kernel to cater for your board
differences (if any).  The main thing is that the console is on SMC1 and ethernet
on SCC1.  I think the mbx board MAY use COM1 instead of SMC1 for the console.  You
better double check that.


> > The mbxboot code will copy the iteself to location 0x100000 (1MB) and jump
> > to that address so it is running from RAM.  It then decompress the kernel
> > image to location 0 and jumps to the start of the kernel.
>
> Do you mean the mbxboot code will copy itself from FF800000 to 1MB?

Yep.


> > Can you send the output of "objcopy --headers zImage" to the list.
>
> The "powerpc-linux-objcopy --headers zImage" cannot work. Maybe the semantics
> is wrong?

My mistake.  It should be objdump instead of objcopy.

Brendan Simon.


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me...
       [not found]       ` <38704D0B.94438516@huawei.com.cn>
@ 1999-12-30  6:46         ` Brendan J Simon
  1999-12-30 13:25           ` Charles Lepple
  2000-01-03 11:48           ` Cannot booting the kernel dony
  0 siblings, 2 replies; 49+ messages in thread
From: Brendan J Simon @ 1999-12-30  6:46 UTC (permalink / raw)
  To: dony, linuxppc-embedded


dony wrote:

> > > > Can you send the output of "objcopy --headers zImage" to the list.
> > >
> > > The "powerpc-linux-objcopy --headers zImage" cannot work. Maybe the semantics
> > > is wrong?
> >
> > My mistake.  It should be objdump instead of objcopy.
>
> Now you remind me that "objdump --headers zImage" can produce the following results
> directly which I ask you how to do before:
>
> ***********************************************************
>  Sections:
> Idx Name          Size      VMA       LMA       File off  Algn
> 0 .text         00004870  ff801000  ff801000  00001000  2**2
>                    CONTENTS, ALLOC, LOAD, READONLY, CODE
>    1 .rodata       00000470  ff805870  ff805870  00005870  2**4
>                    CONTENTS, ALLOC, LOAD, READONLY, DATA
>    2 .data         00000300  ff806000  ff806000  00006000  2**2
>                    CONTENTS, ALLOC, LOAD, DATA
>    3 .bss          0000bbac  ff807000  ff807000  00007000  2**2
>                    ALLOC
>    4 image         00061104  ff807000  ff807000  00007000  2**0
>                    CONTENTS, ALLOC, LOAD, DATA
> *************************************************************

Is this the dump of YOUR zImage ?
I chose 0xFF800000 for the base address of Flash memory on our system.  If you are
downloading into RAM then you will have to change the script I sent you so that the
base address is at 0x200000.  This assumes that the DRAM controller is setup by your
bootloader.  I also had problems with the caches so I went through the source code and
disabled all the caches.  I think this is because my bootloader doesn't setup the
UPM correctly and it goes a little crazy on burst accesses.  I recommend that you do
something similar for now.  I also had to change the NFS transfer size from 4096 to
1024 in one of the header files so that I could have a root filesystem on NFS.  Don't
worry about the NFS stuff for now, lets just get the kernel booting.

Good luck,
Brendan Simon.


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me...
  1999-12-30  6:46         ` Brendan J Simon
@ 1999-12-30 13:25           ` Charles Lepple
  2000-01-03 11:48           ` Cannot booting the kernel dony
  1 sibling, 0 replies; 49+ messages in thread
From: Charles Lepple @ 1999-12-30 13:25 UTC (permalink / raw)
  To: dony; +Cc: linuxppc-embedded


Brendan J Simon wrote:
> >  Sections:
> > Idx Name          Size      VMA       LMA       File off  Algn
> > 0 .text         00004870  ff801000  ff801000  00001000  2**2
> >                    CONTENTS, ALLOC, LOAD, READONLY, CODE
> >    1 .rodata       00000470  ff805870  ff805870  00005870  2**4
> >                    CONTENTS, ALLOC, LOAD, READONLY, DATA
> >    2 .data         00000300  ff806000  ff806000  00006000  2**2
> >                    CONTENTS, ALLOC, LOAD, DATA
> >    3 .bss          0000bbac  ff807000  ff807000  00007000  2**2
> >                    ALLOC
> >    4 image         00061104  ff807000  ff807000  00007000  2**0
> >                    CONTENTS, ALLOC, LOAD, DATA

       ^^^^^^^ This section (image) could be your problem if you use a
vxWorks bootloader.

Although the vxWorks loader is written with ELF images in mind,
experience (with a DY4 SVME-177 board) tells me that it ignores ELF
sections that would not be present in a vxWorks executable. I did not
have time to investigate this completely, but the indication that tipped
me off was that the sizes of the sections added up to be much larger
than the sum of the numbers that the boot loader reports. All other test
programs (those without added sections) were loaded correctly.

If the sum of the numbers printed on the screen is significantly less
than the size of the file, then you can assume that anything you need to
load should be in either '.text' or '.data'. If you have the whole
vxWorks toolchain, you can try to find out what other section names are
used in executables loaded by the bootloader (maybe a debugging
section?), or you can work on building a special zImage file.

You can get around this limitation by having the zipped kernel image
inserted directly into the data segment of a wrapper program (see
arch/ppc/chrpboot/, especially piggyback.c).

-- 
Charles Lepple
clepple@mitre.org


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Please help me...
@ 1999-12-31  2:29 dony
  1999-12-27  8:42 ` Raphael Bossek
                   ` (2 more replies)
  0 siblings, 3 replies; 49+ messages in thread
From: dony @ 1999-12-31  2:29 UTC (permalink / raw)
  To: Raphael Bossek, Brendan Simon, Dan Malek, linuxppc-embed


Hi,
      Now I am trying to embed linux onto our MPC860-based board. I have
some questions which may be solved by you embed-linux gurus....
     What I want to do  is the following:
    1     Initialize the MPC860 CPU , memory, serial port, enet port .
    2    Download  the linux powerpc kernel (which I have cross-compiled
on my X86 box)
           from the TFTP server to RAM on board.
    3    run the kernel.
Now the 1 and 2 step work well, but when I download the kernel to RAM on
board, It just cannot run.Do you know why? How can I programme to make
it run? Since the kernel is a compressed image (zvmlinux), need I make
some codes to decompress it and then run it? if so, how to do it?
 Thank you very much :-))
 Merry christmas & happy year.

dony

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me...
       [not found] ` <000401bf5016$4757c420$0201a8c0@home>
@ 1999-12-31  8:37   ` dony
       [not found]     ` <000c01bf5086$3e358d80$0201a8c0@home>
  1999-12-31  8:40   ` dony
  1 sibling, 1 reply; 49+ messages in thread
From: dony @ 1999-12-31  8:37 UTC (permalink / raw)
  To: Jeff Millar, linuxppc-embed


> The zImage contains an uncompress program at the start.  This program then
> copies and uncompresses the kernel to another location in ram.

> If your
> using the kernel from Dan at
>
>     ftp://linuxppc.cs.nmt.edu/pub/linuxppc/embedded/
>
> Then use the debugger to start it at 0x00200000.  Refer to the code in
> arch/ppc/mbxboot/misc.c

Yes, I use the mpc8xx.2.2.13.tgz to compile the kernel "zImage".
Do you mean that when I download the kernel "zImage" to RAM address 0x100000
on our own board (but not mbxboard) , and jump to 0x100000, It will
automatically run the uncompress program to copy and decompress the kernel to
0x200000, then  jump to 0x200000, the decompressed kernel will boot,  right  ?



>
>
> I'm not the expert, Dan is, but he's been teaching me.
>
> jeff
> ----- Original Message -----
> From: "dony" <dony.he@huawei.com.cn>
> To: "Raphael Bossek" <raphael.bossek@solutions4linux.de>; "Brendan Simon"
> <bsimon@ctam.com.au>; "Dan Malek" <dan@netx4.com>; "linuxppc-embed"
> <linuxppc-embedded@lists.linuxppc.org>
> Sent: Thursday, December 30, 1999 9:29 PM
> Subject: Please help me...
>
> >
> > Hi,
> >       Now I am trying to embed linux onto our MPC860-based board. I have
> > some questions which may be solved by you embed-linux gurus....
> >      What I want to do  is the following:
> >     1     Initialize the MPC860 CPU , memory, serial port, enet port .
> >     2    Download  the linux powerpc kernel (which I have cross-compiled
> > on my X86 box)
> >            from the TFTP server to RAM on board.
> >     3    run the kernel.
> > Now the 1 and 2 step work well, but when I download the kernel to RAM on
> > board, It just cannot run.Do you know why? How can I programme to make
> > it run? Since the kernel is a compressed image (zvmlinux), need I make
> > some codes to decompress it and then run it? if so, how to do it?
> >  Thank you very much :-))
> >  Merry christmas & happy year.
> >
> > dony
> >
> >

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me...
       [not found] ` <000401bf5016$4757c420$0201a8c0@home>
  1999-12-31  8:37   ` Please help me dony
@ 1999-12-31  8:40   ` dony
  1 sibling, 0 replies; 49+ messages in thread
From: dony @ 1999-12-31  8:40 UTC (permalink / raw)
  To: Jeff Millar, linuxppc-embed


Jeff Millar wrote:

> The zImage contains an uncompress program at the start.  This program then
> copies and uncompresses the kernel to another location in ram.  If your
> using the kernel from Dan at
>
>     ftp://linuxppc.cs.nmt.edu/pub/linuxppc/embedded/
>
> Then use the debugger to start it at 0x00200000.  Refer to the code in
> arch/ppc/mbxboot/misc.c

By the way, what role does the "struct bd_t" play in the function
"decompress_kernel"?
Is it contain the private data for various board? Must I need it?

>
>
> I'm not the expert, Dan is, but he's been teaching me.
>
> jeff
> ----- Original Message -----
> From: "dony" <dony.he@huawei.com.cn>
> To: "Raphael Bossek" <raphael.bossek@solutions4linux.de>; "Brendan Simon"
> <bsimon@ctam.com.au>; "Dan Malek" <dan@netx4.com>; "linuxppc-embed"
> <linuxppc-embedded@lists.linuxppc.org>
> Sent: Thursday, December 30, 1999 9:29 PM
> Subject: Please help me...
>
> >
> > Hi,
> >       Now I am trying to embed linux onto our MPC860-based board. I have
> > some questions which may be solved by you embed-linux gurus....
> >      What I want to do  is the following:
> >     1     Initialize the MPC860 CPU , memory, serial port, enet port .
> >     2    Download  the linux powerpc kernel (which I have cross-compiled
> > on my X86 box)
> >            from the TFTP server to RAM on board.
> >     3    run the kernel.
> > Now the 1 and 2 step work well, but when I download the kernel to RAM on
> > board, It just cannot run.Do you know why? How can I programme to make
> > it run? Since the kernel is a compressed image (zvmlinux), need I make
> > some codes to decompress it and then run it? if so, how to do it?
> >  Thank you very much :-))
> >  Merry christmas & happy year.
> >
> > dony
> >
> >

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me...
       [not found]     ` <000c01bf5086$3e358d80$0201a8c0@home>
@ 2000-01-01  1:58       ` dony
       [not found]         ` <001801bf50e1$6d3ad8a0$0201a8c0@home>
  0 siblings, 1 reply; 49+ messages in thread
From: dony @ 2000-01-01  1:58 UTC (permalink / raw)
  To: Jeff Millar, linuxppc-embed


Jeff Millar wrote:

> The zimage arrives at 00200000 and you start it there.  I think it copies
> itself to 00100000 but never looked. The idea is to position the zImage
> in ram low enough to use the first 16M but above the uncompressed kernel and
> its data structure ( from 0M and up)  Putting the zImage at 00200000 is
> a good compromise.
>

In  my case, If I try to download zImage at 0x00200000, it will fail to
download.
I don't know why. but If I download zImage at 0x00100000, it will download
successfully but can not run... It is so strange. Can you share me with some of
your experience?
Thanks.

>
> BTW, the zImage is relocatable and can be loaded anywhere.
> I just learned to copy it to FLASH with a built in debugger
> program and start it there.  This makes the board boot
> automatically without the tftp download.

How can I copy it to Flash?



>
>
> ----- Original Message -----
> From: "dony" <dony.he@huawei.com.cn>
> To: "Jeff Millar" <jeff@wa1hco.mv.com>; "linuxppc-embed"
> <linuxppc-embedded@lists.linuxppc.org>
> Sent: Friday, December 31, 1999 3:37 AM
> Subject: Re: Please help me...
>
> > > The zImage contains an uncompress program at the start.  This program
> then
> > > copies and uncompresses the kernel to another location in ram.
> >
> > > If your
> > > using the kernel from Dan at
> > >
> > >     ftp://linuxppc.cs.nmt.edu/pub/linuxppc/embedded/
> > >
> > > Then use the debugger to start it at 0x00200000.  Refer to the code in
> > > arch/ppc/mbxboot/misc.c
> >
> > Yes, I use the mpc8xx.2.2.13.tgz to compile the kernel "zImage".
> > Do you mean that when I download the kernel "zImage" to RAM address
> 0x100000
> > on our own board (but not mbxboard) , and jump to 0x100000, It will
> > automatically run the uncompress program to copy and decompress the kernel
> to
> > 0x200000, then  jump to 0x200000, the decompressed kernel will boot,
> right  ?
> >
> >
> >
> > >
> > >
> > > I'm not the expert, Dan is, but he's been teaching me.
> > >
> > > jeff
> > > ----- Original Message -----
> > > From: "dony" <dony.he@huawei.com.cn>
> > > To: "Raphael Bossek" <raphael.bossek@solutions4linux.de>; "Brendan
> Simon"
> > > <bsimon@ctam.com.au>; "Dan Malek" <dan@netx4.com>; "linuxppc-embed"
> > > <linuxppc-embedded@lists.linuxppc.org>
> > > Sent: Thursday, December 30, 1999 9:29 PM
> > > Subject: Please help me...
> > >
> > > >
> > > > Hi,
> > > >       Now I am trying to embed linux onto our MPC860-based board. I
> have
> > > > some questions which may be solved by you embed-linux gurus....
> > > >      What I want to do  is the following:
> > > >     1     Initialize the MPC860 CPU , memory, serial port, enet port .
> > > >     2    Download  the linux powerpc kernel (which I have
> cross-compiled
> > > > on my X86 box)
> > > >            from the TFTP server to RAM on board.
> > > >     3    run the kernel.
> > > > Now the 1 and 2 step work well, but when I download the kernel to RAM
> on
> > > > board, It just cannot run.Do you know why? How can I programme to make
> > > > it run? Since the kernel is a compressed image (zvmlinux), need I make
> > > > some codes to decompress it and then run it? if so, how to do it?
> > > >  Thank you very much :-))
> > > >  Merry christmas & happy year.
> > > >
> > > > dony
> > > >
> > > >
> >
> >

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me...
       [not found]         ` <001801bf50e1$6d3ad8a0$0201a8c0@home>
@ 2000-01-01  8:46           ` dony
  0 siblings, 0 replies; 49+ messages in thread
From: dony @ 2000-01-01  8:46 UTC (permalink / raw)
  To: Jeff Millar, linuxppc-embed





> When you say the download doesn't work, what do you mean?

When I try to download the "zImage" from  TFTP Server to my RAM 0x00200000 on
board,
the download process will stop . That is to say, it cannot download the whole
"zImage" file
but just a part of the "zImage " file. But it I download the "zImage" to my RAM
0x00100000 on
board, it will succeed to download and show a message "starting at
0x00100000..." and halt.

>
>
> How much RAM do you have?

32M.
Notes that I want to download the "zImage" from remote TFTP Server via EHERNET
instead of  from local flash .
I have downloaded the FADSROM and 8xxROM packages and researched them.
They all seem to download the "zImage" from local flash disk, not from remote
TFTP server via ETHERNET. I think the latter is easy to debug applications,
right?
Do you think it will make any difference between these two cases?
When I download the "zImage" from remote TFTP server  via ethernet to RAM
0x00200000 board , how can I dispose the "zImage" at other address , and when
jumping there it will boot the kernel?
Any ideas?


> Downloading zImage to 2MB should work.  You might
> try downloading to 3 or 4MB.  You need to download the relocatable kernel
> image (zImage) so that entirely fits in RAM, low enough that the top end of
> zImage and any attached initrd doesn't over flow the top of RAM.  The
> bootloader will copy the kernel low using 0x0 and up for its data structures
> and executable.  The zImage must not conflict with the kernel executable or
> data structures.  Putting the zImage at 0x00100000 is too low.  During the
> boot load process, the kernel builds data structures upward in memory
> depending on the size of the kernel and number of options.
>
> Copying the image to flash depends on the hardware and flash ROM chips.  You
> will have to write
> a flash ROM erase and writing program.  Assuming your board has flash, find
> the data sheet and read up on the write programming algorithm.  The zImage
> and initrd can load into ROM and the boot
> loader can execute fromm flash rom.

Sorry, I still don't understand your meaning.
When you say "copy image to flash", what does the image contain?
bootrom codes+kernel+RootFileSystems or kernel+RootFileSystems? If so, in what
file format can I write it into flash?
Best regards,
dony


>
>


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me...
  1999-12-27  8:42 ` Raphael Bossek
@ 2000-01-02  7:23   ` dony
  0 siblings, 0 replies; 49+ messages in thread
From: dony @ 2000-01-02  7:23 UTC (permalink / raw)
  To: Raphael Bossek, linuxppc-embed




> hi dony,
>
> > Do you know why? How can I programme to make it run?
> i thing you have download it into wrong address! i would recompile
> the kernel with debugging information and single step your code...
> the decompressor and some of the first lines of code of the kernel
> are initialisation and possible to debug...

How can I debug whether the decompress_kernel() and some of the first
lines of code of the kernel in arch/ppc/mbxboot/head.s are running or not?
I think they are not running,  because
I cannot see any startup messages coded in decompress_kernel().

> check where the
> decompressor jump to and compare where the decompressor reads from!
> use binutils to get mixed code on your host and compare the lines
> with your debuger

Yes, I should try check, but I just don't know how to check that .
Can you give me some more detailed information for debug?

>
> let take me a look... the 8xxrom load the kernel elf image to phy
> address 0x00200000

Yes, I have downloaded your 8xxrom codes and read them.
But they seem to read the kernel from flash into RAM 0x00200000 on board,
which is a bit defferent from what I am doing.
Now I will try to express my idea to you as clearly as possibly. Please
give me some helpful suggestions.
I use the monitor program based on vxWorks BSP. This monitor program
initialize all the things after power on (or system reset): MPC860 CPU
initialization, MEMORY initialization, Serial Port initialization(SMC2)
and Ethernet initialization(SCC1) etc. Then it use the BOOTP/TFTP protocol
to download the kernel "zImage" (compressed) or "vmlinux" (uncompressed)
from a linux box Server which has been configured bootpd , tftpd, and nfsd
.Yes , It successfully download the kernel to RAM 0x00200000 on my custom
board. Then I am very confused at this stage. Now questions appears:
1     If I directly jump there 0x00200000 at this time, will it run and
decompress the kernel automatically?
I think there are some bootloader codes (including the
decompress_kernel()) at 0x00200000 at this time , so it should run  the
first lines of the bootloader codes and then decompress_kernel() in order,
right? But it fails at all. After loading the kernel, it just shows a
message "start at 0x00200000..." (which is coded in my monitor program)
and doesn't show some startup messages in decompress_kernel() such as
"loading at... relocated to...  board data at... relocated to... zImage
at... ". I think this means the decompress_kernel() doesn't run, even the
first lines of the bootloader also not run (How can I prove whether the
latter is running or not?)
I also try to put some lighting-led-on-board codes at the very begining of
the arch/ppc/mbxboot/head.S , those red and green leds also don't light.

> > Since the kernel is a compressed image (zvmlinux), need I make
> > some codes to decompress it and then run it? if so, how to do it?
> the decompressor is part of the image but it expects the real image
> at a special address which you have to consider before downloading
> into ram.

Sorry, I don't know what you are meaning here.


> this will be done by the 8xxrom from Magnus Damm and some
> patches for the 823 avilable at http://www.s4l.de/powerpc.html of
> course :-)

Yes, I have downloaded your 8xxrom and studied these two functionss
elf_bootz (), bootvm() in elf.c. After reading the kernel "zImage" from
flash to RAM 0x00200000, you seem to handle them to strip the elf header
before you call start_loc() to run the bootloader. Am I right?
So when I download the "zImage" to RAM 0x00200000 on my custom board ,Need
I do the same thing as you before jumping there directly to run the
bootloader?

Thank you very much:-))
dony



> the 8xxrom resists in flash and load the linux kernel from
> a pcmcia ide hd or from flash using a rom-fs but this is an another
> solution that can be used in a ready product with little modifications
> in image selection...

> --
> Raphael Bossek <raphael.bossek@solutions4linux.de> [ICQ #40047651]
> PGP fingerprint: DF 6F 2C 76 46 1E B4 1C  5B A5 2E 1B FC E0 D3 F6
> PGP public key: http://www.solutions4linux.de/private/pgpkey.asc


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Cannot booting the kernel...
  1999-12-30  6:46         ` Brendan J Simon
  1999-12-30 13:25           ` Charles Lepple
@ 2000-01-03 11:48           ` dony
  2000-01-04  0:46             ` Brendan J Simon
  1 sibling, 1 reply; 49+ messages in thread
From: dony @ 2000-01-03 11:48 UTC (permalink / raw)
  To: Brendan.Simon, linuxppc-embed


Hello,

      With your help, Now I can starting my kernel.  I search linux-ppc lists and find
that I have similar problems as you. Here is the messages:

        Linux/PPC load:
        Uncompressing Linux...done.
        Now booting the kernel

Then nothing happens. I also follow some suggestions which Dan advise you and modify
arch/ppc/kernel/head.S to disable and unlock and invalidate the cache, but it seems to
make no difference. Can you give me some advice ?
Thank you :-))
dony


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cannot booting the kernel...
  2000-01-03 11:48           ` Cannot booting the kernel dony
@ 2000-01-04  0:46             ` Brendan J Simon
       [not found]               ` <38715DAE.B6CBC772@huawei.com.cn>
  0 siblings, 1 reply; 49+ messages in thread
From: Brendan J Simon @ 2000-01-04  0:46 UTC (permalink / raw)
  To: dony; +Cc: linuxppc-embed


dony wrote:

> Hello,
>
>       With your help, Now I can starting my kernel.  I search linux-ppc lists and find
> that I have similar problems as you. Here is the messages:
>
>         Linux/PPC load:
>         Uncompressing Linux...done.
>         Now booting the kernel
>
> Then nothing happens. I also follow some suggestions which Dan advise you and modify
> arch/ppc/kernel/head.S to disable and unlock and invalidate the cache, but it seems to
> make no difference. Can you give me some advice ?

I disabled the caches in arch/ppc/kernel/head.S and arch/ppc/mbxboot/head.S.  The kernel
boots every time now (touch wood).

When my linux system is fully functioning (telnet, snmp, etc) then I will look at the
cache problems.  The gurus think that it is probably a UPM setup problem.

Brendan Simon.


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile Applications for 860 on x86
       [not found]                                     ` <387D3212.A4E9904F@ctam.com.au>
@ 2000-01-13  7:10                                       ` dony
  2000-01-13 22:09                                         ` Brendan J Simon
       [not found]                                       ` <387DAFAF.DB0096C7@huawei.com.cn>
  1 sibling, 1 reply; 49+ messages in thread
From: dony @ 2000-01-13  7:10 UTC (permalink / raw)
  To: Brendan.Simon, linuxppc-embed




Brendan J Simon wrote:

> dony wrote:
>
> >       I want to cross-compile a very simple test program which have only one line:
> >
> >              printf("jsut a test.");
>
> I used puts("Brendan was here") as it is much simpler, but printf should work as well.
>
> >  But  the powerpc-linux-gcc seems to complain I lack of "crt1.o".
> > So what other tools I need to cross-compile my application except the powerpc-linux-*?
> > Thanks  very much.
> > dony
>
> I have crt1.o, crti.o and crtn.o in $prefix/$target/lib.  Initially they were put there
> when I unpacked the rpm files from the yellowdog distribution.  I was following some
> instructions from Kai Ruottu when I was trying to get my cross-compiler built.  I think
> I built glibc libraries from the source afterwards which should have replaced those ones
> but I'm not sure.
> Have you built glibc yet ?

Yes but failed. I following the following steps:

##################################
Cross Development for Linux/PPC

LibC
Get
ftp://sourceware.cygnus.com/pub/glibc/glibc-2.1.tar.gz
ftp://sourceware.cygnus.com/pub/glibc/glibc-linuxthreads-2.1.tar.gz
ftp://ftp.funet.fi/pub/gnu/funet/glibc-crypt-2.1.tar.gz
Build
ln -sf $CVS_LINUX_TOP/include/asm /usr/local/powerpc-linux/include/asm
ln -sf $CVS_LINUX_TOP/include/linux /usr/local/powerpc-linux/include/linux
tar zxf glibc-2.1.tar.gz
cd glibc-2.1
tar zxf ../glibc-crypt-2.1.tar.gz
tar zxf ../glibc-linuxthreads-2.1.tar.gz
mkdir build
cd build
CC=powerpc-linux-gcc AR=powerpc-linux-ar RANLIB=powerpc-linux-ranlib ../configure
--host=powerpc-linux --with-headers=$CVS_LINUX_TOP/include
--enable-add-ons=crypt,linuxthreads --prefix=/usr/local/powerpc-linux
make
make install
############################################

All except the last step are right. When I do "make install" , I get the following error:

########################################
../sysdeps/unix/sysv/linux/i386/profil-counter.h: In function `profil_counter':
In file included from ../sysdeps/unix/sysv/linux/powerpc/profil-counter.h:2,
                 from ../sysdeps/posix/profil.c:54,
                 from ../sysdeps/unix/sysv/linux/profil.c:3:
../sysdeps/unix/sysv/linux/i386/profil-counter.h:26: structure has no member named `regs'
../sysdeps/posix/profil.c:39: warning: inlining failed in call to `profil_count'
../sysdeps/unix/sysv/linux/i386/profil-counter.h:26: warning: called from here
make[2]: *** [/usr/local/powerpc-linux/glibc-2.1/build/gmon/profil.o] Error 1
make[2]: Leaving directory `/usr/local/powerpc-linux/glibc-2.1/gmon'
make[1]: *** [gmon/subdir_lib] Error 2
make[1]: Leaving directory `/usr/local/powerpc-linux/glibc-2.1'
make: *** [install] Error 2
################################

Since the glibc package is very very large, locating the file where errors occur (ie, where
struct singcontext is defined?) is a bit difficult.
Do you have any experience?

dony


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile Applications for 860 on x86
  2000-01-13  7:10                                       ` Cross-compile Applications for 860 on x86 dony
@ 2000-01-13 22:09                                         ` Brendan J Simon
  0 siblings, 0 replies; 49+ messages in thread
From: Brendan J Simon @ 2000-01-13 22:09 UTC (permalink / raw)
  To: dony; +Cc: linuxppc-embed


dony wrote:

> ##################################
> Cross Development for Linux/PPC
>
> LibC
> Get
> ftp://sourceware.cygnus.com/pub/glibc/glibc-2.1.tar.gz
> ftp://sourceware.cygnus.com/pub/glibc/glibc-linuxthreads-2.1.tar.gz
> ftp://ftp.funet.fi/pub/gnu/funet/glibc-crypt-2.1.tar.gz
> Build
> ln -sf $CVS_LINUX_TOP/include/asm /usr/local/powerpc-linux/include/asm
> ln -sf $CVS_LINUX_TOP/include/linux /usr/local/powerpc-linux/include/linux
> tar zxf glibc-2.1.tar.gz
> cd glibc-2.1
> tar zxf ../glibc-crypt-2.1.tar.gz
> tar zxf ../glibc-linuxthreads-2.1.tar.gz
> mkdir build
> cd build
> CC=powerpc-linux-gcc AR=powerpc-linux-ar RANLIB=powerpc-linux-ranlib ../configure
> --host=powerpc-linux --with-headers=$CVS_LINUX_TOP/include
> --enable-add-ons=crypt,linuxthreads --prefix=/usr/local/powerpc-linux
> make
> make install
> ############################################
>
> All except the last step are right. When I do "make install" , I get the following error:
>
> ########################################
> ../sysdeps/unix/sysv/linux/i386/profil-counter.h: In function `profil_counter':
> In file included from ../sysdeps/unix/sysv/linux/powerpc/profil-counter.h:2,
>                  from ../sysdeps/posix/profil.c:54,
>                  from ../sysdeps/unix/sysv/linux/profil.c:3:
> ../sysdeps/unix/sysv/linux/i386/profil-counter.h:26: structure has no member named `regs'
> ../sysdeps/posix/profil.c:39: warning: inlining failed in call to `profil_count'
> ../sysdeps/unix/sysv/linux/i386/profil-counter.h:26: warning: called from here
> make[2]: *** [/usr/local/powerpc-linux/glibc-2.1/build/gmon/profil.o] Error 1
> make[2]: Leaving directory `/usr/local/powerpc-linux/glibc-2.1/gmon'
> make[1]: *** [gmon/subdir_lib] Error 2
> make[1]: Leaving directory `/usr/local/powerpc-linux/glibc-2.1'
> make: *** [install] Error 2
> ################################
>
> Since the glibc package is very very large, locating the file where errors occur (ie, where
> struct singcontext is defined?) is a bit difficult.
> Do you have any experience?

I do not have the solution to your installation problem but I would just like to make a
suggestion for CC= when configuring for your mpc860 target.  Try CC="powerpc-linux-gcc
-mcpu=860" if the 860 is not your default processor when invoking gcc.  I think you can do
this at the configuration stage when building your cross-compiler or you can manually change
the specs file.

Brendan Simon.


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile Applications for 860 on x86
       [not found]                                                 ` <387EBEB9.B69B1680@ctam.com.au>
@ 2000-01-14  8:31                                                   ` dony
  2000-01-14 11:01                                                     ` Wolfgang Denk
  2000-01-16  2:01                                                     ` Brendan J Simon
  0 siblings, 2 replies; 49+ messages in thread
From: dony @ 2000-01-14  8:31 UTC (permalink / raw)
  To: Brendan.Simon, linuxppc-embed


Hi,
     When I compile the SASH  with "-static" options and then replace /bin/sh with sash.
When reseting my MPC860 based board, the kernel boot normally and can show the boot messages. But at last it
cannot show the "bash#" prompt. If I input "ls" or such commands,
It justs shows :

    ls
    pid 8: killed (signal 11)
    ls
    pid 9: killed (signal 11)
    ls
    pid 10: killed (signal 11)

Do you know why? What do I miss?
Thanks very much.
dony


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile Applications for 860 on x86
  2000-01-14  8:31                                                   ` dony
@ 2000-01-14 11:01                                                     ` Wolfgang Denk
       [not found]                                                       ` <387F0D81.48F7CABE@iname.com>
  2000-01-16  2:01                                                     ` Brendan J Simon
  1 sibling, 1 reply; 49+ messages in thread
From: Wolfgang Denk @ 2000-01-14 11:01 UTC (permalink / raw)
  To: dony; +Cc: linuxppc-embed


In message <387EDEF5.DBD612FA@huawei.com.cn> you write:
> 
>      When I compile the SASH  with "-static" options and then replace /bin/sh with sash.
> When reseting my MPC860 based board, the kernel boot normally and can show the boot messages. But at last it
> cannot show the "bash#" prompt. If I input "ls" or such commands,

"sash" is the standalone shell, not bash; it  will  display  a  ">  "
prompt - not "bash# ".

> It justs shows :
> 
>     ls
>     pid 8: killed (signal 11)

Maybe you have a problem  with  you  shared  libraries.  Try  running
statically  link  versions  of  some  programs first. Does this work?
[Well, it should when you be able to run a shell...]

Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-4596-87  Fax: (+49)-8142-4596-88  Email: wd@denx.de
Drun'? 'm not drun'! You woudn' dare call m' drun' if I was sober!
                                     - Terry Pratchett, _Men at Arms_

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile Applications for 860 on x86
       [not found]                                                       ` <387F0D81.48F7CABE@iname.com>
@ 2000-01-14 17:13                                                         ` Wolfgang Denk
       [not found]                                                         ` <38827CD5.D7A44261@huawei.com.cn>
  1 sibling, 0 replies; 49+ messages in thread
From: Wolfgang Denk @ 2000-01-14 17:13 UTC (permalink / raw)
  To: Jim Chapman; +Cc: linuxppc-embed


In message <387F0D81.48F7CABE@iname.com> Jim Chapman wrote:
> 
> Do "-ls" at the prompt, not "ls". Prepending "-" runs sash's builtin
> versions, otherwise it will try to find a ls on your ramdisk like any
> other shell. See sash's man page about all available builtin commands.

Or just type "help"

Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-4596-87  Fax: (+49)-8142-4596-88  Email: wd@denx.de
Overdrawn?  But I still have checks left!

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile Applications for 860 on x86
  2000-01-14  8:31                                                   ` dony
  2000-01-14 11:01                                                     ` Wolfgang Denk
@ 2000-01-16  2:01                                                     ` Brendan J Simon
       [not found]                                                       ` <388ABF55.5BD3A031@eng.uct.ac.za>
  1 sibling, 1 reply; 49+ messages in thread
From: Brendan J Simon @ 2000-01-16  2:01 UTC (permalink / raw)
  To: dony; +Cc: linuxppc-embed


dony wrote:

> Hi,
>      When I compile the SASH  with "-static" options and then replace /bin/sh with sash.
> When reseting my MPC860 based board, the kernel boot normally and can show the boot messages. But at last it
> cannot show the "bash#" prompt. If I input "ls" or such commands,
> It justs shows :
>
>     ls
>     pid 8: killed (signal 11)
>     ls
>     pid 9: killed (signal 11)
>     ls
>     pid 10: killed (signal 11)
>
> Do you know why? What do I miss?

Maybe.  Did you redefine SASH to 1 in init/main.c ?
I'm not sure if it is necessary but it might help.  It looks like SASH is running but you do not have a prompt.

Typing "ls" causes the ls executable in /bin to run (or try to).  You are getting signal 11 (seg fault) because
of shared library problems.  I too haven't solved these yet :(

Type "help" and you will see the list of builtin commands.  Try "-ls" and you should get a directory listing
using the builtin version of ls instead of /bin/ls.

Brendan Simon.


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile Applications for 860 on x86
  2000-01-17  3:56                                                           ` Jim Lewis
@ 2000-01-17  3:26                                                             ` dony
  2000-01-17  4:35                                                               ` Jim Lewis
  0 siblings, 1 reply; 49+ messages in thread
From: dony @ 2000-01-17  3:26 UTC (permalink / raw)
  To: Jim Lewis; +Cc: Brendan.Simon, linuxppc-embed




Jim Lewis wrote:

> dony wrote:
>
> > Hi,
> >
> > I download a older version of sash and now it works. It can run any built-in commands , but it fails to run
> > external programs , such as my test program "mytest". I put it both on / and /bin.
> > "-printenv" shows "PATH=/bin:/usr/bin:/etc". When I type "mytest" or "/bin/mytest" on the command prompt ">" , it
> > says "No such file or directory". And I cannot find some lines
> > about  "SASH"  in init/main.c.
> > Do you know why?
>
> Sounds like it  cannot find shared objects such as libc.so. You have two choices:
> 1) when you link the program, add the "-static" option

If I compile my test program which have only one "printf" line with "-static", It is about 1M size!  So I don't think
it's a good idea for me now.

>
> 2) put the necessary libraries in /lib

"rpc.nfsd -F -d call" says that it cannot find /etc/ld.so.cache and /etc/ld.so.preload. Yes, I have not these two files
after I decompress mbxroot.full.tgz.
Would you please send me a copy of these files? Thank you very much.h.


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile Applications for 860 on x86
       [not found]                                                         ` <38827CD5.D7A44261@huawei.com.cn>
@ 2000-01-17  3:56                                                           ` Jim Lewis
  2000-01-17  3:26                                                             ` dony
  0 siblings, 1 reply; 49+ messages in thread
From: Jim Lewis @ 2000-01-17  3:56 UTC (permalink / raw)
  To: dony; +Cc: linuxppc-embed


dony wrote:

> Hi,
>
> I download a older version of sash and now it works. It can run any built-in commands , but it fails to run
> external programs , such as my test program "mytest". I put it both on / and /bin.
> "-printenv" shows "PATH=/bin:/usr/bin:/etc". When I type "mytest" or "/bin/mytest" on the command prompt ">" , it
> says "No such file or directory". And I cannot find some lines
> about  "SASH"  in init/main.c.
> Do you know why?

Sounds like it  cannot find shared objects such as libc.so. You have two choices:
1) when you link the program, add the "-static" option
2) put the necessary libraries in /lib

If you have access to a linux-ppc machine, the command ldd with tell you what libraries will be loaded when the
command executes.

>
> Thank you very much.
>
> Jim Chapman wrote:
>
> > > In message <387EDEF5.DBD612FA@huawei.com.cn> you write:
> > > >
> > > >      When I compile the SASH  with "-static" options and then replace /bin/sh with sash.
> > > > When reseting my MPC860 based board, the kernel boot normally and can show the boot messages. But at last it
> > > > cannot show the "bash#" prompt. If I input "ls" or such commands,
> > >
> > > "sash" is the standalone shell, not bash; it  will  display  a  ">  "
> > > prompt - not "bash# ".
> > >
> > > > It justs shows :
> > > >
> > > >     ls
> > > >     pid 8: killed (signal 11)
> > >
> > > Maybe you have a problem  with  you  shared  libraries.  Try  running
> > > statically  link  versions  of  some  programs first. Does this work?
> > > [Well, it should when you be able to run a shell...]
> > >
> >
> > Do "-ls" at the prompt, not "ls". Prepending "-" runs sash's builtin
> > versions, otherwise it will try to find a ls on your ramdisk like any
> > other shell. See sash's man page about all available builtin commands.
> > BTW, don't expect all standard command switches to work on those
> > builtins, since sash's versions are _very_ minimized.
> >
> > -Jim

-Jim Lewis


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile Applications for 860 on x86
  2000-01-17  3:26                                                             ` dony
@ 2000-01-17  4:35                                                               ` Jim Lewis
  0 siblings, 0 replies; 49+ messages in thread
From: Jim Lewis @ 2000-01-17  4:35 UTC (permalink / raw)
  To: dony; +Cc: Brendan.Simon, linuxppc-embed


dony wrote:

> Jim Lewis wrote:
>
> > dony wrote:
> >
> > > Hi,
> > >
> > > I download a older version of sash and now it works. It can run any built-in commands , but it fails to run
> > > external programs , such as my test program "mytest". I put it both on / and /bin.
> > > "-printenv" shows "PATH=/bin:/usr/bin:/etc". When I type "mytest" or "/bin/mytest" on the command prompt ">" , it
> > > says "No such file or directory". And I cannot find some lines
> > > about  "SASH"  in init/main.c.
> > > Do you know why?
> >
> > Sounds like it  cannot find shared objects such as libc.so. You have two choices:
> > 1) when you link the program, add the "-static" option
>
> If I compile my test program which have only one "printf" line with "-static", It is about 1M size!  So I don't think
> it's a good idea for me now.
>
> >
> > 2) put the necessary libraries in /lib
>
> "rpc.nfsd -F -d call" says that it cannot find /etc/ld.so.cache and /etc/ld.so.preload. Yes, I have not these two files
> after I decompress mbxroot.full.tgz.
> Would you please send me a copy of these files? Thank you very much.h.

You don't really need those files. If they are not there, the loader will just look in the default places for the
libraries. A hello-world program will probably need /lib/ld.so.1 and /lib/libc.so.

If you do want those files, it would be best to build ldconfig and run it to generate ld.so.cache.


--
Jim Lewis


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile dynamic apps for mpc860 on ix86
       [not found]                                                           ` <388BA902.B41A2E11@huawei.com.cn>
@ 2000-01-24  3:00                                                             ` Brendan J Simon
  2000-01-24  5:03                                                               ` Wolfgang Denk
  2000-01-24  6:46                                                               ` dony
  0 siblings, 2 replies; 49+ messages in thread
From: Brendan J Simon @ 2000-01-24  3:00 UTC (permalink / raw)
  To: dony; +Cc: Grant Carter, linuxppc-embedded


dony wrote:

> In fact, I have posted ALL howtos (not brief howtos)  that I have done when compiling the cross-compile environment. And
> these are all stealed from CrossGcc FAQ. See http://www.objsw.com.
> I do these successfully on SuSE linux (European version), kernel 2.2.13. But the same steps on Redhat linux cannot work
> and some errors occur. I don't know why and are checking these.
> Since Redhat linux is widely used by most linux fans, I will research some effective and stable steps on this. I will
> post to this mail list later when I succeed on Redhat linux.

I am using RedHat-5.2 and I don't have any problems.  There might be some problems with RedHad-6.0 and/or RedHat-6.1.  I
have heard of some people having problems with RedHat-6.x but I think that might be with RTEMS.  Anyway, RedHat-5.2 works
for me.


> > He is using egcs-1.1.2, glibc-2.1 and binutils-2.9.1.0.19a.
> >
> > I have just managed to cross-compile glibc-2.1.1 and glibc-2.1.2 with egcs-1.1.2.  I haven't tested them out yet but
> > will do it this week.  I am running with the embedded-2.2.5.tgz kernel and should upgrade to mpc8xx-2.2.13.tgz
> > kernel.  I assume things should still work with the 2.2.5 kernel and I will let you know soon.
> >
> > I couldn't get glibc-2.1.1 nor glibc-2.1.2 to compile using the cpu=860 flag.  I was setting CC="powerpc-linux-gcc
> > -mcpu=860".
>
> I think maybe you should use "export CC=powerpc-linux-gcc" and not use "-mcpu=860". I don't know why, but I do this and
> succeed.

Yes.  I have successfully built glibc-2.1.1 and glibc-2.1.2 with egcs-1.1.2 and binutils-2.9.1.0.19a.
I have copied all the shared libraries to my nfs root filesystem under /lib.  I still get segmentation faults when I try to
run the dynamic application.  Arghh !!!  This is so annoying.

I'm using embedded-2.2.5 sourece.  Maybe I should try mpc8xx-2.2.13 or linux-2.2.14 ?
Dony, have you modified any of the kernel source code ?

Does any body out there in linuxppc-embedded land have a clue as to what could be causing the segfaults ?
Can someone suggest a way of getting more debugging information.  I'm using nfsd with "-F -d" call options at the moment.
I can see the ld.so.1 gets called which causes lots of reads from ld-2.1.2.so and then that's it.  I would expect to get
calls to libc.so.6 but it never gets that far.


> > I also tried with the --nfp configure flag but I couldn't get any combination to work.
>
> I don't know this option , so not use it.

It is "supposed" to exclude generation of hardware floating point code.
I imagine this should work better in the next release of glibc (whenever that is) as all the fpu code is in a seperate fpu
directory for the powerpc target.

Brendan Simon.


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile dynamic apps for mpc860 on ix86
  2000-01-24  3:00                                                             ` Cross-compile dynamic apps for mpc860 on ix86 Brendan J Simon
@ 2000-01-24  5:03                                                               ` Wolfgang Denk
  2000-01-24  6:46                                                               ` dony
  1 sibling, 0 replies; 49+ messages in thread
From: Wolfgang Denk @ 2000-01-24  5:03 UTC (permalink / raw)
  To: Brendan.Simon; +Cc: dony, Grant Carter, linuxppc-embedded


In message <388BC036.7BC21AE1@ctam.com.au> you write:
>
> I am using RedHat-5.2 and I don't have any problems.  There might be some problems with RedHad-6.0 and/or RedHat-6.1.  I
> have heard of some people having problems with RedHat-6.x but I think that might be with RTEMS.  Anyway, RedHat-5.2 works
> for me.

RH-6.0 and 6. work fine for me and several of my customers.

> Yes.  I have successfully built glibc-2.1.1 and glibc-2.1.2 with egcs-1.1.2 and binutils-2.9.1.0.19a.
> I have copied all the shared libraries to my nfs root filesystem under /lib.  I still get segmentation faults when I try to
> run the dynamic application.  Arghh !!!  This is so annoying.

Make sure you use ONLY files compiled in your  new  environment,  not
ANY files that might exist from older versions in your NFS tree.

Make sure the shell you are running is statically linked!

The easiest way to test this is to copy all relevant files to  a  new
place (say, /test/bin and /test/lib) and then test with "chroot /test".


Wolfgang Denk

--
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-4596-87  Fax: (+49)-8142-4596-88  Email: wd@denx.de
"It's when they say 2 + 2 = 5 that I begin to argue."    - Eric Pepke

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile dynamic apps for mpc860 on ix86
  2000-01-24  3:00                                                             ` Cross-compile dynamic apps for mpc860 on ix86 Brendan J Simon
  2000-01-24  5:03                                                               ` Wolfgang Denk
@ 2000-01-24  6:46                                                               ` dony
  2000-01-24  8:02                                                                 ` Wolfgang Denk
  1 sibling, 1 reply; 49+ messages in thread
From: dony @ 2000-01-24  6:46 UTC (permalink / raw)
  To: Brendan.Simon; +Cc: Grant Carter, linuxppc-embedded




Brendan J Simon wrote:

> dony wrote:
>
> > In fact, I have posted ALL howtos (not brief howtos)  that I have done when compiling the cross-compile environment. And
> > these are all stealed from CrossGcc FAQ. See http://www.objsw.com.
> > I do these successfully on SuSE linux (European version), kernel 2.2.13. But the same steps on Redhat linux cannot work
> > and some errors occur. I don't know why and are checking these.
> > Since Redhat linux is widely used by most linux fans, I will research some effective and stable steps on this. I will
> > post to this mail list later when I succeed on Redhat linux.
>
> I am using RedHat-5.2 and I don't have any problems.  There might be some problems with RedHad-6.0 and/or RedHat-6.1.  I
> have heard of some people having problems with RedHat-6.x but I think that might be with RTEMS.  Anyway, RedHat-5.2 works
> for me.

Yes, I have problems with Redhat-6.0.

>
>
> > > He is using egcs-1.1.2, glibc-2.1 and binutils-2.9.1.0.19a.
> > >
> > > I have just managed to cross-compile glibc-2.1.1 and glibc-2.1.2 with egcs-1.1.2.  I haven't tested them out yet but
> > > will do it this week.  I am running with the embedded-2.2.5.tgz kernel and should upgrade to mpc8xx-2.2.13.tgz
> > > kernel.  I assume things should still work with the 2.2.5 kernel and I will let you know soon.
> > >
> > > I couldn't get glibc-2.1.1 nor glibc-2.1.2 to compile using the cpu=860 flag.  I was setting CC="powerpc-linux-gcc
> > > -mcpu=860".
> >
> > I think maybe you should use "export CC=powerpc-linux-gcc" and not use "-mcpu=860". I don't know why, but I do this and
> > succeed.
>
> Yes.  I have successfully built glibc-2.1.1 and glibc-2.1.2 with egcs-1.1.2 and binutils-2.9.1.0.19a.
> I have copied all the shared libraries to my nfs root filesystem under /lib.  I still get segmentation faults when I try to
> run the dynamic application.  Arghh !!!  This is so annoying.

Hi, Brendan:
    Here are some notes:
    1      Make sure you copy all your libraries under $(prefix)/$(target)/lib and $(prefix)/lib/gcc-lib to your target's root
filesystem /lib.
   2        Make sure you keep their property unchangeable. i.e, if a library is symbol link , you must keep it unchangeable
after copying. Especially, libc.so.6 is a symbol link pointing to libc-2.1.so .
   3         Make sure all  these libraries you are copying are generated when buiding your cross-compile environment.
  4          When cross-compiling your test app, you can specify its running share libraries path using "-Wl,--rpath,/lib".
i.e:
               powerpc-linux-gcc -O2 -mcpu=860 -Wl,--rpath,lib -o mytest mytest.c
              An easyest way to test this is to replace your target NFS root filesystem's /bin/sh with the above "mytest" and
reset your board. And running "rpc.nfsd -F -d call" on your x86 host to monitor whether it can run correctly. If not, what file
it cannot find? In my case , First , it can not find "/etc/ld.so.preload" and "/etc/ld.so.cache". then I run "touch
/tftpboot/etc/{ld.so.preload,ld.so.cache}". Then reset. And continue monitoring.
In my case, this time it cannot find some libraries under /usr/local/lib.Copy all the files it cannot find to its proper
place(where rpc.nfsd reports). In fact you can specify its running share libraries path using "-Wl, --rpath, /lib" to avoid
these.
Keep patient and you will find you are succeeding at this moment.

>
>
> I'm using embedded-2.2.5 sourece.  Maybe I should try mpc8xx-2.2.13 or linux-2.2.14 ?

I use mpc8xx-2.2.13. But I think it makes no difference.

>
> Dony, have you modified any of the kernel source code ?

No.

>
>
> Does any body out there in linuxppc-embedded land have a clue as to what could be causing the segfaults ?
> Can someone suggest a way of getting more debugging information.  I'm using nfsd with "-F -d" call options at the moment.

I think this is enough to debug your problem. This is what I use.

>
> I can see the ld.so.1 gets called which causes lots of reads from ld-2.1.2.so and then that's it.  I would expect to get
> calls to libc.so.6 but it never gets that far.

Then where does it go after it accesses ld.so.1?
dony


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Cross-compile dynamic apps for mpc860 on ix86
  2000-01-24  6:46                                                               ` dony
@ 2000-01-24  8:02                                                                 ` Wolfgang Denk
  0 siblings, 0 replies; 49+ messages in thread
From: Wolfgang Denk @ 2000-01-24  8:02 UTC (permalink / raw)
  To: dony; +Cc: Brendan.Simon, Grant Carter, linuxppc-embedded


In message <388BF52B.213CCD61@huawei.com.cn> dony wrote:
>
>     Here are some notes:
>     1      Make sure you copy all your libraries under $(prefix)/$(target)/lib and $(prefix)/lib/gcc-lib to your target's root
> filesystem /lib.

I don't think you will need the gcc-lib files on your target (as long
as you don't want to compile / linke on the target).

>                powerpc-linux-gcc -O2 -mcpu=860 -Wl,--rpath,lib -o mytest mytest.c
>               An easyest way to test this is to replace your target NFS root filesystem's /bin/sh with the above "mytest" and

Adding "init=<your_path>/mytest" will do as well.

[I don't think it is a good idea to modify files on  the  NFS  server
just for testing things. You might forget to change something back to
the  original state, or in bigger projects there might be other users
trying to use the same NFS server.]

> reset your board. And running "rpc.nfsd -F -d call" on your x86 host to monitor whether it can run correctly. If not, what file
> it cannot find? In my case , First , it can not find "/etc/ld.so.preload" and "/etc/ld.so.cache". then I run "touch
> /tftpboot/etc/{ld.so.preload,ld.so.cache}". Then reset. And continue monitoring.

Again, I don't think this is a good idea. You will be  creating  some
files  that are not really needed. For instance, "/etc/ld.so.preload"
is *NOT* needed at all.

> > Does any body out there in linuxppc-embedded land have a clue as to what could be causing the segfaults ?
> > Can someone suggest a way of getting more debugging information.  I'm using nfsd with "-F -d" call options at the moment.
>
> I think this is enough to debug your problem. This is what I use.

Grrrgh. You cannot really debug anything this way.

For instance, you will never be able to know if a failing attempt  to
open  a  non-existing  file (like "/etc/ld.so.preload") is a critical
error or just a feature that may beuseful  under  some  very  special
circumstances.

> > I can see the ld.so.1 gets called which causes lots of reads from ld-2.1.2.so and then that's it.  I would expect to get
> > calls to libc.so.6 but it never gets that far.
>
> Then where does it go after it accesses ld.so.1?

Good question - do you still claim you can  find  this  out  just  by
looking at the NFS transfers?

Wolfgang Denk

--
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-4596-87  Fax: (+49)-8142-4596-88  Email: wd@denx.de
You young'uns. That was *long* before AltaVista,  DejaNews,  or  even
(gasp) the *Web*! In fact, we typed that thread on steam-powered card
punchers, and shipped it around via Pony Express.
            -- Randal Schwartz in <8cwww1cd0d.fsf@gadget.cscaper.com>

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Please Help Me
@ 2014-09-10 12:01 Alina Yukov
  0 siblings, 0 replies; 49+ messages in thread
From: Alina Yukov @ 2014-09-10 12:01 UTC (permalink / raw)


Good day to you,My name is Alina a dying widow contacting you from the sick
bed. Please I need your assistance in establishing my late husband
investment fund before I depart.
Mrs Alina Yukov.

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 49+ messages in thread

* PLEASE HELP ME
@ 2014-08-20 15:53 Abdoul Issouf
  0 siblings, 0 replies; 49+ messages in thread
From: Abdoul Issouf @ 2014-08-20 15:53 UTC (permalink / raw)


PLEASE HELP ME

Dear  Friend

I am Mr. Abdoul Issouf ,I work for BOA bank Ouagadougou Burkina Faso.
I have a business proposal which concerns the transfer of  $13.5 M USD
 into a foreign account. Everything about this transaction shall be
legally done without any problem.  If you are interested to help me, I
will give you more details as soon as I receive your positive
response. You will be entitled to 40%, 60% will be for me,. If you are
willing to work with me, send me immediately the information listed
bellow.

If you are willing to work with me, Kindly respond to my proposal via
my private email address for security and confidential reasons (
mrissouf1@gmail.com )

Name.......................

Nationality.................

Age..........................

Sex.............................

Occupation.................

Home Telephone...............

Private Telephone................

Address....................................

Thanks

Mr. Abdoul Issouf

^ permalink raw reply	[flat|nested] 49+ messages in thread

* PLEASE HELP ME
@ 2014-08-20 15:20 mrissouf issouf
  0 siblings, 0 replies; 49+ messages in thread
From: mrissouf issouf @ 2014-08-20 15:20 UTC (permalink / raw)


PLEASE HELP ME

Dear  Friend

I am Mr. Abdoul Issouf ,I work for BOA bank Ouagadougou Burkina Faso.
I have a business proposal which concerns the transfer of  $13.5 M USD
 into a foreign account. Everything about this transaction shall be
legally done without any problem.  If you are interested to help me, I
will give you more details as soon as I receive your positive
response. You will be entitled to 40%, 60% will be for me,. If you are
willing to work with me, send me immediately the information listed
bellow.

If you are willing to work with me, Kindly respond to my proposal via
my private email address for security and confidential reasons (
mrissouf1@gmail.com )

Name.......................

Nationality.................

Age..........................

Sex.............................

Occupation.................

Home Telephone...............

Private Telephone................

Address....................................

Thanks

Mr. Abdoul Issouf

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Please help me...
@ 2011-11-26  6:49 shibin k reeny
  0 siblings, 0 replies; 49+ messages in thread
From: shibin k reeny @ 2011-11-26  6:49 UTC (permalink / raw)
  To: kernelnewbies

---------- Forwarded message ----------
From: shibin k reeny <shibinkreeny@gmail.com>
Date: Wed, Nov 23, 2011 at 11:18 AM
Subject: plz help with the serial port pgm....
To: kernelnewbies at kernelnewbies.org


rs232 read pgm is not working when i connect in loopback but write is
wroking plz help...

pgm

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>

#define _POSIX_SOURCE 1

#define BAUDRATE        B9600
#define MODEMDEVICE        "/dev/ttyS1"

int main(void)
{
    int ret, fd;
    struct termios tio;
    char buf[255];

    /* Open device for reading and writing */
    fd = open(MODEMDEVICE, O_RDWR | O_NOCTTY | O_NDELAY);
    if (fd < 0) {
        fprintf(stderr, "Error opening device %s\n", MODEMDEVICE);
        goto done;
    }
    /* get current port attributes */
    ret = tcgetattr(fd, &tio);
    if (ret < 0) {
        fprintf(stderr, "Error retreiving attributes, ret=%d\n", ret);
        goto done;
    }
    tcflush(fd, TCIFLUSH);

    /* set port input speed */
    ret = cfsetispeed(&tio, BAUDRATE);
    if (ret) {
        fprintf(stderr, "Error setting input Baud rate, ret=%d\n", ret);
        goto done;
    }
    /* set port output speed */
    ret = cfsetospeed(&tio, BAUDRATE);
    if (ret) {
        fprintf(stderr, "Error setting output Baud rate, ret=%d\n", ret);
        goto done;
    }

    tio.c_cflag &= ~CRTSCTS; /* HW flow ctl OFF */
    tio.c_cflag &= ~PARENB; /* no parity */
    tio.c_cflag &= ~CSTOPB; /* 1 stop bit */
    tio.c_cflag &= ~CSIZE; /* 1 stop bit */
    tio.c_cflag |= CS8; /* char size; 8N1 */
    tio.c_cflag |= CREAD; /* enable receiver */
    /* set port attributes */
    ret = tcsetattr(fd, TCSANOW, &tio);
    if (ret < 0) {
        fprintf(stderr, "Error setting attributes, ret=%d\n", ret);
        goto done;
    }
    fcntl(fd, F_SETFL, FNDELAY);
    ret = write(fd, "ab\r", 3);
    if (ret < 0)
        fprintf(stderr, "write() of 3 bytes failed!, ret=%d\n", ret);

    printf("no of data written = %d\n",ret);
    usleep(5000);
    while (1) {
        ret = read(fd, buf, sizeof(char));
        if (ret > 0) {
            printf("%c",buf[0]);

        }
    }
done:
    close(fd);
    return 0;
}


##################################
output../a.out
no of data written = 3




########################
strace ./a.out
read(3, 0xbfa8d5dd, 1)                  = -1 EAGAIN (Resource temporarily
unavailable)
read(3, 0xbfa8d5dd, 1)                  = -1 EAGAIN (Resource temporarily
unavailable)
read(3, 0xbfa8d5dd, 1)                  = -1 EAGAIN (Resource temporarily
unavailable)
read(3, 0xbfa8d5dd, 1)                  = -1 EAGAIN (Resource temporarily
unavailable)
read(3, 0xbfa8d5dd, 1)                  = -1 EAGAIN (Resource temporarily
unavailable)
read(3, 0xbfa8d5dd, 1)                  = -1 EAGAIN (Resource temporarily
unavailable)
read(3, 0xbfa8d5dd, 1)                  = -1 EAGAIN (Resource temporarily
unavailable)
read(3, 0xbfa8d5dd, 1)                  = -1 EAGAIN (Resource temporarily
unavailable)
read(3, 0xbfa8d5dd, 1)                  = -1 EAGAIN (Resource temporarily
unavailable)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20111126/61600815/attachment.html 

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: please help me
  2009-12-21  9:15 please " rajkumar
@ 2009-12-21 10:48 ` Emmanuel Florac
  0 siblings, 0 replies; 49+ messages in thread
From: Emmanuel Florac @ 2009-12-21 10:48 UTC (permalink / raw)
  To: rajkumar; +Cc: xfs

Le Mon, 21 Dec 2009 14:45:49 +0530
rajkumar <rajkumar@storageindia.com> écrivait:

> i have scientific linux 4.7 server with kernel 2.6.9.-78.ELsmp and 
> installed the xfs rpms for supporting xfs filesystem.Now created  a 
> volume of 300TB plz tell me how to format.please give commands how to 
> format 300TB using xfs filesystem.

Are you running a 64 bits kernel? A 32 bits kernel won't be able to use
a filesystem bigger than 16 TB.

You need to install the xfs-progs too, to have mkfs.xfs.

To format a 300TB xfs, basically just do

mkfs.xfs /dev/whatever

However you'd better configure your filesystem to match the underlying
device. You must be using some sort of RAID array; you should do it
this way:

mkfs.xfs -d su=<value>,sw=<numberofdataDisks> /dev/whatever

Where <value> is the RAID array stripe size (in bytes, or append a k or
m accordingly) and <sw> the number of data disks (removing parity and
spare drives from the total).

-- 
------------------------------------------------------------------------
Emmanuel Florac     |   Direction technique
                    |   Intellique
                    |	<eflorac@intellique.com>
                    |   +33 1 78 94 84 02
------------------------------------------------------------------------

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 49+ messages in thread

* please help me
@ 2009-12-21  9:15 rajkumar
  2009-12-21 10:48 ` Emmanuel Florac
  0 siblings, 1 reply; 49+ messages in thread
From: rajkumar @ 2009-12-21  9:15 UTC (permalink / raw)
  To: xfs

Dear Sir,

i have scientific linux 4.7 server with kernel 2.6.9.-78.ELsmp and 
installed the xfs rpms for supporting xfs filesystem.Now created  a 
volume of 300TB plz tell me how to format.please give commands how to 
format 300TB using xfs filesystem.

thanks&regards,
rajkumar.
tech support engineer.


__________ Information from ESET Smart Security, version of virus signature database 4704 (20091220) __________

The message was checked by ESET Smart Security.

http://www.eset.com


_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me
  2007-01-10  7:13       ` Debasree Mallick
@ 2007-01-11  0:17         ` Justin Patrin
  0 siblings, 0 replies; 49+ messages in thread
From: Justin Patrin @ 2007-01-11  0:17 UTC (permalink / raw)
  To: openembedded-devel

On 1/9/07, Debasree Mallick <debasreeat@gmail.com> wrote:
> Hi Matthew,
>
> I want to use the prebuilt toolchain for ARM 9 target...But i could
> not....As i skip the command
> #bitbake world  as it will take 35GB
> will it necessary to use the pre buitd toolchain in OE?????...

I'm sorry, I'm not sure how all that connects.

If you want to use a prebuilt toolchain you should be able to as long
as it is in your path and you set ASSUME_PROVIDED to included the
toolchain recipes.

If you don't want to bitbake world you don't have to. Just bitbake the
specific things you want.

It is not necessary to use a pre-built toolchain but you are welcome
to if you wish.

>
> If u can please ans me...
> Thanks
> Debasree
>
> On 1/5/07, Matthew Palmer <mpalmer@hezmatt.org> wrote:
> >
> > [Again, a relevant subject line would help]
> >
> > On Fri, Jan 05, 2007 at 05:14:18PM +0900, Debasree Mallick wrote:
> > > When i type bitbake nano...then
> >
> > [snip]
> >
> > > NOTE: package fakeroot-native-1.2.13: started
> > > NOTE: package fakeroot-native-1.2.13-r1: task do_fetch: started
> > > NOTE: fetch http://openzaurus.org/mirror/fakeroot_1.2.13.tar.gz
> > > --17:11:00--  http://openzaurus.org/mirror/fakeroot_1.2.13.tar.gz
> > >            => `/root/sources/fakeroot_1.2.13.tar.gz'
> > > Resolving openzaurus.org... 85.214.40.226
> > > Connecting to openzaurus.org|85.214.40.226|:80... connected.
> > > HTTP request sent, awaiting response... 302 Found
> > > Location:
> > http://openzaurus.linuxtogo.org/mirror/fakeroot_1.2.13.tar.gz[following]
> > > --17:11:01--
> > http://openzaurus.linuxtogo.org/mirror/fakeroot_1.2.13.tar.gz
> > >            => `/root/sources/fakeroot_1.2.13.tar.gz'
> > > Resolving openzaurus.linuxtogo.org... 85.214.40.226
> > > Reusing existing connection to openzaurus.org:80.
> > > HTTP request sent, awaiting response... 404 Not Found
> > > 17:11:02 ERROR 404: Not Found.
> >
> > Ooooh bugger.  It looks like the source mirror has lost the fakeroot
> > tarball; but that's a pretty old version of fakeroot -- I'm surprised
> > there
> > isn't a newer version in the tree.  I've never needed to build fakeroot to
> > build things like nano, though.  That might be because I've already got
> > fakeroot installed on my machine, though, so perhaps you could give that a
> > shot?  It's not a /solution/, as such, but it'll at least get you going.
> > Meanwhile, someone probably needs to either find that source tarball
> > again,
> > or update the tree to use a newer version of fakeroot.
> >
> > - Matt
> >
> > --
> > With enough people around there's a probability ~=1 that one of them is an
> > MCSE and will give you the wrong answer to your problem.
> >         -- Toni Lassila, in the Monastery
> >
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
> >
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>


-- 
Justin Patrin



^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me
  2007-01-05  8:43     ` Matthew Palmer
  2007-01-05  8:54       ` Marcin Juszkiewicz
@ 2007-01-10  7:13       ` Debasree Mallick
  2007-01-11  0:17         ` Justin Patrin
  1 sibling, 1 reply; 49+ messages in thread
From: Debasree Mallick @ 2007-01-10  7:13 UTC (permalink / raw)
  To: openembedded-devel

Hi Matthew,

I want to use the prebuilt toolchain for ARM 9 target...But i could
not....As i skip the command
#bitbake world  as it will take 35GB
will it necessary to use the pre buitd toolchain in OE?????...

If u can please ans me...
Thanks
Debasree

On 1/5/07, Matthew Palmer <mpalmer@hezmatt.org> wrote:
>
> [Again, a relevant subject line would help]
>
> On Fri, Jan 05, 2007 at 05:14:18PM +0900, Debasree Mallick wrote:
> > When i type bitbake nano...then
>
> [snip]
>
> > NOTE: package fakeroot-native-1.2.13: started
> > NOTE: package fakeroot-native-1.2.13-r1: task do_fetch: started
> > NOTE: fetch http://openzaurus.org/mirror/fakeroot_1.2.13.tar.gz
> > --17:11:00--  http://openzaurus.org/mirror/fakeroot_1.2.13.tar.gz
> >            => `/root/sources/fakeroot_1.2.13.tar.gz'
> > Resolving openzaurus.org... 85.214.40.226
> > Connecting to openzaurus.org|85.214.40.226|:80... connected.
> > HTTP request sent, awaiting response... 302 Found
> > Location:
> http://openzaurus.linuxtogo.org/mirror/fakeroot_1.2.13.tar.gz[following]
> > --17:11:01--
> http://openzaurus.linuxtogo.org/mirror/fakeroot_1.2.13.tar.gz
> >            => `/root/sources/fakeroot_1.2.13.tar.gz'
> > Resolving openzaurus.linuxtogo.org... 85.214.40.226
> > Reusing existing connection to openzaurus.org:80.
> > HTTP request sent, awaiting response... 404 Not Found
> > 17:11:02 ERROR 404: Not Found.
>
> Ooooh bugger.  It looks like the source mirror has lost the fakeroot
> tarball; but that's a pretty old version of fakeroot -- I'm surprised
> there
> isn't a newer version in the tree.  I've never needed to build fakeroot to
> build things like nano, though.  That might be because I've already got
> fakeroot installed on my machine, though, so perhaps you could give that a
> shot?  It's not a /solution/, as such, but it'll at least get you going.
> Meanwhile, someone probably needs to either find that source tarball
> again,
> or update the tree to use a newer version of fakeroot.
>
> - Matt
>
> --
> With enough people around there's a probability ~=1 that one of them is an
> MCSE and will give you the wrong answer to your problem.
>         -- Toni Lassila, in the Monastery
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>


^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me
  2007-01-05  8:43     ` Matthew Palmer
@ 2007-01-05  8:54       ` Marcin Juszkiewicz
  2007-01-10  7:13       ` Debasree Mallick
  1 sibling, 0 replies; 49+ messages in thread
From: Marcin Juszkiewicz @ 2007-01-05  8:54 UTC (permalink / raw)
  To: openembedded-devel

Dnia piątek, 5 stycznia 2007 09:43, Matthew Palmer napisał:

> Ooooh bugger.  It looks like the source mirror has lost the fakeroot
> tarball;

OpenZaurus website moved from SourceForge to LinuxToGo. I'm now populating 
old mirror content.

> but that's a pretty old version of fakeroot -- I'm surprised there isn't
> a newer version in the tree.  

patches welcome

-- 
JID: hrw-jabber.org
OpenEmbedded developer/consultant

                    Resistance Is Useless! (If < 1 ohm)





^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me
  2007-01-05  8:14   ` Debasree Mallick
@ 2007-01-05  8:43     ` Matthew Palmer
  2007-01-05  8:54       ` Marcin Juszkiewicz
  2007-01-10  7:13       ` Debasree Mallick
  0 siblings, 2 replies; 49+ messages in thread
From: Matthew Palmer @ 2007-01-05  8:43 UTC (permalink / raw)
  To: openembedded-devel

[Again, a relevant subject line would help]

On Fri, Jan 05, 2007 at 05:14:18PM +0900, Debasree Mallick wrote:
> When i type bitbake nano...then

[snip]

> NOTE: package fakeroot-native-1.2.13: started
> NOTE: package fakeroot-native-1.2.13-r1: task do_fetch: started
> NOTE: fetch http://openzaurus.org/mirror/fakeroot_1.2.13.tar.gz
> --17:11:00--  http://openzaurus.org/mirror/fakeroot_1.2.13.tar.gz
>            => `/root/sources/fakeroot_1.2.13.tar.gz'
> Resolving openzaurus.org... 85.214.40.226
> Connecting to openzaurus.org|85.214.40.226|:80... connected.
> HTTP request sent, awaiting response... 302 Found
> Location: http://openzaurus.linuxtogo.org/mirror/fakeroot_1.2.13.tar.gz[following]
> --17:11:01--  http://openzaurus.linuxtogo.org/mirror/fakeroot_1.2.13.tar.gz
>            => `/root/sources/fakeroot_1.2.13.tar.gz'
> Resolving openzaurus.linuxtogo.org... 85.214.40.226
> Reusing existing connection to openzaurus.org:80.
> HTTP request sent, awaiting response... 404 Not Found
> 17:11:02 ERROR 404: Not Found.

Ooooh bugger.  It looks like the source mirror has lost the fakeroot
tarball; but that's a pretty old version of fakeroot -- I'm surprised there
isn't a newer version in the tree.  I've never needed to build fakeroot to
build things like nano, though.  That might be because I've already got
fakeroot installed on my machine, though, so perhaps you could give that a
shot?  It's not a /solution/, as such, but it'll at least get you going. 
Meanwhile, someone probably needs to either find that source tarball again,
or update the tree to use a newer version of fakeroot.

- Matt

-- 
With enough people around there's a probability ~=1 that one of them is an
MCSE and will give you the wrong answer to your problem.
	-- Toni Lassila, in the Monastery



^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me
  2007-01-05  8:04 ` Justin Patrin
@ 2007-01-05  8:14   ` Debasree Mallick
  2007-01-05  8:43     ` Matthew Palmer
  0 siblings, 1 reply; 49+ messages in thread
From: Debasree Mallick @ 2007-01-05  8:14 UTC (permalink / raw)
  To: openembedded-devel

Hi,
Thanks for your replay...
When i type bitbake nano...then

NOTE: Using cache in '/stuff/build/tmp/cache/c7x0'
NOTE: Handling BitBake files: / (2855/4065) [70 %]ERROR: Could not include
required file uboot_cvs.bb while parsing
/stuff/org.openembedded.dev/packages/uboot/uboot-devkitidp-pxa255_cvs.bb
NOTE: Handling BitBake files: \ (4065/4065) [100 %]
NOTE: Parsing finished. 3900 cached, 0 parsed, 164 skipped, 0 masked.

NOTE: build 200701051710: started

OE Build Configuration:
BB_VERSION     = "1.6.3"
OE_REVISION    = "624e4cbb972e04d84e15da2a3aeec793dc467ce3"
TARGET_ARCH    = "arm"
TARGET_OS      = "linux"
MACHINE        = "c7x0"
DISTRO         = "openzaurus"
DISTRO_VERSION = ".dev-snapshot-20070105"
TARGET_FPU     = "soft"

NOTE: package fakeroot-native-1.2.13: started
NOTE: package fakeroot-native-1.2.13-r1: task do_fetch: started
NOTE: fetch http://openzaurus.org/mirror/fakeroot_1.2.13.tar.gz
--17:11:00--  http://openzaurus.org/mirror/fakeroot_1.2.13.tar.gz
           => `/root/sources/fakeroot_1.2.13.tar.gz'
Resolving openzaurus.org... 85.214.40.226
Connecting to openzaurus.org|85.214.40.226|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://openzaurus.linuxtogo.org/mirror/fakeroot_1.2.13.tar.gz[following]
--17:11:01--  http://openzaurus.linuxtogo.org/mirror/fakeroot_1.2.13.tar.gz
           => `/root/sources/fakeroot_1.2.13.tar.gz'
Resolving openzaurus.linuxtogo.org... 85.214.40.226
Reusing existing connection to openzaurus.org:80.
HTTP request sent, awaiting response... 404 Not Found
17:11:02 ERROR 404: Not Found.

NOTE: Task failed: Fetch failed:
http://openzaurus.org/mirror/fakeroot_1.2.13.tar.gz
NOTE: package fakeroot-native-1.2.13-r1: task do_fetch: failed
ERROR: TaskFailed event exception, aborting
NOTE: package fakeroot-native-1.2.13: failed
ERROR: Build of nano failed
[root@l5ac190 build]#

this r shown on the screen.......

under tmp/deploy/ipk nothing is store...means building package is
failed...what should i do..
thanks
Debasree
On 1/5/07, Justin Patrin <papercrane@gmail.com> wrote:
>
> On 1/5/07, Debasree Mallick <debasreeat@gmail.com> wrote:
> > Hi,
> > monotone has installed..
> > But when i try to run bitbake nano command
> > it shows some error at the end..
> > Errors r
> > ERROR: TaskFailed event exception, aborting
> > NOTE: package fakeroot-native-1.2.13: failed
> > ERROR: Build of nano failed
> >
>
> You only need to send help requests once.
>
> Something is failing. Please post the error that is showing higher up.
> You may need to include a log file.
>
> --
> Justin Patrin
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>


^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me
  2007-01-05  8:01 Debasree Mallick
@ 2007-01-05  8:04 ` Justin Patrin
  2007-01-05  8:14   ` Debasree Mallick
  0 siblings, 1 reply; 49+ messages in thread
From: Justin Patrin @ 2007-01-05  8:04 UTC (permalink / raw)
  To: openembedded-devel

On 1/5/07, Debasree Mallick <debasreeat@gmail.com> wrote:
> Hi,
> monotone has installed..
> But when i try to run bitbake nano command
> it shows some error at the end..
> Errors r
> ERROR: TaskFailed event exception, aborting
> NOTE: package fakeroot-native-1.2.13: failed
> ERROR: Build of nano failed
>

You only need to send help requests once.

Something is failing. Please post the error that is showing higher up.
You may need to include a log file.

-- 
Justin Patrin



^ permalink raw reply	[flat|nested] 49+ messages in thread

* Please help me
@ 2007-01-05  8:01 Debasree Mallick
  2007-01-05  8:04 ` Justin Patrin
  0 siblings, 1 reply; 49+ messages in thread
From: Debasree Mallick @ 2007-01-05  8:01 UTC (permalink / raw)
  To: openembedded-devel

Hi,
monotone has installed..
But when i try to run bitbake nano command
it shows some error at the end..
Errors r
ERROR: TaskFailed event exception, aborting
NOTE: package fakeroot-native-1.2.13: failed
ERROR: Build of nano failed

If u can then please help me out...
Thanks
Debasree


^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: Please help me
  2006-08-28 12:30 Please " Kumar, Satish B
@ 2006-08-28 14:30 ` Mouhammad Tayseer Alquoatli
  0 siblings, 0 replies; 49+ messages in thread
From: Mouhammad Tayseer Alquoatli @ 2006-08-28 14:30 UTC (permalink / raw)
  To: Kumar, Satish B; +Cc: linux-omap-open-source

On 8/28/06, Kumar, Satish B <SKumar@ciber.com> wrote:
>
> Dear Sharan,
>
> I am new to OMAP5912, I want  know more  familiar with Communication data
> between ARM & DSP, then U  can give useful link to that i can more
> concentrated on this Board.


Hi
you can check:
http://dspgateway.sourceforge.net/pub/index.php?Page=Home
http://dspgateway.sourceforge.net/pub/3.3/DSP_Gateway33_spec.pdf
hope this helps


-- 
Mouhammad Tayseer Alquoatli

^ permalink raw reply	[flat|nested] 49+ messages in thread

* Please help me
@ 2006-08-28 12:30 Kumar, Satish B
  2006-08-28 14:30 ` Mouhammad Tayseer Alquoatli
  0 siblings, 1 reply; 49+ messages in thread
From: Kumar, Satish B @ 2006-08-28 12:30 UTC (permalink / raw)
  To: linux-omap-open-source

Dear Sharan,
 
I am new to OMAP5912, I want  know more  familiar with Communication data between ARM & DSP, then U  can give useful link to that i can more concentrated on this Board.
 
Thanks and Regards,
Sathishkumar.B.M

^ permalink raw reply	[flat|nested] 49+ messages in thread

* RE: please help me
  2006-05-09 16:17 ` Frank Kotler
@ 2006-05-10 14:05   ` httu
  0 siblings, 0 replies; 49+ messages in thread
From: httu @ 2006-05-10 14:05 UTC (permalink / raw)
  To: 'Frank Kotler'; +Cc: linux-assembly

Hi Frank,

I am aware of segment assumption problem but I am still trapped :(

I think the wrong installation of address of interrupt_handler cause the CPU
to jump to the wrong place and the code at that place make the floppy
drive's motor to run forever. When I install the right address of
interrupt_handler, the floppy drive is turned off right the way.

Thank you for your aware of STACK_SIZE. Now, I understand why my CPU runs so
slow!!!
I have changed it to match memory alignment of 4 and it run as it should.

I realize the potential bug when changing %ss, %sp that way. I am a new
assembly programmer.
Please correct me any points or programming style. Thanks a lot :)


>Hope it helped. I haven't tested your code - what's the command-line to 
>as? "-oformat=binary"? (I'm a Nasm user).
Yes, the command-line to is "-oformat=binary"

By the way, please give me any links to websites or books, articles,
documents etc. that talk about the memory organization, memory map or memory
status (I don't know the correct term) right after the bios finishes POST
and tries to load boot sector. Or just give me the correct key words to
search them.

Do you have any good documents, books, etc. talking about the whole BIOS
API? Free or commercial ones are ok :)

Best regards,

Tuha.


-----Original Message-----
From: Frank Kotler [mailto:fbkotler@comcast.net] 
Sent: Tuesday, May 09, 2006 11:18 PM
To: httu
Cc: linux-assembly@vger.kernel.org
Subject: Re: please help me

Hi Tuha,

> Coming on with my bootin :)

Good!

> I install my interrupt handler at the vector 0x21.
> But I cannot reach the interrupt handler.

Another segment:offset mismatch, I think. The label "interrupt_handler" 
is calculated as the offset into the file, plus any ".org" we specify - 
none, in this case. This is correct with respect to BOOTSEG, 0x7C0. 
07C0:00xx will hit code or data in our bootsector... but %cs is still 
whatever bios set it - almost certainly zero. (there are rumors of 
biosen that jump to 07C0:0000 - extremely rare, if it exists at all) You 
want the address in the IVT to be 07C0:00xx or 0000:7Cxx - 0000:00xx 
won't work.

> The led of floppy drive lights up
> forever. It should be turned off when bios has loaded the boot sector into
> RAM!!?

I don't know about this one. I've seen code that turns off the floppy 
motor - via ports on the floppy controller - pretty much "first thing". 
I *thought* that would only be necessary if we had interrupts 
disabled... as we would when entering protected mode, or sometimes when 
altering %ss:%sp. The fact that your code jumps off into lala-land 
attempting the int 21h may be causing it. I'd try to get that fixed 
first, and tackle this if it's still a problem.

> Here is the piece of code.
> 
> .code16
> .section .text
> .globl _start
> _start:
> 	movw	$STACK_SEGMENT, %sp
> 	movw	%sp, %ss
> 	movw	$STACK_SIZE, %sp

A STACK_SIZE of 0xffff is going to mis-align your stack, so all stack 
access will be slow! If you want to use the entire segment, zero is a 
perfectly good initial %sp - it will be decremented, and the first 
(word) push will go at 0xfffe.

I mentioned that sometimes we cli/sti around altering %ss:%sp... I don't 
think it's really necessary these days - non-buggy CPUs disable 
interrupts for one instruction after a load of %ss anyway. Altering %sp 
first, then %ss, then %ss again might be "dangerous", I'm not sure. 
It'll work most of the time anyway - the odds of an interrupt occuring 
in the middle of this are small - but I suppose you'd like it to work 
*all* the time...

> 	pushw	$BOOTSEG
> 	popw	%ds
> 	pushw	$SCREEN_SEGMENT
> 	popw	%es
> 
> #Blank screen
> 	call 	clearScreen
> 
> #Say hello
> 	movw	$MESSAGE_POS, cursor_pos
> 	call 	printString
> 
> #install interrupt handler
> 	pushw	%ds
> 	pushw	$0
> 	popw	%ds
> 	movw    $interrupt_handler, %ds:(4 * 0x21)
> 	movw    %cs, %ds:(4 * 0x21 + 2)

Try "$BOOTSEG" here instead of %cs - I *think* that's the problem.

> 	popw	%ds
> 
> 
> #test interrupt hander
> 	int	$0x21
> 
> 
> die:	jmp	die
> 
> #
> # Functions 
> #
> 
> .type   clearScreen, @function
> clearScreen:
> 	movb	$SCREEN_COLS, %al
> 	movb	$SCREEN_ROWS, %bl
> 	mulb	%bl
> 	movw	%ax, %cx
>         movb    screen_color, %ah
>         movb    $0, %al
> 	xorw 	%di, %di
> 	rep
> 	stosw		#Write ax to to screen and decrement cx, until cx
> equals 0
> 	movw	$0, cursor_pos
> 	ret
> 
> 
> .type   printString, @function
> printString:
> 	movb	message_color, %ah
> 	movw	$MESSAGE_SIZE, %cx
> 	movw	$welcomeMessage, %si
> 	movw	cursor_pos, %di
> loop0:
> 	lodsb		#load byte from string
> 	stosw		#store byte and color on screen
> 	loop 	loop0	#decrement cx, jump to loop0 if cx > 0
> 	movw	%di,  cursor_pos
> 	call	newline

???

> 	ret
> 
> 
> #
> #interupt handlers
> #
> 
> interrupt_handler:
> 	pusha
> 
>         movb    screen_color, %ah
>         movw    $MESSAGE_SIZE, %cx
>         movw    $welcomeMessage, %si
>         movw    cursor_pos, %di
> loop1:
>         lodsb           #load byte from string
>         stosw           #store byte and color on screen
>         loop    loop1   #decrement cx, jump to loop0 if cx > 0
>         movw    %di,  cursor_pos
> 
> 	popa
> 	iret
> 
> 
> #.section .data
> welcomeMessage: .ascii "Hey! my boot loader."
> MESSAGE_SIZE	= . - welcomeMessage
> screen_color:   .byte 0x07      # White on black
> message_color:  .byte 0x03	# cyan on black     
> cursor_pos:     .word 0x0
> 
> 
> .org 510
> boot_flag:      .word 0xAA55
>  
> 
> #constants
> .equ MESSAGE_POS       , 860		#offset 30 at line 5.
> .equ STACK_SEGMENT     , 0x9000      # Top of conventional memory
> .equ STACK_SIZE        , 0xffff      # 64K - 1 bytes of stack
> .equ SCREEN_SEGMENT    , 0xb800
> .equ SCREEN_COLS       , 80
> .equ SCREEN_ROWS       , 25
> .equ BOOTSEG           , 0x07C0                /* original address of
> boot-sector */
> 
> Thanks in advance,

Hope it helped. I haven't tested your code - what's the command-line to 
as? "-oformat=binary"? (I'm a Nasm user). I'm cc'ing this to the list 
(if you just hit "reply", it goes only to sender - you gotta "reply all" 
to have it go to the list. PITA!), in case someone can correct any 
errors. Hope that's what you intended. (If not... too late! :)

Best,
Frank


^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: please help me
       [not found] <000101c6734a$573086d0$c41e1ec7@TuThuyHa>
@ 2006-05-09 16:17 ` Frank Kotler
  2006-05-10 14:05   ` httu
  0 siblings, 1 reply; 49+ messages in thread
From: Frank Kotler @ 2006-05-09 16:17 UTC (permalink / raw)
  To: httu; +Cc: linux-assembly

Hi Tuha,

> Coming on with my bootin :)

Good!

> I install my interrupt handler at the vector 0x21.
> But I cannot reach the interrupt handler.

Another segment:offset mismatch, I think. The label "interrupt_handler" 
is calculated as the offset into the file, plus any ".org" we specify - 
none, in this case. This is correct with respect to BOOTSEG, 0x7C0. 
07C0:00xx will hit code or data in our bootsector... but %cs is still 
whatever bios set it - almost certainly zero. (there are rumors of 
biosen that jump to 07C0:0000 - extremely rare, if it exists at all) You 
want the address in the IVT to be 07C0:00xx or 0000:7Cxx - 0000:00xx 
won't work.

> The led of floppy drive lights up
> forever. It should be turned off when bios has loaded the boot sector into
> RAM!!?

I don't know about this one. I've seen code that turns off the floppy 
motor - via ports on the floppy controller - pretty much "first thing". 
I *thought* that would only be necessary if we had interrupts 
disabled... as we would when entering protected mode, or sometimes when 
altering %ss:%sp. The fact that your code jumps off into lala-land 
attempting the int 21h may be causing it. I'd try to get that fixed 
first, and tackle this if it's still a problem.

> Here is the piece of code.
> 
> .code16
> .section .text
> .globl _start
> _start:
> 	movw	$STACK_SEGMENT, %sp
> 	movw	%sp, %ss
> 	movw	$STACK_SIZE, %sp

A STACK_SIZE of 0xffff is going to mis-align your stack, so all stack 
access will be slow! If you want to use the entire segment, zero is a 
perfectly good initial %sp - it will be decremented, and the first 
(word) push will go at 0xfffe.

I mentioned that sometimes we cli/sti around altering %ss:%sp... I don't 
think it's really necessary these days - non-buggy CPUs disable 
interrupts for one instruction after a load of %ss anyway. Altering %sp 
first, then %ss, then %ss again might be "dangerous", I'm not sure. 
It'll work most of the time anyway - the odds of an interrupt occuring 
in the middle of this are small - but I suppose you'd like it to work 
*all* the time...

> 	pushw	$BOOTSEG
> 	popw	%ds
> 	pushw	$SCREEN_SEGMENT
> 	popw	%es
> 
> #Blank screen
> 	call 	clearScreen
> 
> #Say hello
> 	movw	$MESSAGE_POS, cursor_pos
> 	call 	printString
> 
> #install interrupt handler
> 	pushw	%ds
> 	pushw	$0
> 	popw	%ds
> 	movw    $interrupt_handler, %ds:(4 * 0x21)
> 	movw    %cs, %ds:(4 * 0x21 + 2)

Try "$BOOTSEG" here instead of %cs - I *think* that's the problem.

> 	popw	%ds
> 
> 
> #test interrupt hander
> 	int	$0x21
> 
> 
> die:	jmp	die
> 
> #
> # Functions 
> #
> 
> .type   clearScreen, @function
> clearScreen:
> 	movb	$SCREEN_COLS, %al
> 	movb	$SCREEN_ROWS, %bl
> 	mulb	%bl
> 	movw	%ax, %cx
>         movb    screen_color, %ah
>         movb    $0, %al
> 	xorw 	%di, %di
> 	rep
> 	stosw		#Write ax to to screen and decrement cx, until cx
> equals 0
> 	movw	$0, cursor_pos
> 	ret
> 
> 
> .type   printString, @function
> printString:
> 	movb	message_color, %ah
> 	movw	$MESSAGE_SIZE, %cx
> 	movw	$welcomeMessage, %si
> 	movw	cursor_pos, %di
> loop0:
> 	lodsb		#load byte from string
> 	stosw		#store byte and color on screen
> 	loop 	loop0	#decrement cx, jump to loop0 if cx > 0
> 	movw	%di,  cursor_pos
> 	call	newline

???

> 	ret
> 
> 
> #
> #interupt handlers
> #
> 
> interrupt_handler:
> 	pusha
> 
>         movb    screen_color, %ah
>         movw    $MESSAGE_SIZE, %cx
>         movw    $welcomeMessage, %si
>         movw    cursor_pos, %di
> loop1:
>         lodsb           #load byte from string
>         stosw           #store byte and color on screen
>         loop    loop1   #decrement cx, jump to loop0 if cx > 0
>         movw    %di,  cursor_pos
> 
> 	popa
> 	iret
> 
> 
> #.section .data
> welcomeMessage: .ascii "Hey! my boot loader."
> MESSAGE_SIZE	= . - welcomeMessage
> screen_color:   .byte 0x07      # White on black
> message_color:  .byte 0x03	# cyan on black     
> cursor_pos:     .word 0x0
> 
> 
> .org 510
> boot_flag:      .word 0xAA55
>  
> 
> #constants
> .equ MESSAGE_POS       , 860		#offset 30 at line 5.
> .equ STACK_SEGMENT     , 0x9000      # Top of conventional memory
> .equ STACK_SIZE        , 0xffff      # 64K - 1 bytes of stack
> .equ SCREEN_SEGMENT    , 0xb800
> .equ SCREEN_COLS       , 80
> .equ SCREEN_ROWS       , 25
> .equ BOOTSEG           , 0x07C0                /* original address of
> boot-sector */
> 
> Thanks in advance,

Hope it helped. I haven't tested your code - what's the command-line to 
as? "-oformat=binary"? (I'm a Nasm user). I'm cc'ing this to the list 
(if you just hit "reply", it goes only to sender - you gotta "reply all" 
to have it go to the list. PITA!), in case someone can correct any 
errors. Hope that's what you intended. (If not... too late! :)

Best,
Frank


^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: please help me
  2006-04-24  4:11 ` Frank Kotler
@ 2006-04-24 12:09   ` Tu Ha
  0 siblings, 0 replies; 49+ messages in thread
From: Tu Ha @ 2006-04-24 12:09 UTC (permalink / raw)
  To: Frank Kotler; +Cc: linux-assembly

Thanks a lot.
I got your point. Wrong assumption problem.
It runnnnnnnnnnnnnnnnnnns


On Mon, 2006-04-24 at 00:11, Frank Kotler wrote:
> Tu Ha wrote:
> 
> ...
> > It seems I cannot reference to the "char" memory location. Why?
> 
> Wrong combination of ".org" and ds register, I think. Either use ".org 
> 0x7C00", and load ds from cs (presumably zero) as you do (you'll have to 
> adjust the .org on the signature, too). Or... leave it at ".org 0" (I 
> assume that's what Gas defaults to), and load ds with 0x7C0. (bios loads 
> us at 0x7C00, which can be represented as either 0000:7C00 or 07C0:0000).
> 
>  > How can I debug the binary?
> 
> Bochs? I've never used it, but I understand it'll debug bootsectors...
> 
> Happy bootin',
> Frank
> 
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-assembly" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


^ permalink raw reply	[flat|nested] 49+ messages in thread

* please help me
@ 2006-04-24 10:11 Tu Ha
  2006-04-24  4:11 ` Frank Kotler
  0 siblings, 1 reply; 49+ messages in thread
From: Tu Ha @ 2006-04-24 10:11 UTC (permalink / raw)
  To: linux-assembly

Hi,
I am a beginner writing a boot loader. I use gas to write it and got a
weird issue. The following code just try to show out the screen the
symbol "1" ten times

.code16
.section .text
.globl _start
_start:
        movw    $STACK_SEGMENT, %sp
        movw    %sp, %ss
        movw    $STACK_SIZE, %sp
        pushw   %cs
        popw    %ds
        pushw   $SCREEN_SEGMENT
        popw    %es
        jmp     show_banner
 
show_banner:
        movb    $0x07, %ah #white on black
        movb    char, %al  #show this char
        movw    $10,  %cx  #show this char 10 times
        movw    $0, %di    #show at 0,0
run_banner:
        movw    %ax, %es:(%di)
        inc     %di
        inc     %di
        loop    run_banner
 
die:    jmp     die
 
#.section .data
char:   .ascii "1"
.org 510
boot_flag:      .word 0xAA55
                                                                                                                             
#constants
.equ STACK_SEGMENT     , 0x9000      # Top of conventional memory
.equ STACK_SIZE        , 0xffff      # 64K - 1 bytes of stack
.equ SCREEN_SEGMENT    , 0xb800



However, when running, it shows out a symbol in the extend ascii table
instead of "1" !!!?
It seems I cannot reference to the "char" memory location. Why?

How can I debug the binary?

Any help is appreciated.

Tuha.


^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: please help me
  2006-04-24 10:11 Tu Ha
@ 2006-04-24  4:11 ` Frank Kotler
  2006-04-24 12:09   ` Tu Ha
  0 siblings, 1 reply; 49+ messages in thread
From: Frank Kotler @ 2006-04-24  4:11 UTC (permalink / raw)
  To: Tu Ha; +Cc: linux-assembly

Tu Ha wrote:

...
> It seems I cannot reference to the "char" memory location. Why?

Wrong combination of ".org" and ds register, I think. Either use ".org 
0x7C00", and load ds from cs (presumably zero) as you do (you'll have to 
adjust the .org on the signature, too). Or... leave it at ".org 0" (I 
assume that's what Gas defaults to), and load ds with 0x7C0. (bios loads 
us at 0x7C00, which can be represented as either 0000:7C00 or 07C0:0000).

 > How can I debug the binary?

Bochs? I've never used it, but I understand it'll debug bootsectors...

Happy bootin',
Frank



^ permalink raw reply	[flat|nested] 49+ messages in thread

* please help me
@ 2004-03-30  9:48 Sofia Pujeh
  0 siblings, 0 replies; 49+ messages in thread
From: Sofia Pujeh @ 2004-03-30  9:48 UTC (permalink / raw)
  To: linux-kernel



FROM:SOFIA PUJEH
DAKAR, SENEGAL.
WEST-AFRICA
e-mail:sofia20@wowmail.com

Dear Sir,


I wish to present this proposal for the purpose of investment in your country.My name is SOFIA PUJEH, and I am 20years old.I am the daughter of HON.NGOR MONOH PUJEH the former Minister of Transport and Communication with the present Government of President Kabbah of Sierra-Leone.My father and mother were arrested on 1st of Nov 2001 by Kabbah's Government on allegation of using their postion in the govenment to aid smuggling of diamond from the Kono diamond field,it was just a political vendetta.


My father later died in the prison,it was diagnonised that he was poisoned,but Government report says heart failure. whatever it is, let God be the judge.He sent a note to me before his death, regarding a deposit of the sum of USD$1,200.000.00) One Million Two Hundred Thousand United States Dollars in a Bank in DAKAR SENEGAL. He instructed me to move immediately with the documents to a neighbouring country to seek asylum.I moved to the Republic of Mali where I spent some time before finally moving to DAKAR,to enquire about the deposit.


My mother died just on dec.26th, so i am kind of desolete.
Meanwhile i have located the bank, and have also discussed the possible transfer of the fund to abroad.Unfortunately,my father left a clause that the fund should not be released to me untill i attend the age of 25,or i have to introduce a trusted foreign partner who would be my trustee and investor,hence the need for your assistance.


I request that you be my trustee and assist me in effecting the transfer of the fund to your account or an account you will nominate.You will also be resposible for the investment and management of the fund untill i am able to join you after my education in your country.

You and I will agree on a percentage you will take for your assistance. Please let me know immediately if you can assist me so that I will give you more informations about the deposit.
I thank you in anticipation to your quick response.

Yours faithfully,
SOFIA




^ permalink raw reply	[flat|nested] 49+ messages in thread

* Re: please help  me.......
  2003-09-19  8:55 please " Vijay Angelo
@ 2003-09-19  9:45 ` Arvanitis Kostas
  0 siblings, 0 replies; 49+ messages in thread
From: Arvanitis Kostas @ 2003-09-19  9:45 UTC (permalink / raw)
  To: netfilter

On Friday 19 September 2003 11:55, Vijay Angelo wrote:
> hi
>  I m one among the member of this list ,i have a problem with
> libiptc...please look after if u can do it.
>  I want to insert one rule using the iptc_insert_entry function in
> libiptc....
>  As i m new to netfilter ,libiptc ..i m struggling  a lot..i hope u
> can help me .
>
>  Just give me an information about how to fill the target information
> in the ip_entry structure ...and the  i  target_offset field ...

Well, using the library is complicated. The functions themselves are 
easy to understand how to call, but the format of a rule is very 
complicated.

It is something like generic data applicable to all rules, then data for 
specific match extensions and then data for any target extension.

However is all allocated and used through structs placed inside opaque 
memory chunks, so it is very difficult to explain in an email.

Your best bet is looking through the code for iptables (iptables.c) and 
the various extensions.

-- 
A: No. See http://www.netmeister.org/news/learn2quote.html
Q: Should I include quotations after my reply ?



^ permalink raw reply	[flat|nested] 49+ messages in thread

* please help  me.......
@ 2003-09-19  8:55 Vijay Angelo
  2003-09-19  9:45 ` Arvanitis Kostas
  0 siblings, 1 reply; 49+ messages in thread
From: Vijay Angelo @ 2003-09-19  8:55 UTC (permalink / raw)
  To: netfilter

hi
 I m one among the member of this list ,i have a problem with
libiptc...please look after if u can do it.
 I want to insert one rule using the iptc_insert_entry function in
libiptc....
 As i m new to netfilter ,libiptc ..i m struggling  a lot..i hope u can help
me .

 Just give me an information about how to fill the target information in the
ip_entry structure ...and the  i  target_offset field ...

    I want insert a rule like..
  -t nat -A PREROUTING   -s 192.45.23..1 -p icmp -j DROP

  please help me on how to fill the structure and invoke the function.
  I m eagerly expecting your reply...

  thanking you
  vijay




^ permalink raw reply	[flat|nested] 49+ messages in thread

end of thread, other threads:[~2014-09-10 12:01 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-12-31  2:29 Please help me dony
1999-12-27  8:42 ` Raphael Bossek
2000-01-02  7:23   ` dony
1999-12-30  2:11 ` Brendan J Simon
     [not found]   ` <38701F3A.FAD6263E@huawei.com.cn>
1999-12-30  4:23     ` Brendan J Simon
     [not found]       ` <38704D0B.94438516@huawei.com.cn>
1999-12-30  6:46         ` Brendan J Simon
1999-12-30 13:25           ` Charles Lepple
2000-01-03 11:48           ` Cannot booting the kernel dony
2000-01-04  0:46             ` Brendan J Simon
     [not found]               ` <38715DAE.B6CBC772@huawei.com.cn>
     [not found]                 ` <3871572F.FA4E7842@ctam.com.au>
     [not found]                   ` <38717C52.ECF1AFFD@huawei.com.cn>
     [not found]                     ` <3871953B.345DDA23@ctam.com.au>
     [not found]                       ` <38754F28.B6B4CE70@huawei.com.cn>
     [not found]                         ` <38754419.20D95C5A@ctam.com.au>
     [not found]                           ` <3876A6E5.3488738B@huawei.com.cn>
     [not found]                             ` <3876C6FD.794BD1BF@ctam.com.au>
     [not found]                               ` <387A87DF.4ED23CA6@huawei.com.cn>
     [not found]                                 ` <387A81F3.702B29A2@ctam.com.au>
     [not found]                                   ` <387C4D8D.9C058F1C@huawei.com.cn>
     [not found]                                     ` <387D3212.A4E9904F@ctam.com.au>
2000-01-13  7:10                                       ` Cross-compile Applications for 860 on x86 dony
2000-01-13 22:09                                         ` Brendan J Simon
     [not found]                                       ` <387DAFAF.DB0096C7@huawei.com.cn>
     [not found]                                         ` <387E460F.B007CE56@ctam.com.au>
     [not found]                                           ` <387E7F82.99AF83CE@huawei.com.cn>
     [not found]                                             ` <387E7AF5.A92A6122@ctam.com.au>
     [not found]                                               ` <387E9927.48689C08@huawei.com.cn>
     [not found]                                                 ` <387EBEB9.B69B1680@ctam.com.au>
2000-01-14  8:31                                                   ` dony
2000-01-14 11:01                                                     ` Wolfgang Denk
     [not found]                                                       ` <387F0D81.48F7CABE@iname.com>
2000-01-14 17:13                                                         ` Wolfgang Denk
     [not found]                                                         ` <38827CD5.D7A44261@huawei.com.cn>
2000-01-17  3:56                                                           ` Jim Lewis
2000-01-17  3:26                                                             ` dony
2000-01-17  4:35                                                               ` Jim Lewis
2000-01-16  2:01                                                     ` Brendan J Simon
     [not found]                                                       ` <388ABF55.5BD3A031@eng.uct.ac.za>
     [not found]                                                         ` <388B9C86.8970590A@ctam.com.au>
     [not found]                                                           ` <388BA902.B41A2E11@huawei.com.cn>
2000-01-24  3:00                                                             ` Cross-compile dynamic apps for mpc860 on ix86 Brendan J Simon
2000-01-24  5:03                                                               ` Wolfgang Denk
2000-01-24  6:46                                                               ` dony
2000-01-24  8:02                                                                 ` Wolfgang Denk
     [not found] ` <000401bf5016$4757c420$0201a8c0@home>
1999-12-31  8:37   ` Please help me dony
     [not found]     ` <000c01bf5086$3e358d80$0201a8c0@home>
2000-01-01  1:58       ` dony
     [not found]         ` <001801bf50e1$6d3ad8a0$0201a8c0@home>
2000-01-01  8:46           ` dony
1999-12-31  8:40   ` dony
2003-09-19  8:55 please " Vijay Angelo
2003-09-19  9:45 ` Arvanitis Kostas
2004-03-30  9:48 Sofia Pujeh
2006-04-24 10:11 Tu Ha
2006-04-24  4:11 ` Frank Kotler
2006-04-24 12:09   ` Tu Ha
     [not found] <000101c6734a$573086d0$c41e1ec7@TuThuyHa>
2006-05-09 16:17 ` Frank Kotler
2006-05-10 14:05   ` httu
2006-08-28 12:30 Please " Kumar, Satish B
2006-08-28 14:30 ` Mouhammad Tayseer Alquoatli
2007-01-05  8:01 Debasree Mallick
2007-01-05  8:04 ` Justin Patrin
2007-01-05  8:14   ` Debasree Mallick
2007-01-05  8:43     ` Matthew Palmer
2007-01-05  8:54       ` Marcin Juszkiewicz
2007-01-10  7:13       ` Debasree Mallick
2007-01-11  0:17         ` Justin Patrin
2009-12-21  9:15 please " rajkumar
2009-12-21 10:48 ` Emmanuel Florac
2011-11-26  6:49 Please " shibin k reeny
2014-08-20 15:20 PLEASE HELP ME mrissouf issouf
2014-08-20 15:53 Abdoul Issouf
2014-09-10 12:01 Please Help Me Alina Yukov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.