All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH 0/3] add idevicerestore support
@ 2022-03-29  2:48 Potin Lai
  2022-03-29  2:48 ` [meta-oe][PATCH 1/3] libimobiledevice-glue: add recipe Potin Lai
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Potin Lai @ 2022-03-29  2:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Potin Lai

This patch series adds idevicerestore package and dependent libraries.

Potin Lai (3):
  libimobiledevice-glue: add recipe
  libirecovery: add recipe
  idevicerestore: add recipe

 .../libimobiledevice-glue_git.bb                  | 15 +++++++++++++++
 .../libirecovery/libirecovery_git.bb              | 15 +++++++++++++++
 .../idevicerestore/idevicerestore_git.bb          | 15 +++++++++++++++
 3 files changed, 45 insertions(+)
 create mode 100644 meta-oe/recipes-connectivity/libimobiledevice-glue/libimobiledevice-glue_git.bb
 create mode 100644 meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb
 create mode 100644 meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb

-- 
2.17.1



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

* [meta-oe][PATCH 1/3] libimobiledevice-glue: add recipe
  2022-03-29  2:48 [meta-oe][PATCH 0/3] add idevicerestore support Potin Lai
@ 2022-03-29  2:48 ` Potin Lai
  2022-03-29  2:48 ` [meta-oe][PATCH 2/3] libirecovery: " Potin Lai
  2022-03-29  2:48 ` [meta-oe][PATCH 3/3] idevicerestore: " Potin Lai
  2 siblings, 0 replies; 5+ messages in thread
From: Potin Lai @ 2022-03-29  2:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Potin Lai

libimobiledevice-glue is the library with common code used by the
libraries and tools around the libimobiledevice project.

Signed-off-by: Potin Lai <potin.lai@quantatw.com>
---
 .../libimobiledevice-glue_git.bb                  | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 meta-oe/recipes-connectivity/libimobiledevice-glue/libimobiledevice-glue_git.bb

diff --git a/meta-oe/recipes-connectivity/libimobiledevice-glue/libimobiledevice-glue_git.bb b/meta-oe/recipes-connectivity/libimobiledevice-glue/libimobiledevice-glue_git.bb
new file mode 100644
index 000000000..28303d082
--- /dev/null
+++ b/meta-oe/recipes-connectivity/libimobiledevice-glue/libimobiledevice-glue_git.bb
@@ -0,0 +1,15 @@
+SUMMARY = "Library with common code used by the libraries and tools around the libimobiledevice project"
+LICENSE = "LGPL-2.1"
+LIC_FILES_CHKSUM = "\
+    file://COPYING;md5=6ab17b41640564434dda85c06b7124f7 \
+"
+
+HOMEPAGE = "http://www.libimobiledevice.org/"
+
+DEPENDS = "libplist"
+
+SRCREV = "ecb0996fd2a3b0539153dd3ef901d137bf498ffe"
+SRC_URI = "git://github.com/libimobiledevice/libimobiledevice-glue;protocol=https;branch=master"
+
+S = "${WORKDIR}/git"
+inherit autotools pkgconfig
-- 
2.17.1



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

* [meta-oe][PATCH 2/3] libirecovery: add recipe
  2022-03-29  2:48 [meta-oe][PATCH 0/3] add idevicerestore support Potin Lai
  2022-03-29  2:48 ` [meta-oe][PATCH 1/3] libimobiledevice-glue: add recipe Potin Lai
@ 2022-03-29  2:48 ` Potin Lai
  2022-03-29 15:18   ` [oe] " Khem Raj
  2022-03-29  2:48 ` [meta-oe][PATCH 3/3] idevicerestore: " Potin Lai
  2 siblings, 1 reply; 5+ messages in thread
From: Potin Lai @ 2022-03-29  2:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Potin Lai

libirecovery is a cross-platform library which implements communication
to iBoot/iBSS found on Apple's iOS devices via USB.

Signed-off-by: Potin Lai <potin.lai@quantatw.com>
---
 .../libirecovery/libirecovery_git.bb              | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb

diff --git a/meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb b/meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb
new file mode 100644
index 000000000..30c633caf
--- /dev/null
+++ b/meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb
@@ -0,0 +1,15 @@
+SUMMARY = "The libirecovery library allows communication with iBoot/iBSS of iOS devices via USB"
+LICENSE = "LGPL-2.1"
+LIC_FILES_CHKSUM = "\
+    file://COPYING;md5=23c2a5e0106b99d75238986559bb5fc6 \
+"
+
+HOMEPAGE = "http://www.libimobiledevice.org/"
+
+DEPENDS = "libimobiledevice-glue libusb1"
+
+SRCREV = "e19094594552b7bed60418ffe6f46f455e6bb78f"
+SRC_URI = "git://github.com/libimobiledevice/libirecovery;protocol=https;branch=master"
+
+S = "${WORKDIR}/git"
+inherit autotools pkgconfig
-- 
2.17.1



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

