diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-06-04 10:04:44 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-06-04 10:04:44 +0200 |
| commit | 9828f432fe1ec678a5a78ad841b4f4d6beb3795b (patch) | |
| tree | 9ce957f0c2344544cb5c9777764603eff2acc5e7 /dev/boot/BootKit/Device.h | |
| parent | 88a8745e45f525e5fb12b6b048df87afabebbfc9 (diff) | |
fix: Better architectural design of BootZ's SATA device.
fix: Use 512 instead of 4096 as a sector size inside SATA's
BootZ device.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/boot/BootKit/Device.h')
| -rw-r--r-- | dev/boot/BootKit/Device.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/boot/BootKit/Device.h b/dev/boot/BootKit/Device.h index 8f5bf854..6ae8cd6b 100644 --- a/dev/boot/BootKit/Device.h +++ b/dev/boot/BootKit/Device.h @@ -20,8 +20,8 @@ class Device { NE_MOVE_DEFAULT(Device) struct Trait { - SizeT mBase{1024}; - SizeT mSize{1024}; + SizeT mBase{0}; + SizeT mSize{0}; }; virtual Trait& Leak() = 0; |
