diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2007-04-02 10:53:19 +0000 |
---|---|---|
committer | Oyvind Repvik <nail@nslu2-linux.org> | 2007-04-02 10:53:19 +0000 |
commit | 99fb4aba2ba8c1c4e48cd36de7be4e97bd21dfa3 (patch) | |
tree | 94ce7686aa7e300b6872119decf38653d68d1e92 /packages/redboot-utils | |
parent | 335ea31f4d6d37a42e4fcca9011b24a80799bf13 (diff) |
redboot-utils: move package fis to redboot-utils, add package fconfig
Diffstat (limited to 'packages/redboot-utils')
-rw-r--r-- | packages/redboot-utils/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/redboot-utils/fconfig_20060419.bb | 9 | ||||
-rw-r--r-- | packages/redboot-utils/fis_1.0.bb | 16 |
3 files changed, 25 insertions, 0 deletions
diff --git a/packages/redboot-utils/.mtn2git_empty b/packages/redboot-utils/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/redboot-utils/.mtn2git_empty diff --git a/packages/redboot-utils/fconfig_20060419.bb b/packages/redboot-utils/fconfig_20060419.bb new file mode 100644 index 0000000000..d34d053aee --- /dev/null +++ b/packages/redboot-utils/fconfig_20060419.bb @@ -0,0 +1,9 @@ +DESCRIPTION = "Tool to edit the Redboot config from userspace" +PR = "r0" + +SRC_URI = "http://andrzejekiert.ovh.org/software/fconfig/fconfig-20060419.tar.gz" + +S = ${WORKDIR}/fconfig +do_compile() { + ${MAKE} +}
\ No newline at end of file diff --git a/packages/redboot-utils/fis_1.0.bb b/packages/redboot-utils/fis_1.0.bb new file mode 100644 index 0000000000..d1170b6ba8 --- /dev/null +++ b/packages/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} +} |