Changeset c34f98f in mainline for arch/ppc32/loader/main.c


Ignore:
Timestamp:
2006-06-06T17:09:10Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9d371cb
Parents:
9fa072dc
Message:

update boot loader API

File:
1 edited

Legend:

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

    r9fa072dc rc34f98f  
    101101        }
    102102       
     103        if (!ofw_keyboard(&bootinfo.keyboard)) {
     104                printf("Error: unable to get keyboard properties, halting.\n");
     105                halt();
     106        }
     107       
    103108        printf("\nDevice statistics\n");
    104109        printf(" screen at %L, resolution %dx%d, %d bpp (scanline %d bytes)\n", bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline);
     110        printf(" keyboard at %L (size %d bytes)\n", bootinfo.keyboard.addr, bootinfo.keyboard.size);
    105111       
    106112        void *real_mode_pa = ofw_translate(&real_mode);
Note: See TracChangeset for help on using the changeset viewer.