staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / tools / testing / selftests / kexec / Makefile
blobaa91d2063249e6c8467f69bb139c46329648d424
1 # SPDX-License-Identifier: GPL-2.0-only
2 # Makefile for kexec tests
4 uname_M := $(shell uname -m 2>/dev/null || echo not)
5 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
7 ifeq ($(ARCH),x86)
8 TEST_PROGS := test_kexec_load.sh test_kexec_file_load.sh
9 TEST_FILES := kexec_common_lib.sh
11 include ../lib.mk
13 endif