console.c (8029:442f90a944eb) console.c (11320:42ecb523c64a)
1/*
2 * Copyright (c) 2003-2004 The Regents of The University of Michigan
3 * Copyright (c) 1993 The Hewlett-Packard Development Company
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 405 unchanged lines hidden (view full) ---

414 */
415
416 unix_boot_mem = ROUNDUP8K(&_end);
417
418 printf_lock("First free page after ROM 0x%x\n", unix_boot_mem);
419
420 rpb = (struct rpb *)unix_boot_alloc(HWRPB_PAGES);
421
1/*
2 * Copyright (c) 2003-2004 The Regents of The University of Michigan
3 * Copyright (c) 1993 The Hewlett-Packard Development Company
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 405 unchanged lines hidden (view full) ---

414 */
415
416 unix_boot_mem = ROUNDUP8K(&_end);
417
418 printf_lock("First free page after ROM 0x%x\n", unix_boot_mem);
419
420 rpb = (struct rpb *)unix_boot_alloc(HWRPB_PAGES);
421
422 mdt_bitmap = (unsigned char *)unix_boot_alloc(mdt_bitmap_pages);
422 mdt_bitmap = (unsigned char *)unix_boot_alloc(mdt_bitmap_pages);
423 first = (ulong *)unix_boot_alloc(1);
424 second = (ulong *)unix_boot_alloc(1);
425 third_rpb = (ulong *)unix_boot_alloc(1);
426 reservedFixup = (ulong*) unix_boot_alloc(1);
427 third_kernel = (ulong *)unix_boot_alloc(NUM_KERNEL_THIRD);
428 percpu_logout = (ulong*)unix_boot_alloc(1);
429
430 cons_pages = KSEG_TO_PHYS(unix_boot_mem) / PAGE_SIZE;

--- 644 unchanged lines hidden ---
423 first = (ulong *)unix_boot_alloc(1);
424 second = (ulong *)unix_boot_alloc(1);
425 third_rpb = (ulong *)unix_boot_alloc(1);
426 reservedFixup = (ulong*) unix_boot_alloc(1);
427 third_kernel = (ulong *)unix_boot_alloc(NUM_KERNEL_THIRD);
428 percpu_logout = (ulong*)unix_boot_alloc(1);
429
430 cons_pages = KSEG_TO_PHYS(unix_boot_mem) / PAGE_SIZE;

--- 644 unchanged lines hidden ---