Files
initrd/modd.conf

15 lines
338 B
Plaintext
Raw Normal View History

2022-02-04 19:59:42 +01:00
modd.conf {}
2024-04-29 12:54:25 +02:00
**/*.rs Cargo.* {
prep: cargo test
prep: cargo build
prep: debug/init-version
2022-02-04 19:59:42 +01:00
}
2024-04-29 12:54:25 +02:00
target/debug/init Dockerfile {
prep: docker build --network host -t novit-initrd-gen .
prep: docker run --net=host --rm novit-initrd-gen |base64 -d >dist/initrd.new
prep: mv dist/initrd.new dist/initrd
2024-04-29 12:54:25 +02:00
prep: ls -sh dist/initrd
2020-02-28 01:30:10 +01:00
}