add CI job to test tftpboot

This commit is contained in:
Daniel Barlow 2023-12-18 22:42:29 +00:00
parent 9ca9723c9d
commit e5db2691e5
7 changed files with 123 additions and 3 deletions

View file

@ -45,9 +45,9 @@
boot.commandLine = [
"console=ttyAMA0"
];
hardware = {
loadAddress = lim.parseInt "0x00010000";
entryPoint = lim.parseInt "0x00010000";
hardware = let addr = lim.parseInt "0x40008000"; in {
loadAddress = addr;
entryPoint = addr;
};
};
}