Support Arch

Arch uses /proc/kallsyms and /proc/config.gz by default instead of /boot/System.map* and /boot/config*
This commit is contained in:
mettacrawler
2018-04-29 13:07:08 -04:00
committed by Guenter Roeck
parent 948ad8d145
commit 3436b28078

View File

@@ -20,7 +20,12 @@ endif
endif
#SYSTEM_MAP := $(KERNEL_BUILD)/System.map
ifneq ("","$(wildcard /boot/System.map-$(TARGET))")
SYSTEM_MAP := /boot/System.map-$(TARGET)
else
# Arch
SYSTEM_MAP := /proc/kallsyms
endif
DRIVER := it87
ifneq ("","$(wildcard .git/*)")