diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2023-03-10 15:08:15 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-23 22:45:34 +0000 |
| commit | e77d98a99278d0afcbe2bfb4925811d2cb5c7597 (patch) | |
| tree | 608cf3bc5358fd0fc40b245306abe9542b2e3577 | |
| parent | 7a502f838ae7cbf41e9a3b825aa0032275e8234d (diff) | |
| download | poky-e77d98a99278d0afcbe2bfb4925811d2cb5c7597.tar.gz | |
dhcpcd: Fix install conflict when enable multilib.
Error: Transaction test error:
file /usr/share/man/man8/dhcpcd.8 conflicts between attempted installs of dhcpcd-doc-9.4.1-r0.cortexa57 and lib32-dhcpcd-doc-9.4.1-r0.armv7ahf_neon
The differences between the two files are as follows:
@@ -821,7 +821,7 @@
If you always use the same options, put them here.
.It Pa /usr/libexec/dhcpcd-run-hooks
Bourne shell script that is run to configure or de-configure an interface.
-.It Pa /usr/lib64/dhcpcd/dev
+.It Pa /usr/lib/dhcpcd/dev
Linux
.Pa /dev
management modules.
(From OE-Core rev: 800ea13091216a59e21718fa0fada45b45bdca2c)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 65ca2c4b7349a4f7dcfcc580d926a99c673deb60)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-connectivity/dhcpcd/dhcpcd_9.4.1.bb | 1 | ||||
| -rw-r--r-- | meta/recipes-connectivity/dhcpcd/files/0001-dhcpcd.8-Fix-conflict-error-when-enable-multilib.patch | 46 |
2 files changed, 47 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/dhcpcd/dhcpcd_9.4.1.bb b/meta/recipes-connectivity/dhcpcd/dhcpcd_9.4.1.bb index 39e689d2f6..579fa95df7 100644 --- a/meta/recipes-connectivity/dhcpcd/dhcpcd_9.4.1.bb +++ b/meta/recipes-connectivity/dhcpcd/dhcpcd_9.4.1.bb | |||
| @@ -19,6 +19,7 @@ SRC_URI = "https://roy.marples.name/downloads/${BPN}/${BPN}-${PV}.tar.xz \ | |||
| 19 | file://0001-privsep-linux-fix-SECCOMP_AUDIT_ARCH-missing-ppc64le.patch \ | 19 | file://0001-privsep-linux-fix-SECCOMP_AUDIT_ARCH-missing-ppc64le.patch \ |
| 20 | file://dhcpcd.service \ | 20 | file://dhcpcd.service \ |
| 21 | file://dhcpcd@.service \ | 21 | file://dhcpcd@.service \ |
| 22 | file://0001-dhcpcd.8-Fix-conflict-error-when-enable-multilib.patch \ | ||
| 22 | " | 23 | " |
| 23 | 24 | ||
| 24 | SRC_URI[sha256sum] = "819357634efed1ea5cf44ec01b24d3d3f8852fec8b4249925dcc5667c54e376c" | 25 | SRC_URI[sha256sum] = "819357634efed1ea5cf44ec01b24d3d3f8852fec8b4249925dcc5667c54e376c" |
diff --git a/meta/recipes-connectivity/dhcpcd/files/0001-dhcpcd.8-Fix-conflict-error-when-enable-multilib.patch b/meta/recipes-connectivity/dhcpcd/files/0001-dhcpcd.8-Fix-conflict-error-when-enable-multilib.patch new file mode 100644 index 0000000000..12998aada4 --- /dev/null +++ b/meta/recipes-connectivity/dhcpcd/files/0001-dhcpcd.8-Fix-conflict-error-when-enable-multilib.patch | |||
| @@ -0,0 +1,46 @@ | |||
| 1 | From 4915a7e52fcea8fe283a842890a1e726b1e26b10 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Lei Maohui <leimaohui@fujitsu.com> | ||
| 3 | Date: Fri, 10 Mar 2023 03:48:46 +0000 | ||
| 4 | Subject: [PATCH] dhcpcd.8: Fix conflict error when enable multilib. | ||
| 5 | |||
| 6 | Error: Transaction test error: | ||
| 7 | file /usr/share/man/man8/dhcpcd.8 conflicts between attempted | ||
| 8 | installs of dhcpcd-doc-9.4.1-r0.cortexa57 and | ||
| 9 | lib32-dhcpcd-doc-9.4.1-r0.armv7ahf_neon | ||
| 10 | |||
| 11 | The differences between the two files are as follows: | ||
| 12 | @@ -821,7 +821,7 @@ | ||
| 13 | If you always use the same options, put them here. | ||
| 14 | .It Pa /usr/libexec/dhcpcd-run-hooks | ||
| 15 | Bourne shell script that is run to configure or de-configure an interface. | ||
| 16 | -.It Pa /usr/lib64/dhcpcd/dev | ||
| 17 | +.It Pa /usr/lib/dhcpcd/dev | ||
| 18 | Linux | ||
| 19 | .Pa /dev | ||
| 20 | management modules. | ||
| 21 | |||
| 22 | It is just a man file, there is no necessary to manage multiple | ||
| 23 | versions. | ||
| 24 | |||
| 25 | Upstream-Status: Inappropriate [oe specific] | ||
| 26 | Signed-off-by: Lei Maohui <leimaohui@fujitsu.com> | ||
| 27 | --- | ||
| 28 | src/dhcpcd.8.in | 2 +- | ||
| 29 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 30 | |||
| 31 | diff --git a/src/dhcpcd.8.in b/src/dhcpcd.8.in | ||
| 32 | index bc6b3b5..791f2ba 100644 | ||
| 33 | --- a/src/dhcpcd.8.in | ||
| 34 | +++ b/src/dhcpcd.8.in | ||
| 35 | @@ -821,7 +821,7 @@ Configuration file for dhcpcd. | ||
| 36 | If you always use the same options, put them here. | ||
| 37 | .It Pa @SCRIPT@ | ||
| 38 | Bourne shell script that is run to configure or de-configure an interface. | ||
| 39 | -.It Pa @LIBDIR@/dhcpcd/dev | ||
| 40 | +.It Pa /usr/<libdir>/dhcpcd/dev | ||
| 41 | Linux | ||
| 42 | .Pa /dev | ||
| 43 | management modules. | ||
| 44 | -- | ||
| 45 | 2.34.1 | ||
| 46 | |||
