mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-10 19:12:33 +08:00
43 lines
762 B
Makefile
43 lines
762 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/$(PKG_NAME)
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Synology DSM pxeboot from TFTP
|
|
DEPENDS:=
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/description
|
|
DSM 5.2 boot from TFTP
|
|
endef
|
|
|
|
define Build/Prepare
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
$(INSTALL_DIR) $(1)/root
|
|
$(INSTALL_DATA) ./files/* $(1)/root/
|
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
|
$(INSTALL_BIN) ./files/dsmboot $(1)/etc/uci-defaults/yyy-dsmboot
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|