From 99e2f59d7cfe460d8593bc1b00b2f68ab6c22126 Mon Sep 17 00:00:00 2001 From: Fabio Estevam Date: Wed, 16 Feb 2022 14:10:02 -0300 Subject: rtc-tools: Update to 2022.02 The patch that adds the rtc-tools Makefile has been accepted upstream, so update to the latest 2022.02 version and remove the local Makefile patch. Also, rename the recipe to reflect the new version. Signed-off-by: Fabio Estevam Signed-off-by: Khem Raj --- .../rtc-tools/0001-rtc-tools-Add-a-Makefile.patch | 39 ---------------------- .../recipes-support/rtc-tools/rtc-tools_1.0.0.bb | 16 --------- .../recipes-support/rtc-tools/rtc-tools_2022.02.bb | 14 ++++++++ 3 files changed, 14 insertions(+), 55 deletions(-) delete mode 100644 meta-oe/recipes-support/rtc-tools/rtc-tools/0001-rtc-tools-Add-a-Makefile.patch delete mode 100644 meta-oe/recipes-support/rtc-tools/rtc-tools_1.0.0.bb create mode 100644 meta-oe/recipes-support/rtc-tools/rtc-tools_2022.02.bb diff --git a/meta-oe/recipes-support/rtc-tools/rtc-tools/0001-rtc-tools-Add-a-Makefile.patch b/meta-oe/recipes-support/rtc-tools/rtc-tools/0001-rtc-tools-Add-a-Makefile.patch deleted file mode 100644 index 1d16a66088..0000000000 --- a/meta-oe/recipes-support/rtc-tools/rtc-tools/0001-rtc-tools-Add-a-Makefile.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 3e9dfc0f21191bdb3ab719479e9c1997a61c5044 Mon Sep 17 00:00:00 2001 -From: Fabio Estevam -Date: Fri, 28 Jan 2022 13:34:45 -0300 -Subject: [PATCH] rtc-tools: Add a Makefile - -Add a Makefile to make installation and uninstallation -process easier. - -Upstream-Status: Submitted [https://marc.info/?l=linux-rtc&m=164332426030004&w=2] -Signed-off-by: Fabio Estevam ---- - Makefile | 16 ++++++++++++++++ - 1 file changed, 16 insertions(+) - create mode 100644 Makefile - -diff --git a/Makefile b/Makefile -new file mode 100644 -index 0000000..71a4c9c ---- /dev/null -+++ b/Makefile -@@ -0,0 +1,16 @@ -+prefix ?= /usr -+bindir ?= $(prefix)/bin -+ -+EXEC = rtc-range rtc rtc-sync -+ -+all: $(EXEC) -+ -+clean: -+ $(RM) $(EXEC) -+ -+install: -+ install -d $(DESTDIR)$(bindir) -+ install $(EXEC) $(DESTDIR)$(bindir) -+ -+uninstall: -+ $(RM) -r $(addprefix $(DESTDIR)$(bindir)/,$(EXEC)) --- -2.25.1 diff --git a/meta-oe/recipes-support/rtc-tools/rtc-tools_1.0.0.bb b/meta-oe/recipes-support/rtc-tools/rtc-tools_1.0.0.bb deleted file mode 100644 index 303585a659..0000000000 --- a/meta-oe/recipes-support/rtc-tools/rtc-tools_1.0.0.bb +++ /dev/null @@ -1,16 +0,0 @@ -SUMMARY = "Useful programs to test rtc drivers" -LICENSE = "GPL-2.0-only" -LIC_FILES_CHKSUM = "file://COPYING;md5=74274e8a218423e49eefdea80bc55038" - -SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/${BPN}.git;protocol=https;branch=master \ - file://0001-rtc-tools-Add-a-Makefile.patch \ - " -SRCREV = "acc442e7af4e1e783432a43d37f1a7938c692659" - -S = "${WORKDIR}/git" - -EXTRA_OEMAKE = "DESTDIR=${D}" - -do_install() { - oe_runmake install -} diff --git a/meta-oe/recipes-support/rtc-tools/rtc-tools_2022.02.bb b/meta-oe/recipes-support/rtc-tools/rtc-tools_2022.02.bb new file mode 100644 index 0000000000..d65f5da859 --- /dev/null +++ b/meta-oe/recipes-support/rtc-tools/rtc-tools_2022.02.bb @@ -0,0 +1,14 @@ +SUMMARY = "Useful programs to test rtc drivers" +LICENSE = "GPL-2.0-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=74274e8a218423e49eefdea80bc55038" + +SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/${BPN}.git;protocol=https;branch=master" +SRCREV = "61839777afedcc7bdb68ea4628c5ce5ca72c2ac8" + +S = "${WORKDIR}/git" + +EXTRA_OEMAKE = "DESTDIR=${D}" + +do_install() { + oe_runmake install +} -- cgit v1.2.3-54-g00ecf