void main(void) { /* First, copy the boot header into the "zeropage" */ copy_boot_params(); /* End of heap check */ if (boot_params.hdr.loadflags & CAN_USE_HEAP) { heap_end = (char *)(boot_params.hdr.heap_end_ptr +0x200-STACK_SIZE); } else { /* Boot protocol 2.00 only, no heap available */ puts("WARNING: Ancient bootloader, some functionality " "may be limited!\n"); } /* Make sure we have all the proper CPU support */ if (validate_cpu()) { puts("Unable to boot - please use a kernel appropriate " "for your CPU.\n"); die(); } /* Tell the BIOS what CPU mode we intend to run in. */ set_bios_mode(); /* Detect memory layout */ detect_memory(); /* Set keyboard repeat rate (why?) */ keyboard_set_repeat(); /* Set the video mode */ set_video(); /* Query MCA information */ query_mca(); /* Voyager */ #ifdef CONFIG_X86_VOYAGER query_voyager(); #endif /* Query Intel SpeedStep (IST) information */ query_ist(); /* Query APM information */ #if defined(CONFIG_APM) || defined(CONFIG_APM_MODULE) query_apm_bios(); #endif /* Query EDD information */ #if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE) query_edd(); #endif /* Do the last things and invoke protected mode */ go_to_protected_mode(); }
Devices::Devices() /* Detects installed drives */ { //detect_drive_numbers(); detect_floppy_drives(); detect_memory(); }