mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-03 06:13:02 +02:00
- Adapt boot scripts to exepect the split FIT header/SquashFS image layout. - Make sure that we can boot from any kind of block device (most importantly virtio for GNS3). - Rename net -> dhcp as we might have more kinds of netboots in the future (http).
20 lines
398 B
Devicetree
20 lines
398 B
Devicetree
/ {
|
|
config {
|
|
env: environment {
|
|
};
|
|
};
|
|
};
|
|
|
|
&env {
|
|
vendor = "infix";
|
|
bootdelay = "-2";
|
|
bootcmd = "run ixboot";
|
|
boot_targets = "virtio mmc";
|
|
|
|
ixboot = /incbin/("scripts/ixboot.sh");
|
|
ixbootmedia = /incbin/("scripts/ixbootmedia.sh");
|
|
ixbootslot = /incbin/("scripts/ixbootslot.sh");
|
|
ixprepblk = /incbin/("scripts/ixprepblk.sh");
|
|
ixprepdhcp = /incbin/("scripts/ixprepdhcp.sh");
|
|
};
|