mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 21:51:40 +00:00
9d64fc08f6
This application uses the character device /dev/wmi/dell-smbios to perform SMBIOS communications from userspace. It offers demonstrations of a few simple tasks: - Running a class/select command - Querying a token value - Activating a token Signed-off-by: Mario Limonciello <mario.limonciello@dell.com> Reviewed-by: Edward O'Callaghan <quasisec@google.com> Signed-off-by: Darren Hart (VMware) <dvhart@infradead.org>
19 lines
364 B
Makefile
19 lines
364 B
Makefile
PREFIX ?= /usr
|
|
SBINDIR ?= sbin
|
|
INSTALL ?= install
|
|
CFLAGS += -D__EXPORTED_HEADERS__ -I../../include/uapi -I../../include
|
|
CC = $(CROSS_COMPILE)gcc
|
|
|
|
TARGET = dell-smbios-example
|
|
|
|
all: $(TARGET)
|
|
|
|
%: %.c
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
clean:
|
|
$(RM) $(TARGET)
|
|
|
|
install: dell-smbios-example
|
|
$(INSTALL) -D -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/$(SBINDIR)/$(TARGET)
|