Nigel
50bf952a49
- Added boot device info parsing to the kernel - Added a pointer in the kernel to our pre-kernel BootInfo structure - Created a layout for the FAT driver - Created a layout for the virtual filesystem - Separated IDE driver from the basic atapio driver. This will ensure we are not using one or the other - The create_harddrive shell script will now actually build a harddrive image of the kernel - The virtual filesystem initializes and creates a filesystem structure for every FAT16 partition in the master boot record
11 lines
291 B
C
11 lines
291 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
struct PartitionTableEntry{
|
|
uint8_t driveAttribute;
|
|
uint8_t CHS_start_address [3];
|
|
uint8_t PartitionType;
|
|
uint8_t CHS_lastSector_Address[3];
|
|
uint32_t LBA_partition_start;
|
|
uint32_t Number_sectors_inPartition;
|
|
}__attribute__((packed)); |