mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-19 00:03:45 +02:00
util/e6400-flash-unlock: Rename to dell-flash-unlock
This more accurately describes the scope of the utility. Signed-off-by: Nicholas Chin <nic.c3.14@gmail.com>
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
# SPDX-License-Identifier: MIT
|
||||
# SPDX-FileCopyrightText: 2023 Nicholas Chin
|
||||
|
||||
CC=cc
|
||||
CFLAGS=-Wall -Wextra -Werror -O2 -pedantic
|
||||
ifeq ($(shell uname), OpenBSD)
|
||||
CFLAGS += -l$(shell uname -p)
|
||||
endif
|
||||
SRCS=dell_flash_unlock.c accessors.c
|
||||
|
||||
all: $(SRCS) accessors.h
|
||||
$(CC) $(CFLAGS) $(SRCS) -o dell_flash_unlock
|
||||
|
||||
clean:
|
||||
rm -f dell_flash_unlock
|
||||
Reference in New Issue
Block a user