blob: e1ac56448bab6eec00f74bb90de6c6a335a5d9bc (
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"
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}
}
|