📄 base_multiboot_main.c
字号:
/* * Copyright (c) 1996, 1998 University of Utah and the Flux Group. * All rights reserved. * * This file is part of the Flux OSKit. The OSKit is free software, also known * as "open source;" you can redistribute it and/or modify it under the terms * of the GNU General Public License (GPL), version 2, as published by the Free * Software Foundation (FSF). To explore alternate licensing terms, contact * the University of Utah at csl-dist@cs.utah.edu or +1-801-585-3271. * * The OSKit is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GPL for more details. You should have * received a copy of the GPL along with the OSKit; see the file COPYING. If * not, write to the FSF, 59 Temple Place #330, Boston, MA 02111-1307, USA. */#include <oskit/x86/multiboot.h>#include <oskit/x86/base_vm.h>#include <oskit/x86/base_cpu.h>#include <oskit/x86/proc_reg.h>#include <oskit/x86/pc/reset.h>#include <oskit/x86/pc/base_console.h>#include <oskit/x86/pc/base_multiboot.h>#include <oskit/c/stdlib.h>#include <oskit/c/string.h>struct multiboot_info boot_info;extern oskit_addr_t return_address;extern int main(int argc, char *argv[], char *envp[]);extern char **environ;#ifdef __ELF__extern void __oskit_init(void);extern void __oskit_fini(void);#endif#ifdef GPROFextern int enable_gprof;extern void base_gprof_init();#endifvoidmultiboot_main(oskit_addr_t boot_info_pa){ int argc = 0; char **argv = 0; int i; /* Copy the multiboot_info structure into our pre-reserved area. This avoids one loose fragment of memory that has to be avoided. */ boot_info = *(struct multiboot_info*)phystokv(boot_info_pa); /* Identify the CPU and get the processor tables set up. */ base_cpu_setup(); /* And setup the floating point unit */ base_fpu_init(); /* Initialize the memory allocator and find all available memory. */ base_multiboot_init_mem(); /* Parse the command line into nice POSIX-like args and environment. */ base_multiboot_init_cmdline(&argc, &argv); /* Look for a return address. */ for (i = 0; i < oskit_bootargc; i++) if (strcmp(oskit_bootargv[i], "-retaddr") == 0 && i+1 < oskit_bootargc) { return_address = strtoul(oskit_bootargv[i+1], 0, 0); break; } /* Enable interrupts, since we may be using remote gdb. */ sti(); /* Initialize the console */ base_console_init(oskit_bootargc, oskit_bootargv);#ifdef GPROF if (enable_gprof) base_gprof_init();#endif#ifdef __ELF__ /* Make sure deinit code gets called on exit. */ atexit(__oskit_fini); /* Call init code. */ __oskit_init();#endif /* Invoke the main program. */ exit(main(argc, argv, environ));}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -