diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2019-04-10 13:25:46 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-04-11 11:02:28 -0700 |
commit | a5806d71cb91acf4b69891f955ef6264d9f21aa3 (patch) | |
tree | a6329e48f2c20f764eb8284d8a729f4f261bf993 /meta-filesystems | |
parent | 256f9738a7f54148d1439d178d51b8d1a324571a (diff) | |
download | meta-openembedded-contrib-a5806d71cb91acf4b69891f955ef6264d9f21aa3.tar.gz |
fatresize_1.0.2.bb: Add recipe for fatresize command line tool
The fatresize command line tool provides command line access to the
libparted-fs-resize library implementation of the FAT partition
resizing.
This tool is useful for safely resizing FAT partitions which are
commonly found as the boot partition on a variety of SoC targets (e.g.
RaspberryPi).
The Debian version of the source is used as the original upstream on
SourceForge is no longer actively maintained.
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-filesystems')
-rw-r--r-- | meta-filesystems/recipes-utils/fatresize/fatresize_1.0.2.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta-filesystems/recipes-utils/fatresize/fatresize_1.0.2.bb b/meta-filesystems/recipes-utils/fatresize/fatresize_1.0.2.bb new file mode 100644 index 00000000000..88d495b6858 --- /dev/null +++ b/meta-filesystems/recipes-utils/fatresize/fatresize_1.0.2.bb @@ -0,0 +1,15 @@ +SUMMARY = "Resize FAT partitions using libparted" +SECTION = "console/tools" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" + +SRC_URI = "git://salsa.debian.org/parted-team/fatresize.git;protocol=https" +SRCREV = "3f80afc76ad82d4a1b852a6c8dea24cd9f5e7a24" + +PV = "1.0.2-11" + +S = "${WORKDIR}/git" + +DEPENDS = "parted" + +inherit autotools pkgconfig |