diff options
author | Chris Larson <clarson@kergoth.com> | 2004-09-18 18:20:23 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-09-18 18:20:23 +0000 |
commit | 4b9805cba53ee926fbc9b3b72901b15d72982af0 (patch) | |
tree | 956c484f804848c2b0357c09d35742334f60dc8b /slugtool/slugtool.oe | |
parent | 4d426656fdd26ae8e8066911c9a6d323e0f69cf8 (diff) |
Merge
2004/09/19 00:03:51+09:30 (none)!rwhitby
Fixed the Redbook -> Redboot typo in slugtool, and made corresponding changes to the nslu2 firmware unpacking and packing procedures.
BKrev: 414c7c67rQASFlywei1gQZEgaXh7iQ
Diffstat (limited to 'slugtool/slugtool.oe')
-rw-r--r-- | slugtool/slugtool.oe | 16 |
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}/ +} |