Changeset c82950a in mainline for arch/sparc64/loader/ofw.c


Ignore:
Timestamp:
2006-07-03T22:41:27Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1b7dc656
Parents:
b95b717
Message:

Work on sparc64 boot loader (still inactive).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/sparc64/loader/ofw.c

    rb95b717 rc82950a  
    3232void write(const char *str, const int len)
    3333{
    34         ofw_write(str, len);
     34        int i;
     35       
     36        for (i = 0; i < len; i++) {
     37                if (str[i] == '\n')
     38                        ofw_write("\r", 1);
     39                ofw_write(&str[i], 1);
     40        }
    3541}
Note: See TracChangeset for help on using the changeset viewer.