diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-10-28 22:09:03 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-10-28 22:09:20 +0100 |
commit | 09cd046e6cc65ab7bf044503b6404a2ba912bf85 (patch) | |
tree | 2a42565c988b0c36798b9021af601f86a7a9dc19 /mk | |
parent | 87eac2992b7dacd9c4d6e2cf7a5bb51f0bbdca15 (diff) |
qemu-system-s390: add basic support, only virtio-net does not work as expected.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/image.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mk/image.mk b/mk/image.mk index 0940a2f44..a5d77c3cd 100644 --- a/mk/image.mk +++ b/mk/image.mk @@ -79,6 +79,9 @@ ifneq ($(ADK_TARGET_ARCH_AARCH64)$(ADK_TARGET_ARCH_X86_64)$(ADK_TARGET_ARCH_PPC6 test ! -d ${TARGET_DIR}/usr/lib || rm -rf ${TARGET_DIR}/usr/lib/ (cd ${TARGET_DIR}/usr ; ln -sf ${ADK_TARGET_LIBC_PATH} lib) endif +ifeq ($(ADK_TARGET_ARCH_S390),y) + (cd ${TARGET_DIR}/; ln -sf lib lib64) +endif ifeq (${ADK_PRELINK},) prelink: |