blob: 371de11cfd9b82e90a4f3dd012fbda7286c779cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
DESCRIPTION = "Tool to edit the Redboot FIS partition layout from userspace"
FILE_PR = "r5"
SRC_URI = "svn://svn.nslu2-linux.org/svnroot/fis;module=trunk;proto=http;rev=6"
S="${WORKDIR}/trunk"
export CFLAGS += "--std=c99"
do_install() {
${STRIP} ${S}/fis
install -d ${D}/${sbindir}
install -m 755 ${S}/fis ${D}/${sbindir}
}
|