mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
1c6fd8c1ee
SafeLoader is image format used by some TP-LINK devices. This tool allows extracting selected partitions out of it. It can be used for sysupgrade. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
8 lines
110 B
Makefile
8 lines
110 B
Makefile
all: osafeloader
|
|
|
|
osafeloader:
|
|
$(CC) $(CFLAGS) -Wall osafeloader.c md5.c -o $@ $^
|
|
|
|
clean:
|
|
rm -f osafeloader
|