kernel-elf-parser 0.3.4

An lightweight ELF parser that parses ELF files and converts them into information needed for kernel building
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg_attr(not(test), no_std)]
#![doc = include_str!("../README.md")]

extern crate alloc;

mod auxv;
mod info;
mod user_stack;

pub use self::{auxv::*, info::*, user_stack::app_stack_region};