From 3abcadcc2b25992bcc5553e5814c1cb0ecb842e7 Mon Sep 17 00:00:00 2001 From: Giacomo Tesio Date: Mon, 12 Aug 2019 19:01:58 +0200 Subject: [PATCH 1/4] devtools: cross/init.sh: echo "done." to avoid wait to propagate the exit status of the dotter --- hacking | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking b/hacking index 97729c1..f094ef7 160000 --- a/hacking +++ b/hacking @@ -1 +1 @@ -Subproject commit 97729c1fcfdf62be16e285b64abdb6e68eb636d2 +Subproject commit f094ef7ff22a6414a12479c9493cea736f1cb001 From 825a16108c10def9bbcbdf0f9be7485fc3e41c1c Mon Sep 17 00:00:00 2001 From: Giacomo Tesio Date: Tue, 27 Aug 2019 00:55:07 +0200 Subject: [PATCH 2/4] newlib: update --- hacking | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking b/hacking index f094ef7..14e9ad0 160000 --- a/hacking +++ b/hacking @@ -1 +1 @@ -Subproject commit f094ef7ff22a6414a12479c9493cea736f1cb001 +Subproject commit 14e9ad0fe722db98d985453bd6dcf129b4e0a71b From 06ff3516155b45af27c4acbce8bd3d23dc6e0420 Mon Sep 17 00:00:00 2001 From: Giacomo Tesio Date: Wed, 13 Nov 2019 18:26:03 +0100 Subject: [PATCH 3/4] newlib: update --- hacking | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking b/hacking index 707d102..1114e56 160000 --- a/hacking +++ b/hacking @@ -1 +1 @@ -Subproject commit 707d1029225e6d46975722bb277a4578b9d9fe01 +Subproject commit 1114e56fb6975e26fecd0466494105cbe42d8b85 From 49eb11173bb67d4a5bc42fd3d2446d1c7ef5325e Mon Sep 17 00:00:00 2001 From: Giacomo Tesio Date: Wed, 13 Nov 2019 18:27:09 +0100 Subject: [PATCH 4/4] u.h: remove volatile in NativeTypes.p --- arch/amd64/include/u.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/amd64/include/u.h b/arch/amd64/include/u.h index 58e3317..59aacff 100644 --- a/arch/amd64/include/u.h +++ b/arch/amd64/include/u.h @@ -95,7 +95,7 @@ typedef union NativeTypes volatile unsigned int ui; volatile long l; volatile unsigned long ul; - volatile void* p; + void* p; } NativeTypes; extern volatile NativeTypes* _sysargs; # include "syscalls.h"