blob: 561718f9b2bd9702898a137f9471948bb1f5066a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
DESCRIPTION = "Tool to edit the Redboot config from userspace"
PR = "r1"
SRC_URI = "http://andrzejekiert.ovh.org/software/fconfig/fconfig-20060419.tar.gz"
S = ${WORKDIR}/fconfig
do_compile() {
${MAKE}
}
do_install() {
install -d ${D}/${sbindir}
install -m 755 ${S}/fconfig ${D}/${sbindir}
}
|