diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-07-31 05:00:25 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-07-31 05:00:25 +0000 |
commit | de6e70884f1c4c7c0177d48c6e64a02aa3063523 (patch) | |
tree | 3777bd056ca6cf6ee6bc3cbea66f5602dd090bf2 /packages/nonworking/redboot-utils | |
parent | c6c27ea7e56f933919b7b26582c4b3689238a0d9 (diff) |
fis -> redboot-utils
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} +} |