GNU/Weeb Mailing List <[email protected]>
 help / color / mirror / Atom feed
* [PATCH nolibc 0/18] nolibc updates for v6.1
@ 2022-08-31 18:21 Paul E. McKenney
  2022-08-31 18:21 ` [PATCH nolibc 01/18] tools/nolibc: make argc 32-bit in riscv startup code Paul E. McKenney
                   ` (19 more replies)
  0 siblings, 20 replies; 23+ messages in thread
From: Paul E. McKenney @ 2022-08-31 18:21 UTC (permalink / raw)
  To: linux-kernel; +Cc: gwml, kernel-team, w

Hello!

This series provides nolibc updates for v6.1, most notably greatly
improved testing in tools/testing/selftests/nolibc.  See "make help"
for details.

1.	make argc 32-bit in riscv startup code, courtesy of Willy Tarreau.

2.	Optionally flush printk() buffers before powering off.

3.	Use the barrier operation specified by cur_ops, courtesy of
	Zqiang.

4.	fix build warning in sys_mmap() when my_syscall6 is not defined,
	courtesy of Willy Tarreau.

5.	make sys_mmap() automatically use the right __NR_mmap definition,
	courtesy of Willy Tarreau.

6.	add basic infrastructure to ease creation of nolibc tests,
	courtesy of Willy Tarreau.

7.	support a test definition format, courtesy of Willy Tarreau.

8.	implement a few tests for various syscalls, courtesy of Willy
	Tarreau.

9.	add a few tests for some libc functions, courtesy of Willy
	Tarreau.

10.	exit with poweroff on success when getpid() == 1, courtesy of
	Willy Tarreau.

11.	on x86, support exiting with isa-debug-exit, courtesy of Willy
	Tarreau.

12.	recreate and populate /dev and /proc if missing, courtesy of
	Willy Tarreau.

13.	condition some tests on /proc existence, courtesy of Willy
	Tarreau.

14.	support glibc as well, courtesy of Willy Tarreau.

15.	add a "kernel" target to build the kernel with the initramfs,
	courtesy of Willy Tarreau.

16.	add a "defconfig" target, courtesy of Willy Tarreau.

17.	add a "run" target to start the kernel in QEMU, courtesy of
	Willy Tarreau.

18.	"sysroot" target installs a local copy of the sysroot, courtesy
	of Willy Tarreau.

19.	add a "help" target, courtesy of Willy Tarreau.

20.	Avoid generated files being committed, courtesy of Fernanda
	Ma'rouf.

						Thanx, Paul

------------------------------------------------------------------------

 b/Documentation/admin-guide/kernel-parameters.txt |    6 
 b/MAINTAINERS                                     |    1 
 b/kernel/rcu/rcutorture.c                         |    4 
 b/kernel/torture.c                                |    7 
 b/tools/include/nolibc/arch-riscv.h               |    2 
 b/tools/include/nolibc/sys.h                      |    2 
 b/tools/testing/selftests/nolibc/.gitignore       |    4 
 b/tools/testing/selftests/nolibc/Makefile         |   43 ++
 b/tools/testing/selftests/nolibc/nolibc-test.c    |  395 ++++++++++++++++++++++
 tools/include/nolibc/sys.h                        |    2 
 tools/testing/selftests/nolibc/Makefile           |   98 +++++
 tools/testing/selftests/nolibc/nolibc-test.c      |  376 ++++++++++++++++++++
 12 files changed, 925 insertions(+), 15 deletions(-)

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2022-09-01 10:17 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-31 18:21 [PATCH nolibc 0/18] nolibc updates for v6.1 Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 01/18] tools/nolibc: make argc 32-bit in riscv startup code Paul E. McKenney
2022-08-31 18:21 ` [PATCH rcu 1/2] torture: Optionally flush printk() buffers before powering off Paul E. McKenney
2022-09-01  9:12   ` John Ogness
2022-09-01 10:17     ` Paul E. McKenney
2022-08-31 18:21 ` [PATCH rcu 2/2] rcutorture: Use the barrier operation specified by cur_ops Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 02/18] tools/nolibc: fix build warning in sys_mmap() when my_syscall6 is not defined Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 03/18] tools/nolibc: make sys_mmap() automatically use the right __NR_mmap definition Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 04/18] selftests/nolibc: add basic infrastructure to ease creation of nolibc tests Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 05/18] selftests/nolibc: support a test definition format Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 06/18] selftests/nolibc: implement a few tests for various syscalls Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 07/18] selftests/nolibc: add a few tests for some libc functions Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 08/18] selftests/nolibc: exit with poweroff on success when getpid() == 1 Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 09/18] selftests/nolibc: on x86, support exiting with isa-debug-exit Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 10/18] selftests/nolibc: recreate and populate /dev and /proc if missing Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 11/18] selftests/nolibc: condition some tests on /proc existence Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 12/18] selftests/nolibc: support glibc as well Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 13/18] selftests/nolibc: add a "kernel" target to build the kernel with the initramfs Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 14/18] selftests/nolibc: add a "defconfig" target Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 15/18] selftests/nolibc: add a "run" target to start the kernel in QEMU Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 16/18] selftests/nolibc: "sysroot" target installs a local copy of the sysroot Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 17/18] selftests/nolibc: add a "help" target Paul E. McKenney
2022-08-31 18:21 ` [PATCH nolibc 18/18] selftests/nolibc: Avoid generated files being committed Paul E. McKenney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox