summaryrefslogtreecommitdiff
path: root/slugtool/slugtool.oe
diff options
context:
space:
mode:
Diffstat (limited to 'slugtool/slugtool.oe')
-rw-r--r--slugtool/slugtool.oe16
1 files changed, 16 insertions, 0 deletions
diff --git a/slugtool/slugtool.oe b/slugtool/slugtool.oe
index e69de29bb2..140147e094 100644
--- a/slugtool/slugtool.oe
+++ b/slugtool/slugtool.oe
@@ -0,0 +1,16 @@
+DESCRIPTION = "Slugtool is a small app to disassemble and reassemble \
+flash images for the Linksys NSLU2 device."
+MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
+
+SRC_URI = "http://www.lantz.com/filemgmt_data/files/slugtool.tar.gz \
+ file://redboot_typo.patch;patch=1"
+S = "${WORKDIR}"
+
+do_compile () {
+ ${CC} ${CFLAGS} ${LDFLAGS} slugtool.c -o slugtool
+}
+
+do_install () {
+ install -d ${D}/${bindir}
+ install -m 0755 slugtool ${D}/${bindir}/
+}