blob: 6d32557ae806a495a287e25e7d6e36d7e8ac9e48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
DESCRIPTION = "Example Package with 12MB of random, seeded content"
LICENSE = "CLOSED"
SRC_URI = "file://rand_file.py"
FILES_${PN} = "/usr/lib/big-update"
do_install() {
install -d ${D}/usr/lib/big-update
python ${S}/../rand_file.py ${D}/usr/lib/big-update/a-big-file $(numfmt --from=iec 12M)
}
|