Skip to content

Commit

Permalink
Merge pull request #1 from turing-machines/feature/up_bootloader_size
Browse files Browse the repository at this point in the history
Accommodate for bigger boot-loaders to be written
  • Loading branch information
svenrademakers authored May 8, 2024
2 parents 723b595 + 8aac067 commit 217a36e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/sdcard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const KEYS_EVDEV_PATH: &str = "/dev/input/event0";
const ROOTFS_PATH: &str = "/dev/mmcblk0p2";
const BOOTLOADER_PATH: &str = "/dev/mmcblk0";
const BOOTLOADER_OFFSET: u64 = 8192; // Boot ROM expects this offset, so it will never change
const BOOTLOADER_SIZE: u64 = 5 * 64 * 2048;
const BOOTLOADER_SIZE: u64 = 6 * 64 * 2048;

/// Set up the basic environment (e.g. mount points).
fn setup_initramfs() -> anyhow::Result<()> {
Expand Down

0 comments on commit 217a36e

Please sign in to comment.