mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
Remove ELF and initrd loading from the kernel. The bootloader now loads the initial programs, as it does with the kernel. Other files that were in the initrd are now on the ESP, and non-program files are just passed as modules.
14 lines
180 B
C++
14 lines
180 B
C++
/// \file types.h
|
|
/// Definitions of shared types used throughout the bootloader
|
|
#pragma once
|
|
|
|
namespace boot {
|
|
|
|
struct buffer
|
|
{
|
|
size_t size;
|
|
void *data;
|
|
};
|
|
|
|
} // namespace boot
|