-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
qemu user mode fixes #1044
base: master
Are you sure you want to change the base?
qemu user mode fixes #1044
Conversation
The files in /proc/sys/fs/binfmt_misc just need to exist. They are not executable.
Synced from qemu-linux-user-9.1.1
@@ -1438,7 +1438,7 @@ if test -n "$CCACHE" ; then | |||
fi | |||
|
|||
if test -z "$RPMLIST" -a -z "$RUNNING_IN_VM" ; then | |||
if test -z "$repos" -a -z "$BUILD_RPMS" -a "$BUILD_DIST" = "${BUILD_DIST#obs:/}"; then | |||
if test -z "$repos" -a -z "$BUILD_RPMS" -a "$BUILD_DIST" = "${BUILD_DIST#obs:/}" -a -d "/etc/zypp/repos.d"; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is incompatible and does not belong this request?
@@ -2,6 +2,7 @@ VERSION=0.1 | |||
SCM=$(shell if test -d .svn; then echo svn; elif test -d .git; then echo git; fi) | |||
DATE=$(shell date +%Y%m%d%H%M) | |||
BUILD=build | |||
CFLAGS=-Wall -g -O2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A fallback is okay, but the env. should still be used by default.
@@ -6,30 +6,30 @@ | |||
|
|||
# NOTE: blacklisted host machine types are added via space separated elements | |||
|
|||
:aarch64:M::\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xb7:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff:/usr/bin/qemu-aarch64:P aarch64 | |||
:qemu-aarch64:M::\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xb7\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/bin/qemu-aarch64:FP aarch64 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this an intentionaly incompatible change? Does mean we need a way to handle backward compability to older versions here?
No description provided.