diff options
author | Florian Boor <florian.boor@kernelconcepts.de> | 2007-07-31 16:21:16 +0000 |
---|---|---|
committer | Florian Boor <florian.boor@kernelconcepts.de> | 2007-07-31 16:21:16 +0000 |
commit | 2e61dfe7129ee23bc41ba1ada89eedf3245a16ca (patch) | |
tree | 7d0ad528141ab948a7afd6093e53c2c5f169b29a /packages/nonworking/redboot-utils | |
parent | f89fc38904e333aaa0ab588a741087b32564987d (diff) | |
parent | 0adc9ee1289b5437b6386a44060117a8a5207f01 (diff) |
merge of '15b74f4a5710e603d60db9716cb6cb0619511ac7'
and '8961e177cdb0b701e3bb0304ec24d5c4a3947254'
Diffstat (limited to 'packages/nonworking/redboot-utils')
-rw-r--r-- | packages/nonworking/redboot-utils/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/nonworking/redboot-utils/fis_1.0.bb | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/packages/nonworking/redboot-utils/.mtn2git_empty b/packages/nonworking/redboot-utils/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/nonworking/redboot-utils/.mtn2git_empty diff --git a/packages/nonworking/redboot-utils/fis_1.0.bb b/packages/nonworking/redboot-utils/fis_1.0.bb new file mode 100644 index 0000000000..d1170b6ba8 --- /dev/null +++ b/packages/nonworking/redboot-utils/fis_1.0.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "Tool to edit the Redboot FIS partition layout from userspace" +PR = "r2" + +SRC_URI = "http://svn.chezphil.org/utils/trunk/fis.c \ + svn://svn.chezphil.org/;module=libpbe;proto=http" + +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} +} |