diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2013-08-14 06:31:05 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-08-16 12:58:32 +0200 |
commit | 3e6bb696c4f37aa006dfb455aba31c1620ce89e3 (patch) | |
tree | ed3e9327e4951fb65e592c6daf1ed7035847250a /meta-filesystems | |
parent | ff4badf9873dcf09a43afbbba38aa7ccf116194d (diff) | |
download | meta-openembedded-3e6bb696c4f37aa006dfb455aba31c1620ce89e3.tar.gz |
exfat-utils: add version 1.0.1
The utilities to create, check, label and dump exFAT filesystem
[YOCTO #4178]
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-filesystems')
-rw-r--r-- | meta-filesystems/recipes-utils/exfat-utils/exfat-utils_1.0.1.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-filesystems/recipes-utils/exfat-utils/exfat-utils_1.0.1.bb b/meta-filesystems/recipes-utils/exfat-utils/exfat-utils_1.0.1.bb new file mode 100644 index 000000000..a5a314fb6 --- /dev/null +++ b/meta-filesystems/recipes-utils/exfat-utils/exfat-utils_1.0.1.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | SUMMARY = "utilities to create, check, label and dump exFAT filesystem" | ||
2 | DESCRIPTION = "Utilities to manage extended file allocation table filesystem. \ | ||
3 | This package provides tools to create, check and label the filesystem. It \ | ||
4 | contains \ | ||
5 | - dumpexfat to dump properties of the filesystem \ | ||
6 | - exfatfsck / fsck.exfat to report errors found on a exFAT filesystem \ | ||
7 | - exfatlabel to label a exFAT filesystem \ | ||
8 | - mkexfatfs / mkfs.exfat to create a exFAT filesystem. \ | ||
9 | " | ||
10 | HOMEPAGE = "http://code.google.com/p/exfat/" | ||
11 | SECTION = "universe/otherosfs" | ||
12 | LICENSE = "GPLv3" | ||
13 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
14 | SRC_URI = "${DEBIAN_MIRROR}/main/e/exfat-utils/exfat-utils_${PV}.orig.tar.gz \ | ||
15 | " | ||
16 | DEPENDS = "virtual/libc" | ||
17 | |||
18 | inherit scons | ||
19 | |||
20 | SRC_URI[md5sum] = "e592130829d0bf61fa5e3cd1c759d329" | ||
21 | SRC_URI[sha256sum] = "eeacedca1878065dc3886674ae39cd51149c37bd7d6d7e9325c971a1d1acdab3" | ||
22 | |||
23 | EXTRA_OESCONS = " \ | ||
24 | DESTDIR=${D}/${base_sbindir} \ | ||
25 | " | ||
26 | |||
27 | do_install_prepend() { | ||
28 | install -d ${D}/${base_sbindir} | ||
29 | } | ||