Changeset 6d37d27 in mainline


Ignore:
Timestamp:
2008-09-05T11:24:28Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a9ddab2
Parents:
6745592
Message:

ppc32 updates

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/ppc32/loader/main.c

    r6745592 r6d37d27  
    117117        }
    118118       
    119         if (!ofw_screen(&bootinfo.screen)) {
    120                 printf("Error: unable to get screen properties, halting.\n");
    121                 halt();
    122         }
     119        if (!ofw_screen(&bootinfo.screen))
     120                printf("Warning: unable to get screen properties.\n");
    123121       
    124         if (!ofw_keyboard(&bootinfo.keyboard)) {
    125                 printf("Error: unable to get keyboard properties, halting.\n");
    126                 halt();
    127         }
     122        if (!ofw_keyboard(&bootinfo.keyboard))
     123                printf("Warning: unable to get keyboard properties.\n");
    128124       
    129125        printf("\nDevice statistics\n");
  • boot/arch/ppc32/loader/ofwarch.c

    r6745592 r6d37d27  
    4040void write(const char *str, const int len)
    4141{
    42         ofw_write(str, len);
     42        int i;
     43       
     44        for (i = 0; i < len; i++) {
     45                if (str[i] == '\n')
     46                        ofw_write("\r", 1);
     47                ofw_write(&str[i], 1);
     48        }
    4349}
    4450
  • contrib/toolchain/toolchain.ppc32.sh

    r6745592 r6d37d27  
    2121
    2222BINUTILS_VERSION="2.18"
    23 GCC_VERSION="4.3.1"
     23GCC_VERSION="4.3.2"
    2424
    2525BINUTILS="binutils-${BINUTILS_VERSION}.tar.gz"
Note: See TracChangeset for help on using the changeset viewer.