diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-05-09 11:45:10 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-05-09 11:45:10 +0000 |
commit | 1f6ff6dddbc59757ea7e1f42f6742ed2023b4a8e (patch) | |
tree | 6187b3dc61372fe2c3a6dfb08aa5ad99888e472a /mtd | |
parent | 54983cb5bfac28e60d7f517321fb1433b892cc80 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages
2004/05/09 13:45:04+02:00 uni-frankfurt.de!mickey
revert 'update' which broke mtd. guys, please look into
the history of files, since core packages like that seldomly just start to fail unnoticed. recent mtd cvs changed
executable names and we just cought up with upstream a couple of days ago. please always try against current CVSDATE
BKrev: 409e19c6K3lILO0B313KNMtqxYhOCQ
Diffstat (limited to 'mtd')
-rw-r--r-- | mtd/mtd-native.oe | 6 | ||||
-rw-r--r-- | mtd/mtd.oe | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/mtd/mtd-native.oe b/mtd/mtd-native.oe index 2fbdc49095..ed32e7e08f 100644 --- a/mtd/mtd-native.oe +++ b/mtd/mtd-native.oe @@ -4,9 +4,9 @@ DEPENDS = "patcher-native zlib-native" FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/mtd" do_stage () { - for binary in ftl_format erase eraseall nanddump doc_loadbios \ - mkfs.jffs ftl_check mkfs.jffs2 lock unlock einfo mtd_debug \ - fcp nandwrite jffs2dump; do + for binary in ftl_format flash_erase flash_eraseall nanddump doc_loadbios \ + mkfs.jffs ftl_check mkfs.jffs2 flash_lock flash_unlock flash_info mtd_debug \ + flashcp nandwrite jffs2dump; do install -m 0755 util/$binary ${STAGING_BINDIR}/ done } diff --git a/mtd/mtd.oe b/mtd/mtd.oe index c6a11b5037..b2fb355003 100644 --- a/mtd/mtd.oe +++ b/mtd/mtd.oe @@ -15,9 +15,9 @@ do_compile () { do_install () { install -d ${D}${bindir} - for binary in ftl_format erase eraseall nanddump doc_loadbios \ - mkfs.jffs ftl_check mkfs.jffs2 lock unlock einfo mtd_debug \ - fcp nandwrite jffs2dump; do + for binary in ftl_format flash_erase flash_eraseall nanddump doc_loadbios \ + mkfs.jffs ftl_check mkfs.jffs2 flash_lock flash_unlock flash_info mtd_debug \ + flashcp nandwrite jffs2dump; do install -m 0755 util/$binary ${D}${bindir} done } |