summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEduardo Ferreira <eduardo.barbosa@toradex.com>2025-02-05 12:55:09 -0300
committerKhem Raj <raj.khem@gmail.com>2025-02-05 13:56:33 -0800
commit2835bfab941bd8da9bf6c30c8a40c5daf9a3a2d3 (patch)
treeea3dcc1b38ca1cd4bde4320cece15d7a688596e1
parent110992d5109924e67bf2087085c7bd019a08c042 (diff)
downloadmeta-openembedded-2835bfab941bd8da9bf6c30c8a40c5daf9a3a2d3.tar.gz
libatasmart: fix SRC_URI protocol
This recipe SRC_URI was defining the fetch protocol as 'https', but if we look into libatasmart's repo [1], it says it supports 'git' and 'http'. This was resulting in the recipe being stuck forever in the 'do_fetch' task. [1] https://git.0pointer.net/libatasmart.git Signed-off-by: Eduardo Ferreira <eduardo.barbosa@toradex.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/libatasmart/libatasmart_0.19.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/libatasmart/libatasmart_0.19.bb b/meta-oe/recipes-support/libatasmart/libatasmart_0.19.bb
index 59b26d821e..dfe63ddbcd 100644
--- a/meta-oe/recipes-support/libatasmart/libatasmart_0.19.bb
+++ b/meta-oe/recipes-support/libatasmart/libatasmart_0.19.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LGPL;md5=2d5025d4aa3495befef8f17206a5b0a1"
5DEPENDS = "udev" 5DEPENDS = "udev"
6 6
7SRCREV = "de6258940960443038b4c1651dfda3620075e870" 7SRCREV = "de6258940960443038b4c1651dfda3620075e870"
8SRC_URI = "git://git.0pointer.net/libatasmart.git;protocol=https;branch=master \ 8SRC_URI = "git://git.0pointer.net/libatasmart.git;protocol=http;branch=master \
9 file://0001-Makefile.am-add-CFLAGS-and-LDFLAGS-definiton.patch \ 9 file://0001-Makefile.am-add-CFLAGS-and-LDFLAGS-definiton.patch \
10" 10"
11 11