summaryrefslogtreecommitdiff
path: root/packages/redboot-utils
diff options
context:
space:
mode:
authorOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2007-08-02 08:32:03 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2007-08-02 08:32:03 +0000
commitbad89a45a6abfd7ecf62429366089da02a2b92f1 (patch)
tree1c0422c5f917fa96463abb3d45cc7c27711c5bfb /packages/redboot-utils
parentb4abcd7a8d3882312c51098e0c03304007b94ccf (diff)
parentb3e110eff605bd2361ea92bd748f59e48d508f33 (diff)
merge of '2ef8a2b13a8a5d81ce6663db27657a18b66de8cb'
and '81722d85338d326b44bc58a0fe61f15c7fbd724f'
Diffstat (limited to 'packages/redboot-utils')
-rw-r--r--packages/redboot-utils/fis_1.0.bb15
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/redboot-utils/fis_1.0.bb b/packages/redboot-utils/fis_1.0.bb
new file mode 100644
index 0000000000..b0d6d76008
--- /dev/null
+++ b/packages/redboot-utils/fis_1.0.bb
@@ -0,0 +1,15 @@
+DESCRIPTION = "Tool to edit the Redboot FIS partition layout from userspace"
+PR = "r3"
+
+SRC_URI = "http://svn.chezphil.org/utils/trunk/fis.c"
+
+do_compile() {
+ ${CC} --std=c99 -Os -W -o fis ${WORKDIR}/fis.c
+}
+
+do_install() {
+ ${STRIP} ${WORKDIR}/fis-${PV}/fis
+
+ install -d ${D}/${sbindir}
+ install -m 755 ${WORKDIR}/fis-${PV}/fis ${D}/${sbindir}
+}