mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 09:32:17 +02:00
package_deb: Map TARGET_ARCH x86_64 to DPKG_ARCH amd64
Without this patch packages are generated as x86_64. Which cannot be installed by default. root@qt5022:~# dpkg -i alsa-utils_1.0.27.2-r0_x86-64.deb dpkg: error processing alsa-utils_1.0.27.2-r0_x86-64.deb (--install): package architecture (x86-64) does not match system (amd64) Errors were encountered while processing: alsa-utils_1.0.27.2-r0_x86-64.deb (From OE-Core rev: a08eacc6d821d6946b23a99bca5abf785875b1cf) Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
678cca4421
commit
3beb482112
@@ -295,6 +295,8 @@ python () {
|
||||
darch = d.getVar('DPKG_ARCH', True)
|
||||
if darch in ["x86", "i486", "i586", "i686", "pentium"]:
|
||||
d.setVar('DPKG_ARCH', 'i386')
|
||||
elif darch == "x86_64":
|
||||
d.setVar('DPKG_ARCH', 'amd64')
|
||||
elif darch == "arm":
|
||||
d.setVar('DPKG_ARCH', 'armel')
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user