immortalwrt/package/lean/dsmboot/Makefile
CN_SZTL 28c808e4af
Package Lean: Cleanup Makefile
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
2021-01-30 19:06:57 +08:00

40 lines
753 B
Makefile

#
# Copyright (C) 2015-2016 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v3.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=dsmboot
PKG_VERSION:=5.2
PKG_RELEASE:=5967.1
include $(INCLUDE_DIR)/package.mk
define Package/dsmboot
SECTION:=net
CATEGORY:=Network
TITLE:=Synology DSM pxeboot from TFTP
endef
define Package/dsmboot/description
DSM 5.2 boot from TFTP
endef
define Build/Compile
true
endef
define Package/dsmboot/install
$(INSTALL_DIR) $(1)/root
$(CP) ./files/dsm.iso $(1)/root/
$(CP) ./files/menu.lst $(1)/root/
$(CP) ./files/pxelinux.0 $(1)/root/
$(INSTALL_DIR) $(1)/etc/uci-defaults
$(INSTALL_BIN) ./files/dsmboot $(1)/etc/uci-defaults/yyy-dsmboot
endef
$(eval $(call BuildPackage,dsmboot))