mirror of
https://github.com/FunKey-Project/FunKey-OS.git
synced 2026-05-06 04:43:26 +02:00
29 lines
404 B
Plaintext
29 lines
404 B
Plaintext
software =
|
|
{
|
|
version = "2.0.0";
|
|
|
|
hardware-compatibility = [ "#RE:^Rev\.[D-E]$" ];
|
|
|
|
images: (
|
|
{
|
|
filename = "rootfs.ext2.gz";
|
|
device = "/dev/mmcblk0p2";
|
|
type = "raw";
|
|
installed-directly = true;
|
|
compressed = "zlib";
|
|
}
|
|
);
|
|
files: (
|
|
{
|
|
filename = "funkey_gpio_management";
|
|
path = "/tmp/";
|
|
}
|
|
);
|
|
scripts: (
|
|
{
|
|
filename = "update_partition";
|
|
type = "shellscript";
|
|
}
|
|
);
|
|
}
|