Changeset 6d37d27 in mainline
- Timestamp:
- 2008-09-05T11:24:28Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a9ddab2
- Parents:
- 6745592
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ppc32/loader/main.c
r6745592 r6d37d27 117 117 } 118 118 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"); 123 121 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"); 128 124 129 125 printf("\nDevice statistics\n"); -
boot/arch/ppc32/loader/ofwarch.c
r6745592 r6d37d27 40 40 void write(const char *str, const int len) 41 41 { 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 } 43 49 } 44 50 -
contrib/toolchain/toolchain.ppc32.sh
r6745592 r6d37d27 21 21 22 22 BINUTILS_VERSION="2.18" 23 GCC_VERSION="4.3. 1"23 GCC_VERSION="4.3.2" 24 24 25 25 BINUTILS="binutils-${BINUTILS_VERSION}.tar.gz"
Note:
See TracChangeset
for help on using the changeset viewer.