blob: 87246f2717a7a66b984e3679d2789f24ffc4a554 (
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 = "r4"
SRC_URI = "svn://svn.nslu2-linux.org/svnroot/fis;module=trunk;proto=http"
S="${WORKDIR}/trunk"
export CFLAGS += "--std=c99"
do_install() {
${STRIP} ${S}/fis
install -d ${D}/${sbindir}
install -m 755 ${S}/fis ${D}/${sbindir}
}
|