diff options
author | Michael Pratt <mcpratt@pm.me> | 2022-09-05 16:30:00 -0400 |
---|---|---|
committer | Michael Pratt <mcpratt@pm.me> | 2022-09-22 16:48:37 -0400 |
commit | 524f52a471495d2c4e764539e000cb699610de1f (patch) | |
tree | 568c8a09b813d0ad32a6b4dbc21d5128422f58b2 /package/firmware/prism54-firmware/Makefile | |
parent | b99fe7d050572aa8a2c9a1a7f5088acd2def71f9 (diff) | |
download | upstream-524f52a471495d2c4e764539e000cb699610de1f.tar.gz upstream-524f52a471495d2c4e764539e000cb699610de1f.tar.bz2 upstream-524f52a471495d2c4e764539e000cb699610de1f.zip |
prism54-firmware: set DL_DIR to package specific subdirectory
This package downloads raw files
which have names that are not corresponding to
the name and version of the package
as it is defined in the Makefile.
Use the option DL_SUBDIR to set the DL_DIR
to be a subdirectory named with
PKG_NAME and PKG_RELEASE
to better organize the downloads.
Signed-off-by: Michael Pratt <mcpratt@pm.me>
Diffstat (limited to 'package/firmware/prism54-firmware/Makefile')
-rw-r--r-- | package/firmware/prism54-firmware/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/firmware/prism54-firmware/Makefile b/package/firmware/prism54-firmware/Makefile index b74cb682fc..9a0bbba3cd 100644 --- a/package/firmware/prism54-firmware/Makefile +++ b/package/firmware/prism54-firmware/Makefile @@ -8,6 +8,8 @@ include $(TOPDIR)/rules.mk PKG_NAME:=prism54-firmware PKG_RELEASE:=1 +DL_SUBDIR:=$(PKG_NAME)-$(PKG_RELEASE) + # P54 SoftMAC firmware (jbnore.free.fr seems to be rather slow, so we use daemonizer.de) PRG_URL:=https://daemonizer.de/prism54/prism54-fw/ |