* [meta-oe][PATCH 3/3] idevicerestore: add recipe
  2022-03-29  2:48 [meta-oe][PATCH 0/3] add idevicerestore support Potin Lai
  2022-03-29  2:48 ` [meta-oe][PATCH 1/3] libimobiledevice-glue: add recipe Potin Lai
  2022-03-29  2:48 ` [meta-oe][PATCH 2/3] libirecovery: " Potin Lai
@ 2022-03-29  2:48 ` Potin Lai
  2 siblings, 0 replies; 5+ messages in thread
From: Potin Lai @ 2022-03-29  2:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Potin Lai

A command-line application to restore firmware files to iOS devices.

Signed-off-by: Potin Lai <potin.lai@quantatw.com>
---
 .../idevicerestore/idevicerestore_git.bb          | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb

diff --git a/meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb b/meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb
new file mode 100644
index 000000000..8fedb6447
--- /dev/null
+++ b/meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb
@@ -0,0 +1,15 @@
+SUMMARY = "A command-line application to restore firmware files to iOS devices"
+LICENSE = "LGPL-3.0"
+LIC_FILES_CHKSUM = "\
+    file://COPYING;md5=e6a600fd5e1d9cbde2d983680233ad02 \
+"
+
+HOMEPAGE = "http://www.libimobiledevice.org/"
+
+DEPENDS = "libirecovery libimobiledevice libzip curl"
+
+SRCREV = "280575bb95977241e240ed081a2602d68746443e"
+SRC_URI = "git://github.com/libimobiledevice/idevicerestore;protocol=https;branch=master"
+
+S = "${WORKDIR}/git"
+inherit autotools pkgconfig
-- 
2.17.1



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

* Re: [oe] [meta-oe][PATCH 2/3] libirecovery: add recipe
  2022-03-29  2:48 ` [meta-oe][PATCH 2/3] libirecovery: " Potin Lai
@ 2022-03-29 15:18   ` Khem Raj
  0 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2022-03-29 15:18 UTC (permalink / raw)
  To: Potin Lai; +Cc: openembeded-devel

this fails for mips with

undefined reference to `bswap64'

https://errors.yoctoproject.org/Errors/Details/653670/

On Mon, Mar 28, 2022 at 7:49 PM Potin Lai <potin.lai@quantatw.com> wrote:
>
> libirecovery is a cross-platform library which implements communication
> to iBoot/iBSS found on Apple's iOS devices via USB.
>
> Signed-off-by: Potin Lai <potin.lai@quantatw.com>
> ---
>  .../libirecovery/libirecovery_git.bb              | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)
>  create mode 100644 meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb
>
> diff --git a/meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb b/meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb
> new file mode 100644
> index 000000000..30c633caf
> --- /dev/null
> +++ b/meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb
> @@ -0,0 +1,15 @@
> +SUMMARY = "The libirecovery library allows communication with iBoot/iBSS of iOS devices via USB"
> +LICENSE = "LGPL-2.1"
> +LIC_FILES_CHKSUM = "\
> +    file://COPYING;md5=23c2a5e0106b99d75238986559bb5fc6 \
> +"
> +
> +HOMEPAGE = "http://www.libimobiledevice.org/"
> +
> +DEPENDS = "libimobiledevice-glue libusb1"
> +
> +SRCREV = "e19094594552b7bed60418ffe6f46f455e6bb78f"
> +SRC_URI = "git://github.com/libimobiledevice/libirecovery;protocol=https;branch=master"
> +
> +S = "${WORKDIR}/git"
> +inherit autotools pkgconfig
> --
> 2.17.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#96249): https://lists.openembedded.org/g/openembedded-devel/message/96249
> Mute This Topic: https://lists.openembedded.org/mt/90101059/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

end of thread, other threads:[~2022-03-29 15:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-29  2:48 [meta-oe][PATCH 0/3] add idevicerestore support Potin Lai
2022-03-29  2:48 ` [meta-oe][PATCH 1/3] libimobiledevice-glue: add recipe Potin Lai
2022-03-29  2:48 ` [meta-oe][PATCH 2/3] libirecovery: " Potin Lai
2022-03-29 15:18   ` [oe] " Khem Raj
2022-03-29  2:48 ` [meta-oe][PATCH 3/3] idevicerestore: " Potin Lai

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.