Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions machines/odroid-c2/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
arch = "armv8-a+crc";
};
};
dtb = "amlogic/meson-gxbb-odroidc2.dtb";
};

#
# Bootloader (UBoot, extlinux)
#
boot.loader.generic-extlinux-compatible = {
enable = true;
dtbs = ["amlogic/meson-gxbb-odroidc2.dtb"];
};
sdImage.populateBootCommands = with config.system.build; ''
${installBootLoaderNative} ${toplevel} -d boot
Expand All @@ -40,5 +40,5 @@
dd if=${uboot}/u-boot-dtb.bin of=$img conv=notrunc bs=512 seek=97
'';

sdImage.bootSize = lib.mkDefault 40;
sdImage.bootSize = lib.mkDefault 50;
}