All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fatresize_1.0.2.bb: Add recipe for fatresize command line tool
@ 2019-04-02  8:23 Nathan Rossi
  2019-04-02  8:40 ` Alexander Kanavin
  0 siblings, 1 reply; 3+ messages in thread
From: Nathan Rossi @ 2019-04-02  8:23 UTC (permalink / raw)
  To: openembedded-core

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>
---
The reason for locating the recipe in the parted directory is that the
program itself does not implement the FAT partition resizing it is
merely exposing the functionality from libparted-fs-resize as a command
line tool.
---
 meta/recipes-extended/parted/fatresize_1.0.2.bb | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 meta/recipes-extended/parted/fatresize_1.0.2.bb

diff --git a/meta/recipes-extended/parted/fatresize_1.0.2.bb b/meta/recipes-extended/parted/fatresize_1.0.2.bb
new file mode 100644
index 0000000000..a2f6b6d131
--- /dev/null
+++ b/meta/recipes-extended/parted/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-git+${SRCPV}"
+
+S = "${WORKDIR}/git"
+
+DEPENDS = "parted"
+
+inherit autotools pkgconfig
---
2.20.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] fatresize_1.0.2.bb: Add recipe for fatresize command line tool
  2019-04-02  8:23 [PATCH] fatresize_1.0.2.bb: Add recipe for fatresize command line tool Nathan Rossi
@ 2019-04-02  8:40 ` Alexander Kanavin
  2019-04-02  9:04   ` Nathan Rossi
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Kanavin @ 2019-04-02  8:40 UTC (permalink / raw)
  To: Nathan Rossi; +Cc: openembedded-core

Should this go to meta-oe though? It doesn’t seem like an essential tool.

Alex

> On 2 Apr 2019, at 10.23, Nathan Rossi <nathan@nathanrossi.com> wrote:
> 
> 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>
> ---
> The reason for locating the recipe in the parted directory is that the
> program itself does not implement the FAT partition resizing it is
> merely exposing the functionality from libparted-fs-resize as a command
> line tool.
> ---
> meta/recipes-extended/parted/fatresize_1.0.2.bb | 15 +++++++++++++++
> 1 file changed, 15 insertions(+)
> create mode 100644 meta/recipes-extended/parted/fatresize_1.0.2.bb
> 
> diff --git a/meta/recipes-extended/parted/fatresize_1.0.2.bb b/meta/recipes-extended/parted/fatresize_1.0.2.bb
> new file mode 100644
> index 0000000000..a2f6b6d131
> --- /dev/null
> +++ b/meta/recipes-extended/parted/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-git+${SRCPV}"
> +
> +S = "${WORKDIR}/git"
> +
> +DEPENDS = "parted"
> +
> +inherit autotools pkgconfig
> ---
> 2.20.1
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] fatresize_1.0.2.bb: Add recipe for fatresize command line tool
  2019-04-02  8:40 ` Alexander Kanavin
@ 2019-04-02  9:04   ` Nathan Rossi
  0 siblings, 0 replies; 3+ messages in thread
From: Nathan Rossi @ 2019-04-02  9:04 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: openembedded-core

On Tue, 2 Apr 2019 at 18:40, Alexander Kanavin <alex.kanavin@gmail.com> wrote:
>
> Should this go to meta-oe though? It doesn’t seem like an essential tool.

My thinking was to suggest it in oe-core given its relation to parted.
However if it would be better placed in meta-oe/meta-filesystems I can
update this patch and resubmit it there?

Thanks,
Nathan

>
> Alex
>
> > On 2 Apr 2019, at 10.23, Nathan Rossi <nathan@nathanrossi.com> wrote:
> >
> > 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>
> > ---
> > The reason for locating the recipe in the parted directory is that the
> > program itself does not implement the FAT partition resizing it is
> > merely exposing the functionality from libparted-fs-resize as a command
> > line tool.
> > ---
> > meta/recipes-extended/parted/fatresize_1.0.2.bb | 15 +++++++++++++++
> > 1 file changed, 15 insertions(+)
> > create mode 100644 meta/recipes-extended/parted/fatresize_1.0.2.bb
> >
> > diff --git a/meta/recipes-extended/parted/fatresize_1.0.2.bb b/meta/recipes-extended/parted/fatresize_1.0.2.bb
> > new file mode 100644
> > index 0000000000..a2f6b6d131
> > --- /dev/null
> > +++ b/meta/recipes-extended/parted/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-git+${SRCPV}"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +DEPENDS = "parted"
> > +
> > +inherit autotools pkgconfig
> > ---
> > 2.20.1
> > --
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-core


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-04-02  9:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-02  8:23 [PATCH] fatresize_1.0.2.bb: Add recipe for fatresize command line tool Nathan Rossi
2019-04-02  8:40 ` Alexander Kanavin
2019-04-02  9:04   ` Nathan Rossi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.