|
@@ -6,6 +6,7 @@ pub use elf_sections::{ElfSectionsTag, ElfSection, ElfSectionIter, ElfSectionTyp
|
|
|
pub use elf_sections::{ELF_SECTION_WRITABLE, ELF_SECTION_ALLOCATED, ELF_SECTION_EXECUTABLE};
|
|
|
pub use memory_map::{MemoryMapTag, MemoryArea, MemoryAreaIter};
|
|
|
pub use module::{ModuleTag, ModuleIter};
|
|
|
+pub use command_line::CommandLineTag;
|
|
|
|
|
|
#[macro_use]
|
|
|
extern crate bitflags;
|
|
@@ -15,6 +16,7 @@ mod boot_loader_name;
|
|
|
mod elf_sections;
|
|
|
mod memory_map;
|
|
|
mod module;
|
|
|
+mod command_line;
|
|
|
|
|
|
pub unsafe fn load(address: usize) -> &'static BootInformation {
|
|
|
let multiboot = &*(address as *const BootInformation);
|
|
@@ -54,6 +56,10 @@ impl BootInformation {
|
|
|
self.get_tag(2).map(|tag| unsafe{&*(tag as *const Tag as *const BootLoaderNameTag)})
|
|
|
}
|
|
|
|
|
|
+ pub fn command_line_tag(&self) -> Option<&'static CommandLineTag> {
|
|
|
+ self.get_tag(1).map(|tag| unsafe{&*(tag as *const Tag as *const CommandLineTag)})
|
|
|
+ }
|
|
|
+
|
|
|
fn has_valid_end_tag(&self) -> bool {
|
|
|
const END_TAG: Tag = Tag{typ:0, size:8};
|
|
|
|