Changeset 820d1ab0 in rtems for c/src/lib/libbsp/sh


Ignore:
Timestamp:
04/28/09 06:34:00 (15 years ago)
Author:
Chris Johns <chrisj@…>
Branches:
4.10, 4.11, 5, master
Children:
2549b4d
Parents:
976b159
Message:

2009-04-28 Chris Johns <chrisj@…>

  • start/start.S: Update for boot_card command line change.
Location:
c/src/lib/libbsp/sh
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/sh/gensh1/ChangeLog

    r976b159 r820d1ab0  
     12009-04-28      Chris Johns <chrisj@rtems.org>
     2
     3        * start/start.S: Update for boot_card command line change.
     4
    152008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
    26
  • c/src/lib/libbsp/sh/gensh1/start/start.S

    r976b159 r820d1ab0  
    2222#include <rtems/asm.h>
    2323
     24#warning Call to boot_card has changed and needs checking.
     25#warning The call is "void boot_card(const char* cmdline);"
     26#warning Please check and remove these warnings.
     27       
    2428        BEGIN_CODE
    2529        PUBLIC(start)
     
    5559
    5660        ! call the mainline
    57         mov #0,r4               ! argc
     61        mov #0,r4               ! command line
    5862        mov.l main_k,r0
    5963        jsr @r0
    60         mov #0,r5               ! argv
    6164
    6265        ! call exit
  • c/src/lib/libbsp/sh/gensh2/ChangeLog

    r976b159 r820d1ab0  
     12009-04-28      Chris Johns <chrisj@rtems.org>
     2
     3        * start/start.S: Update for boot_card command line change.
     4
    152008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
    26
  • c/src/lib/libbsp/sh/gensh2/start/start.S

    r976b159 r820d1ab0  
    3333#include <rtems/asm.h>
    3434
     35#warning Call to boot_card has changed and needs checking.
     36#warning The call is "void boot_card(const char* cmdline);"
     37#warning Please check and remove these warnings.
     38       
    3539        BEGIN_CODE
    3640        PUBLIC(start)
     
    137141
    138142        ! call the mainline
    139         mov #0,r4               ! argc
     143        mov #0,r4               ! command line
    140144        mov.l main_k,r0
    141145        jsr @r0
    142         mov #0,r5               ! argv - can place in dead slot
     146        nop
    143147
    144148        ! call exit
  • c/src/lib/libbsp/sh/gensh4/ChangeLog

    r976b159 r820d1ab0  
     12009-04-28      Chris Johns <chrisj@rtems.org>
     2
     3        * start/start.S: Update for boot_card command line change.
     4
    152008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
    26
  • c/src/lib/libbsp/sh/gensh4/start/start.S

    r976b159 r820d1ab0  
    4141#include "rtems/score/sh7750_regs.h"
    4242
     43#warning Call to boot_card has changed and needs checking.
     44#warning The call is "void boot_card(const char* cmdline);"
     45#warning Please check and remove these warnings.
     46       
    4347        BEGIN_CODE
    4448        PUBLIC(start)
     
    175179        mov.l main_k,r0
    176180        jsr @r0
    177         mov #0,r5               ! argv - can place in dead slot
     181        nop
    178182
    179183        ! call exit
  • c/src/lib/libbsp/sh/shsim/ChangeLog

    r976b159 r820d1ab0  
     12009-04-28      Chris Johns <chrisj@rtems.org>
     2
     3        * start/start.S: Update for boot_card command line change.
     4
    152008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
    26
  • c/src/lib/libbsp/sh/shsim/start/start.S

    r976b159 r820d1ab0  
    2222#include <rtems/asm.h>
    2323
     24#warning Call to boot_card has changed and needs checking.
     25#warning The call is "void boot_card(const char* cmdline);"
     26#warning You need to pass a NULL.
     27#warning Please check and remove these warnings.
     28       
    2429        BEGIN_CODE
    2530        PUBLIC(start)
     
    5560
    5661        ! call the mainline
    57         mov #0,r4               ! argc
     62        mov #0,r4               ! command line
    5863        mov.l main_k,r0
    5964        jsr @r0
    60         mov #0,r5               ! argv
     65       
    6166
    6267        ! call exit
Note: See TracChangeset for help on using the changeset viewer.