1362aecb2SWilly Tarreau# SPDX-License-Identifier: GPL-2.0 2362aecb2SWilly Tarreau# Makefile for nolibc tests 31a1200b6SThomas Weißschuh# we're in ".../tools/testing/selftests/nolibc" 41a1200b6SThomas Weißschuhifeq ($(srctree),) 51a1200b6SThomas Weißschuhsrctree := $(patsubst %/tools/testing/selftests/,%,$(dir $(CURDIR))) 61a1200b6SThomas Weißschuhendif 71a1200b6SThomas Weißschuh 81a1200b6SThomas Weißschuhinclude $(srctree)/tools/scripts/utilities.mak 91bd75aebSThomas Weißschuh# We need this for the "__cc-option" macro. 101bd75aebSThomas Weißschuhinclude $(srctree)/scripts/Makefile.compiler 11362aecb2SWilly Tarreau 1269620b3aSThomas Weißschuhifneq ($(O),) 1369620b3aSThomas Weißschuhifneq ($(call is-absolute,$(O)),y) 1469620b3aSThomas Weißschuh$(error Only absolute O= parameters are supported) 1569620b3aSThomas Weißschuhendif 16ae574ae3SThomas Weißschuhobjtree := $(O) 17ae574ae3SThomas Weißschuhelse 18ae574ae3SThomas Weißschuhobjtree ?= $(srctree) 1969620b3aSThomas Weißschuhendif 2069620b3aSThomas Weißschuh 21362aecb2SWilly Tarreauifeq ($(ARCH),) 22362aecb2SWilly Tarreauinclude $(srctree)/scripts/subarch.include 23362aecb2SWilly TarreauARCH = $(SUBARCH) 24362aecb2SWilly Tarreauendif 25362aecb2SWilly Tarreau 261bd75aebSThomas Weißschuhcc-option = $(call __cc-option, $(CC),$(CLANG_CROSS_FLAGS),$(1),$(2)) 271bd75aebSThomas Weißschuh 28c6c3734fSZhangjin Wu# XARCH extends the kernel's ARCH with a few variants of the same 29c6c3734fSZhangjin Wu# architecture that only differ by the configuration, the toolchain 30c6c3734fSZhangjin Wu# and the Qemu program used. It is copied as-is into ARCH except for 31c6c3734fSZhangjin Wu# a few specific values which are mapped like this: 32c6c3734fSZhangjin Wu# 33c6c3734fSZhangjin Wu# XARCH | ARCH | config 34c6c3734fSZhangjin Wu# -------------|-----------|------------------------- 35c6c3734fSZhangjin Wu# ppc | powerpc | 32 bits 36c6c3734fSZhangjin Wu# ppc64 | powerpc | 64 bits big endian 37c6c3734fSZhangjin Wu# ppc64le | powerpc | 64 bits little endian 38c6c3734fSZhangjin Wu# 39c6c3734fSZhangjin Wu# It is recommended to only use XARCH, though it does not harm if 40c6c3734fSZhangjin Wu# ARCH is already set. For simplicity, ARCH is sufficient for all 41c6c3734fSZhangjin Wu# architectures where both are equal. 42c6c3734fSZhangjin Wu 43c6c3734fSZhangjin Wu# configure default variants for target kernel supported architectures 44587e9845SZhangjin WuXARCH_powerpc = ppc 45c4c20a7dSThomas WeißschuhXARCH_mips = mips32le 46a47b4b9fSThomas WeißschuhXARCH_riscv = riscv64 47c6c3734fSZhangjin WuXARCH = $(or $(XARCH_$(ARCH)),$(ARCH)) 48c6c3734fSZhangjin Wu 49c6c3734fSZhangjin Wu# map from user input variants to their kernel supported architectures 50587e9845SZhangjin WuARCH_ppc = powerpc 51faeb4e09SZhangjin WuARCH_ppc64 = powerpc 528a5040cbSZhangjin WuARCH_ppc64le = powerpc 53c4c20a7dSThomas WeißschuhARCH_mips32le = mips 54b4b9fb91SThomas WeißschuhARCH_mips32be = mips 55*60fe1823SThomas WeißschuhARCH_riscv32 = riscv 56a47b4b9fSThomas WeißschuhARCH_riscv64 = riscv 57c6c3734fSZhangjin WuARCH := $(or $(ARCH_$(XARCH)),$(XARCH)) 58c6c3734fSZhangjin Wu 59d248cabfSWilly Tarreau# kernel image names by architecture 60d248cabfSWilly TarreauIMAGE_i386 = arch/x86/boot/bzImage 61f9b06695SWilly TarreauIMAGE_x86_64 = arch/x86/boot/bzImage 62d248cabfSWilly TarreauIMAGE_x86 = arch/x86/boot/bzImage 63d248cabfSWilly TarreauIMAGE_arm64 = arch/arm64/boot/Image 64d248cabfSWilly TarreauIMAGE_arm = arch/arm/boot/zImage 65c4c20a7dSThomas WeißschuhIMAGE_mips32le = vmlinuz 66b4b9fb91SThomas WeißschuhIMAGE_mips32be = vmlinuz 67587e9845SZhangjin WuIMAGE_ppc = vmlinux 68faeb4e09SZhangjin WuIMAGE_ppc64 = vmlinux 698a5040cbSZhangjin WuIMAGE_ppc64le = arch/powerpc/boot/zImage 70d248cabfSWilly TarreauIMAGE_riscv = arch/riscv/boot/Image 71*60fe1823SThomas WeißschuhIMAGE_riscv32 = arch/riscv/boot/Image 72a47b4b9fSThomas WeißschuhIMAGE_riscv64 = arch/riscv/boot/Image 730043e6f2SSven SchnelleIMAGE_s390 = arch/s390/boot/bzImage 746cd77defSFeiyang ChenIMAGE_loongarch = arch/loongarch/boot/vmlinuz.efi 7569620b3aSThomas WeißschuhIMAGE = $(objtree)/$(IMAGE_$(XARCH)) 76d248cabfSWilly TarreauIMAGE_NAME = $(notdir $(IMAGE)) 77d248cabfSWilly Tarreau 785c43fd79SWilly Tarreau# default kernel configurations that appear to be usable 795c43fd79SWilly TarreauDEFCONFIG_i386 = defconfig 80f9b06695SWilly TarreauDEFCONFIG_x86_64 = defconfig 815c43fd79SWilly TarreauDEFCONFIG_x86 = defconfig 825c43fd79SWilly TarreauDEFCONFIG_arm64 = defconfig 835c43fd79SWilly TarreauDEFCONFIG_arm = multi_v7_defconfig 84c4c20a7dSThomas WeißschuhDEFCONFIG_mips32le = malta_defconfig 85b4b9fb91SThomas WeißschuhDEFCONFIG_mips32be = malta_defconfig 86587e9845SZhangjin WuDEFCONFIG_ppc = pmac32_defconfig 87faeb4e09SZhangjin WuDEFCONFIG_ppc64 = powernv_be_defconfig 888a5040cbSZhangjin WuDEFCONFIG_ppc64le = powernv_defconfig 895c43fd79SWilly TarreauDEFCONFIG_riscv = defconfig 90*60fe1823SThomas WeißschuhDEFCONFIG_riscv32 = rv32_defconfig 91a47b4b9fSThomas WeißschuhDEFCONFIG_riscv64 = defconfig 920043e6f2SSven SchnelleDEFCONFIG_s390 = defconfig 936cd77defSFeiyang ChenDEFCONFIG_loongarch = defconfig 94c6c3734fSZhangjin WuDEFCONFIG = $(DEFCONFIG_$(XARCH)) 955c43fd79SWilly Tarreau 96b4b9fb91SThomas WeißschuhEXTRACONFIG_mips32be = -d CONFIG_CPU_LITTLE_ENDIAN -e CONFIG_CPU_BIG_ENDIAN 973ab1e9dbSThomas WeißschuhEXTRACONFIG = $(EXTRACONFIG_$(XARCH)) 983ab1e9dbSThomas Weißschuh 99662ea60eSWilly Tarreau# optional tests to run (default = all) 100662ea60eSWilly TarreauTEST = 101662ea60eSWilly Tarreau 102662ea60eSWilly Tarreau# QEMU_ARCH: arch names used by qemu 103662ea60eSWilly TarreauQEMU_ARCH_i386 = i386 104f9b06695SWilly TarreauQEMU_ARCH_x86_64 = x86_64 105662ea60eSWilly TarreauQEMU_ARCH_x86 = x86_64 106662ea60eSWilly TarreauQEMU_ARCH_arm64 = aarch64 107662ea60eSWilly TarreauQEMU_ARCH_arm = arm 108c4c20a7dSThomas WeißschuhQEMU_ARCH_mips32le = mipsel # works with malta_defconfig 109b4b9fb91SThomas WeißschuhQEMU_ARCH_mips32be = mips 110587e9845SZhangjin WuQEMU_ARCH_ppc = ppc 111faeb4e09SZhangjin WuQEMU_ARCH_ppc64 = ppc64 11217362f3dSThomas WeißschuhQEMU_ARCH_ppc64le = ppc64 113662ea60eSWilly TarreauQEMU_ARCH_riscv = riscv64 114*60fe1823SThomas WeißschuhQEMU_ARCH_riscv32 = riscv32 115a47b4b9fSThomas WeißschuhQEMU_ARCH_riscv64 = riscv64 1160043e6f2SSven SchnelleQEMU_ARCH_s390 = s390x 1176cd77defSFeiyang ChenQEMU_ARCH_loongarch = loongarch64 118c6c3734fSZhangjin WuQEMU_ARCH = $(QEMU_ARCH_$(XARCH)) 119662ea60eSWilly Tarreau 120d7233e2bSThomas WeißschuhQEMU_ARCH_USER_ppc64le = ppc64le 121d7233e2bSThomas WeißschuhQEMU_ARCH_USER = $(or $(QEMU_ARCH_USER_$(XARCH)),$(QEMU_ARCH_$(XARCH))) 122d7233e2bSThomas Weißschuh 123bdeeeabaSThomas WeißschuhQEMU_BIOS_DIR = /usr/share/edk2/ 124bdeeeabaSThomas WeißschuhQEMU_BIOS_loongarch = $(QEMU_BIOS_DIR)/loongarch64/OVMF_CODE.fd 125bdeeeabaSThomas Weißschuh 126bdeeeabaSThomas Weißschuhifneq ($(QEMU_BIOS_$(XARCH)),) 127bdeeeabaSThomas WeißschuhQEMU_ARGS_BIOS = -bios $(QEMU_BIOS_$(XARCH)) 128bdeeeabaSThomas Weißschuhendif 129bdeeeabaSThomas Weißschuh 130662ea60eSWilly Tarreau# QEMU_ARGS : some arch-specific args to pass to qemu 131662ea60eSWilly TarreauQEMU_ARGS_i386 = -M pc -append "console=ttyS0,9600 i8042.noaux panic=-1 $(TEST:%=NOLIBC_TEST=%)" 132f9b06695SWilly TarreauQEMU_ARGS_x86_64 = -M pc -append "console=ttyS0,9600 i8042.noaux panic=-1 $(TEST:%=NOLIBC_TEST=%)" 133662ea60eSWilly TarreauQEMU_ARGS_x86 = -M pc -append "console=ttyS0,9600 i8042.noaux panic=-1 $(TEST:%=NOLIBC_TEST=%)" 134662ea60eSWilly TarreauQEMU_ARGS_arm64 = -M virt -cpu cortex-a53 -append "panic=-1 $(TEST:%=NOLIBC_TEST=%)" 135662ea60eSWilly TarreauQEMU_ARGS_arm = -M virt -append "panic=-1 $(TEST:%=NOLIBC_TEST=%)" 136c4c20a7dSThomas WeißschuhQEMU_ARGS_mips32le = -M malta -append "panic=-1 $(TEST:%=NOLIBC_TEST=%)" 137b4b9fb91SThomas WeißschuhQEMU_ARGS_mips32be = -M malta -append "panic=-1 $(TEST:%=NOLIBC_TEST=%)" 138587e9845SZhangjin WuQEMU_ARGS_ppc = -M g3beige -append "console=ttyS0 panic=-1 $(TEST:%=NOLIBC_TEST=%)" 139faeb4e09SZhangjin WuQEMU_ARGS_ppc64 = -M powernv -append "console=hvc0 panic=-1 $(TEST:%=NOLIBC_TEST=%)" 1408a5040cbSZhangjin WuQEMU_ARGS_ppc64le = -M powernv -append "console=hvc0 panic=-1 $(TEST:%=NOLIBC_TEST=%)" 141662ea60eSWilly TarreauQEMU_ARGS_riscv = -M virt -append "console=ttyS0 panic=-1 $(TEST:%=NOLIBC_TEST=%)" 142*60fe1823SThomas WeißschuhQEMU_ARGS_riscv32 = -M virt -append "console=ttyS0 panic=-1 $(TEST:%=NOLIBC_TEST=%)" 143a47b4b9fSThomas WeißschuhQEMU_ARGS_riscv64 = -M virt -append "console=ttyS0 panic=-1 $(TEST:%=NOLIBC_TEST=%)" 144ad0558f3SThomas WeißschuhQEMU_ARGS_s390 = -M s390-ccw-virtio -append "console=ttyS0 panic=-1 $(TEST:%=NOLIBC_TEST=%)" 1456cd77defSFeiyang ChenQEMU_ARGS_loongarch = -M virt -append "console=ttyS0,115200 panic=-1 $(TEST:%=NOLIBC_TEST=%)" 146ad0558f3SThomas WeißschuhQEMU_ARGS = -m 1G $(QEMU_ARGS_$(XARCH)) $(QEMU_ARGS_BIOS) $(QEMU_ARGS_EXTRA) 147662ea60eSWilly Tarreau 148362aecb2SWilly Tarreau# OUTPUT is only set when run from the main makefile, otherwise 149362aecb2SWilly Tarreau# it defaults to this nolibc directory. 150362aecb2SWilly TarreauOUTPUT ?= $(CURDIR)/ 151362aecb2SWilly Tarreau 152362aecb2SWilly Tarreauifeq ($(V),1) 153362aecb2SWilly TarreauQ= 154362aecb2SWilly Tarreauelse 155362aecb2SWilly TarreauQ=@ 156362aecb2SWilly Tarreauendif 157362aecb2SWilly Tarreau 15895315486SThomas WeißschuhCFLAGS_i386 = $(call cc-option,-m32) 159587e9845SZhangjin WuCFLAGS_ppc = -m32 -mbig-endian -mno-vsx $(call cc-option,-mmultiple) 160faeb4e09SZhangjin WuCFLAGS_ppc64 = -m64 -mbig-endian -mno-vsx $(call cc-option,-mmultiple) 1618a5040cbSZhangjin WuCFLAGS_ppc64le = -m64 -mlittle-endian -mno-vsx $(call cc-option,-mabi=elfv2) 1620043e6f2SSven SchnelleCFLAGS_s390 = -m64 16354410245SThomas WeißschuhCFLAGS_mips32le = -EL -mabi=32 -fPIC 164b4b9fb91SThomas WeißschuhCFLAGS_mips32be = -EB -mabi=32 1650093c2daSThomas WeißschuhCFLAGS_STACKPROTECTOR ?= $(call cc-option,-mstack-protector-guard=global $(call cc-option,-fstack-protector-all)) 16645f65f8dSThomas WeißschuhCFLAGS ?= -Os -fno-ident -fno-asynchronous-unwind-tables -std=c89 -W -Wall -Wextra \ 167255ffeeeSThomas Weißschuh $(call cc-option,-fno-stack-protector) \ 168774e6ef2SThomas Weißschuh $(CFLAGS_$(XARCH)) $(CFLAGS_STACKPROTECTOR) $(CFLAGS_EXTRA) 169711edef8SThomas WeißschuhLDFLAGS := 170362aecb2SWilly Tarreau 171801cf69cSThomas WeißschuhLIBGCC := -lgcc 172801cf69cSThomas Weißschuh 173801cf69cSThomas Weißschuhifneq ($(LLVM),) 174801cf69cSThomas Weißschuh# Not needed for clang 175801cf69cSThomas WeißschuhLIBGCC := 176801cf69cSThomas Weißschuhendif 177801cf69cSThomas Weißschuh 178ae574ae3SThomas Weißschuh# Modify CFLAGS based on LLVM= 179ae574ae3SThomas Weißschuhinclude $(srctree)/tools/scripts/Makefile.include 180ae574ae3SThomas Weißschuh 1818404af7eSThomas Weißschuh# GCC uses "s390", clang "systemz" 1828404af7eSThomas WeißschuhCLANG_CROSS_FLAGS := $(subst --target=s390-linux,--target=systemz-linux,$(CLANG_CROSS_FLAGS)) 1838404af7eSThomas Weißschuh 1844beb9be8SZhangjin WuREPORT ?= awk '/\[OK\][\r]*$$/{p++} /\[FAIL\][\r]*$$/{if (!f) printf("\n"); f++; print;} /\[SKIPPED\][\r]*$$/{s++} \ 1857d92e893SZhangjin Wu END{ printf("\n%3d test(s): %3d passed, %3d skipped, %3d failed => status: ", p+s+f, p, s, f); \ 186ddae1d7fSThomas Weißschuh if (f || !p) printf("failure\n"); else if (s) printf("warning\n"); else printf("success\n");; \ 1877d92e893SZhangjin Wu printf("\nSee all results in %s\n", ARGV[1]); }' 1885ef95663SZhangjin Wu 189ffc297feSWilly Tarreauhelp: 190ffc297feSWilly Tarreau @echo "Supported targets under selftests/nolibc:" 191ffc297feSWilly Tarreau @echo " all call the \"run\" target below" 192ffc297feSWilly Tarreau @echo " help this help" 193ffc297feSWilly Tarreau @echo " sysroot create the nolibc sysroot here (uses \$$ARCH)" 194ffc297feSWilly Tarreau @echo " nolibc-test build the executable (uses \$$CC and \$$CROSS_COMPILE)" 195fc82d7dbSThomas Weißschuh @echo " libc-test build an executable using the compiler's default libc instead" 196c6c3734fSZhangjin Wu @echo " run-user runs the executable under QEMU (uses \$$XARCH, \$$TEST)" 19745839d09SThomas Weißschuh @echo " initramfs.cpio prepare the initramfs archive with nolibc-test" 19845839d09SThomas Weißschuh @echo " initramfs prepare the initramfs tree with nolibc-test" 199c6c3734fSZhangjin Wu @echo " defconfig create a fresh new default config (uses \$$XARCH)" 20045839d09SThomas Weißschuh @echo " kernel (re)build the kernel (uses \$$XARCH)" 20145839d09SThomas Weißschuh @echo " kernel-standalone (re)build the kernel with the initramfs (uses \$$XARCH)" 202c6c3734fSZhangjin Wu @echo " run runs the kernel in QEMU after building it (uses \$$XARCH, \$$TEST)" 203c6c3734fSZhangjin Wu @echo " rerun runs a previously prebuilt kernel in QEMU (uses \$$XARCH, \$$TEST)" 204ffc297feSWilly Tarreau @echo " clean clean the sysroot, initramfs, build and output files" 205ffc297feSWilly Tarreau @echo "" 206ffc297feSWilly Tarreau @echo "The output file is \"run.out\". Test ranges may be passed using \$$TEST." 207ffc297feSWilly Tarreau @echo "" 208ffc297feSWilly Tarreau @echo "Currently using the following variables:" 209ffc297feSWilly Tarreau @echo " ARCH = $(ARCH)" 210c6c3734fSZhangjin Wu @echo " XARCH = $(XARCH)" 211ffc297feSWilly Tarreau @echo " CROSS_COMPILE = $(CROSS_COMPILE)" 212ffc297feSWilly Tarreau @echo " CC = $(CC)" 213ffc297feSWilly Tarreau @echo " OUTPUT = $(OUTPUT)" 214ffc297feSWilly Tarreau @echo " TEST = $(TEST)" 215c6c3734fSZhangjin Wu @echo " QEMU_ARCH = $(if $(QEMU_ARCH),$(QEMU_ARCH),UNKNOWN_ARCH) [determined from \$$XARCH]" 216c6c3734fSZhangjin Wu @echo " IMAGE_NAME = $(if $(IMAGE_NAME),$(IMAGE_NAME),UNKNOWN_ARCH) [determined from \$$XARCH]" 217ffc297feSWilly Tarreau @echo "" 218ffc297feSWilly Tarreau 219ffc297feSWilly Tarreauall: run 220362aecb2SWilly Tarreau 221b25c5284SWilly Tarreausysroot: sysroot/$(ARCH)/include 222b25c5284SWilly Tarreau 223b25c5284SWilly Tarreausysroot/$(ARCH)/include: 2244a95be7eSWilly Tarreau $(Q)rm -rf sysroot/$(ARCH) sysroot/sysroot 225b25c5284SWilly Tarreau $(QUIET_MKDIR)mkdir -p sysroot 22669620b3aSThomas Weißschuh $(Q)$(MAKE) -C $(srctree) outputmakefile 2277263c9d9SThomas Weißschuh $(Q)$(MAKE) -C $(srctree)/tools/include/nolibc ARCH=$(ARCH) OUTPUT=$(CURDIR)/sysroot/ headers_standalone 228b25c5284SWilly Tarreau $(Q)mv sysroot/sysroot sysroot/$(ARCH) 229b25c5284SWilly Tarreau 230850fad7dSZhangjin Wuifneq ($(NOLIBC_SYSROOT),0) 231b8c60e8fSThomas Weißschuhnolibc-test: nolibc-test.c nolibc-test-linkage.c sysroot/$(ARCH)/include 232362aecb2SWilly Tarreau $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ \ 233801cf69cSThomas Weißschuh -nostdlib -nostdinc -static -Isysroot/$(ARCH)/include nolibc-test.c nolibc-test-linkage.c $(LIBGCC) 234850fad7dSZhangjin Wuelse 235b8c60e8fSThomas Weißschuhnolibc-test: nolibc-test.c nolibc-test-linkage.c 236850fad7dSZhangjin Wu $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ \ 237801cf69cSThomas Weißschuh -nostdlib -static -include $(srctree)/tools/include/nolibc/nolibc.h nolibc-test.c nolibc-test-linkage.c $(LIBGCC) 238850fad7dSZhangjin Wuendif 239362aecb2SWilly Tarreau 240b8c60e8fSThomas Weißschuhlibc-test: nolibc-test.c nolibc-test-linkage.c 241b8c60e8fSThomas Weißschuh $(QUIET_CC)$(HOSTCC) -o $@ nolibc-test.c nolibc-test-linkage.c 242fc82d7dbSThomas Weißschuh 243b8143407SZhangjin Wu# local libc-test 244cfb672f9SZhangjin Wurun-libc-test: libc-test 245cfb672f9SZhangjin Wu $(Q)./libc-test > "$(CURDIR)/run.out" || : 246cfb672f9SZhangjin Wu $(Q)$(REPORT) $(CURDIR)/run.out 247cfb672f9SZhangjin Wu 248b8143407SZhangjin Wu# local nolibc-test 249b8143407SZhangjin Wurun-nolibc-test: nolibc-test 250b8143407SZhangjin Wu $(Q)./nolibc-test > "$(CURDIR)/run.out" || : 251b8143407SZhangjin Wu $(Q)$(REPORT) $(CURDIR)/run.out 252b8143407SZhangjin Wu 253c54ba417SWilly Tarreau# qemu user-land test 254c54ba417SWilly Tarreaurun-user: nolibc-test 255d7233e2bSThomas Weißschuh $(Q)qemu-$(QEMU_ARCH_USER) ./nolibc-test > "$(CURDIR)/run.out" || : 2565ef95663SZhangjin Wu $(Q)$(REPORT) $(CURDIR)/run.out 257c54ba417SWilly Tarreau 25845839d09SThomas Weißschuhinitramfs.cpio: kernel nolibc-test 25969620b3aSThomas Weißschuh $(QUIET_GEN)echo 'file /init nolibc-test 755 0 0' | $(objtree)/usr/gen_init_cpio - > initramfs.cpio 26045839d09SThomas Weißschuh 261362aecb2SWilly Tarreauinitramfs: nolibc-test 262362aecb2SWilly Tarreau $(QUIET_MKDIR)mkdir -p initramfs 263362aecb2SWilly Tarreau $(call QUIET_INSTALL, initramfs/init) 264362aecb2SWilly Tarreau $(Q)cp nolibc-test initramfs/init 265362aecb2SWilly Tarreau 2665c43fd79SWilly Tarreaudefconfig: 2675c43fd79SWilly Tarreau $(Q)$(MAKE) -C $(srctree) ARCH=$(ARCH) CC=$(CC) CROSS_COMPILE=$(CROSS_COMPILE) mrproper $(DEFCONFIG) prepare 2683ab1e9dbSThomas Weißschuh $(Q)if [ -n "$(EXTRACONFIG)" ]; then \ 2693ab1e9dbSThomas Weißschuh $(srctree)/scripts/config --file $(objtree)/.config $(EXTRACONFIG); \ 2703ab1e9dbSThomas Weißschuh $(MAKE) -C $(srctree) ARCH=$(ARCH) CC=$(CC) CROSS_COMPILE=$(CROSS_COMPILE) olddefconfig < /dev/null; \ 2713ab1e9dbSThomas Weißschuh fi 2725c43fd79SWilly Tarreau 27345839d09SThomas Weißschuhkernel: 27489b212d4SThomas Weißschuh $(Q)$(MAKE) -C $(srctree) ARCH=$(ARCH) CC=$(CC) CROSS_COMPILE=$(CROSS_COMPILE) $(IMAGE_NAME) < /dev/null 27545839d09SThomas Weißschuh 27645839d09SThomas Weißschuhkernel-standalone: initramfs 27789b212d4SThomas Weißschuh $(Q)$(MAKE) -C $(srctree) ARCH=$(ARCH) CC=$(CC) CROSS_COMPILE=$(CROSS_COMPILE) $(IMAGE_NAME) CONFIG_INITRAMFS_SOURCE=$(CURDIR)/initramfs < /dev/null 278d248cabfSWilly Tarreau 279662ea60eSWilly Tarreau# run the tests after building the kernel 28045839d09SThomas Weißschuhrun: kernel initramfs.cpio 28169620b3aSThomas Weißschuh $(Q)qemu-system-$(QEMU_ARCH) -display none -no-reboot -kernel "$(IMAGE)" -initrd initramfs.cpio -serial stdio $(QEMU_ARGS) > "$(CURDIR)/run.out" 2825ef95663SZhangjin Wu $(Q)$(REPORT) $(CURDIR)/run.out 283662ea60eSWilly Tarreau 284662ea60eSWilly Tarreau# re-run the tests from an existing kernel 285662ea60eSWilly Tarreaurerun: 28669620b3aSThomas Weißschuh $(Q)qemu-system-$(QEMU_ARCH) -display none -no-reboot -kernel "$(IMAGE)" -initrd initramfs.cpio -serial stdio $(QEMU_ARGS) > "$(CURDIR)/run.out" 2875ef95663SZhangjin Wu $(Q)$(REPORT) $(CURDIR)/run.out 288662ea60eSWilly Tarreau 289ce1bb82bSZhangjin Wu# report with existing test log 290ce1bb82bSZhangjin Wureport: 291ce1bb82bSZhangjin Wu $(Q)$(REPORT) $(CURDIR)/run.out 292ce1bb82bSZhangjin Wu 293362aecb2SWilly Tarreauclean: 294b25c5284SWilly Tarreau $(call QUIET_CLEAN, sysroot) 295b25c5284SWilly Tarreau $(Q)rm -rf sysroot 296362aecb2SWilly Tarreau $(call QUIET_CLEAN, nolibc-test) 297362aecb2SWilly Tarreau $(Q)rm -f nolibc-test 298fc82d7dbSThomas Weißschuh $(call QUIET_CLEAN, libc-test) 299fc82d7dbSThomas Weißschuh $(Q)rm -f libc-test 30045839d09SThomas Weißschuh $(call QUIET_CLEAN, initramfs.cpio) 30145839d09SThomas Weißschuh $(Q)rm -rf initramfs.cpio 302362aecb2SWilly Tarreau $(call QUIET_CLEAN, initramfs) 303362aecb2SWilly Tarreau $(Q)rm -rf initramfs 304662ea60eSWilly Tarreau $(call QUIET_CLEAN, run.out) 305662ea60eSWilly Tarreau $(Q)rm -rf run.out 3064a95be7eSWilly Tarreau 3074a95be7eSWilly Tarreau.PHONY: sysroot/$(ARCH)/include 308