Re: [PATCH] linux-user: Add missing TARGET___O_TMPFILE for hppa and alpha

2021-02-21 Thread Helge Deller
Dear qemu-stable, can you please consider adding this patch to the qemu-stable branch. Upstream commit 23b311155078bdd5bacc016ff3b3ebb5462b10c0 Thanks, Helge On 2/1/21 4:59 PM, Helge Deller wrote: The hppa and alpha targets miss the #define of the TARGET___O_TMPFILE and as such fail to run a t

Re: [PATCH] linux-user: Add missing TARGET___O_TMPFILE for hppa and alpha

2021-02-13 Thread Laurent Vivier
Le 01/02/2021 à 16:59, Helge Deller a écrit : > The hppa and alpha targets miss the #define of the TARGET___O_TMPFILE > and as such fail to run a trivial symlink command like > > ln -s /bin/bash /tmp > > which results in an -EINVAL return code. > > Adding the define fixes the problem. > > S

Re: [PATCH] linux-user: Add missing TARGET___O_TMPFILE for hppa and alpha

2021-02-13 Thread Laurent Vivier
Le 01/02/2021 à 16:59, Helge Deller a écrit : > The hppa and alpha targets miss the #define of the TARGET___O_TMPFILE > and as such fail to run a trivial symlink command like > > ln -s /bin/bash /tmp > > which results in an -EINVAL return code. > > Adding the define fixes the problem. > > S

[PATCH] linux-user: Add missing TARGET___O_TMPFILE for hppa and alpha

2021-02-01 Thread Helge Deller
The hppa and alpha targets miss the #define of the TARGET___O_TMPFILE and as such fail to run a trivial symlink command like ln -s /bin/bash /tmp which results in an -EINVAL return code. Adding the define fixes the problem. Signed-off-by: Helge Deller --- diff --git a/linux-user/alpha/ta