From 3d85c19c99837789ad3e5c2a4ffe50c79c338bb8 Mon Sep 17 00:00:00 2001 From: noodlefighter Date: Wed, 11 Sep 2024 20:29:28 +0800 Subject: [PATCH] Fix build failure due to rename of mount.blacklist.d folder in udev-extraconf recipe This commit addresses a build failure caused by the renaming of the mount.blacklist.d folder in the udev-extraconf recipe, which is part of the openembedded-core. The issue arose following changes made in the upstream commit 69e486ddb3059f80ba538e1f59c2ca8a8df0faf9(https://github.com/openembedded/openembedded-core/commit/69e486ddb3059f80ba538e1f59c2ca8a8df0faf9) --- .../recipes-core/udev/udev-extraconf_%.bbappend | 2 +- meta-rauc-nxp/recipes-core/udev/udev-extraconf_%.bbappend | 2 +- .../recipes-core/udev/udev-extraconf_%.bbappend | 2 +- meta-rauc-sunxi/recipes-core/udev/udev-extraconf_%.bbappend | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta-rauc-beaglebone/recipes-core/udev/udev-extraconf_%.bbappend b/meta-rauc-beaglebone/recipes-core/udev/udev-extraconf_%.bbappend index 7581d31..0491d4d 100644 --- a/meta-rauc-beaglebone/recipes-core/udev/udev-extraconf_%.bbappend +++ b/meta-rauc-beaglebone/recipes-core/udev/udev-extraconf_%.bbappend @@ -2,5 +2,5 @@ FILESEXTRAPATHS:prepend := "${THISDIR}/files:" SRC_URI:append = " file://bbb-rauc.rules" do_install:append() { - install -m 0644 ${WORKDIR}/bbb-rauc.rules ${D}${sysconfdir}/udev/mount.blacklist.d/ + install -m 0644 ${WORKDIR}/bbb-rauc.rules ${D}${sysconfdir}/udev/mount.ignorelist.d/ } diff --git a/meta-rauc-nxp/recipes-core/udev/udev-extraconf_%.bbappend b/meta-rauc-nxp/recipes-core/udev/udev-extraconf_%.bbappend index 7f0c323..7bd343e 100644 --- a/meta-rauc-nxp/recipes-core/udev/udev-extraconf_%.bbappend +++ b/meta-rauc-nxp/recipes-core/udev/udev-extraconf_%.bbappend @@ -2,5 +2,5 @@ FILESEXTRAPATHS:prepend:cubox-i := "${THISDIR}/files:" SRC_URI:append:cubox-i = " file://cubox-i-rauc.rules" do_install:append:cubox-i() { - install -m 0644 ${WORKDIR}/cubox-i-rauc.rules ${D}${sysconfdir}/udev/mount.blacklist.d/ + install -m 0644 ${WORKDIR}/cubox-i-rauc.rules ${D}${sysconfdir}/udev/mount.ignorelist.d/ } diff --git a/meta-rauc-raspberrypi/recipes-core/udev/udev-extraconf_%.bbappend b/meta-rauc-raspberrypi/recipes-core/udev/udev-extraconf_%.bbappend index 371e391..169ba04 100644 --- a/meta-rauc-raspberrypi/recipes-core/udev/udev-extraconf_%.bbappend +++ b/meta-rauc-raspberrypi/recipes-core/udev/udev-extraconf_%.bbappend @@ -2,5 +2,5 @@ FILESEXTRAPATHS:prepend:rpi := "${THISDIR}/files:" SRC_URI:append:rpi = " file://raspberrypi-rauc.rules" do_install:append:rpi() { - install -m 0644 ${WORKDIR}/raspberrypi-rauc.rules ${D}${sysconfdir}/udev/mount.blacklist.d/ + install -m 0644 ${WORKDIR}/raspberrypi-rauc.rules ${D}${sysconfdir}/udev/mount.ignorelist.d/ } diff --git a/meta-rauc-sunxi/recipes-core/udev/udev-extraconf_%.bbappend b/meta-rauc-sunxi/recipes-core/udev/udev-extraconf_%.bbappend index bfd8e4b..6e42faa 100644 --- a/meta-rauc-sunxi/recipes-core/udev/udev-extraconf_%.bbappend +++ b/meta-rauc-sunxi/recipes-core/udev/udev-extraconf_%.bbappend @@ -2,5 +2,5 @@ FILESEXTRAPATHS:prepend:sun8i := "${THISDIR}/files:" SRC_URI:append:sun8i = " file://sunxi-rauc.rules" do_install:append:sun8i() { - install -m 0644 ${WORKDIR}/sunxi-rauc.rules ${D}${sysconfdir}/udev/mount.blacklist.d/ + install -m 0644 ${WORKDIR}/sunxi-rauc.rules ${D}${sysconfdir}/udev/mount.ignorelist.d/ }