mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 12:33:02 +02:00
If the bootloader knows about a factory-reset or dev-mode button, use them to allow stopping the boot process, and to signal the factory-reset condition to infix.
24 lines
585 B
Devicetree
24 lines
585 B
Devicetree
/ {
|
|
config {
|
|
env: environment {
|
|
};
|
|
};
|
|
};
|
|
|
|
&env {
|
|
vendor = "infix";
|
|
bootdelay = "-2";
|
|
bootcmd = "run ixbtn";
|
|
boot_targets = "virtio mmc";
|
|
|
|
ixbtn = /incbin/("scripts/ixbtn.sh");
|
|
ixdevmode = /incbin/("scripts/ixdevmode.sh");
|
|
ixfactory = /incbin/("scripts/ixfactory.sh");
|
|
ixbtn = /incbin/("scripts/ixbtn.sh");
|
|
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");
|
|
};
|