mirror of
https://github.com/pengutronix/genimage.git
synced 2024-11-23 09:43:50 +08:00
2b1f054ed1
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
28 lines
437 B
Plaintext
28 lines
437 B
Plaintext
image file1.img {
|
|
file {}
|
|
name = "exec-test"
|
|
exec-pre = "./exec-check.sh file1.img"
|
|
}
|
|
|
|
image file2.img {
|
|
file {}
|
|
name = "exec-test"
|
|
mountpoint = "/"
|
|
exec-post = "./exec-check.sh file2.img"
|
|
}
|
|
|
|
image file3.img {
|
|
file {}
|
|
name = "exec-test"
|
|
empty = true
|
|
exec-pre = "./exec-check.sh file3.img empty"
|
|
}
|
|
|
|
image file4.img {
|
|
file {}
|
|
name = "exec-test"
|
|
empty = true
|
|
mountpoint = "/"
|
|
exec-post = "./exec-check.sh file4.img empty"
|
|
}
|