summaryrefslogtreecommitdiffstats
path: root/package/utils/zyxel-bootconfig-ipq807x/Makefile
blob: b624a13b09b106c173dea47209b5a4806b5872ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# Copyright (c) 2025 Pascal Beleiu <pascal@beleiu.de>
# Copyright (c) 2025 Eric Schäfer <eric@es86.de>
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=zyxel-bootconfig-ipq807x
PKG_RELEASE:=1
PKG_FLAGS:=nonshared

include $(INCLUDE_DIR)/package.mk

define Package/zyxel-bootconfig-ipq807x
	SECTION:=utils
	CATEGORY:=Base system
	TITLE:=Utility for handling Zyxel bootconfig settings on ipq807x devices
	MAINTAINER:=Pascal Beleiu <pascal@beleiu.de>
	DEPENDS:=@TARGET_qualcommax_ipq807x
endef

define Package/zyxel-bootconfig-ipq807x/description
	This package contains an utility for handling Zyxel bootconfig settings on ipq807x devices.
endef

define Build/Prepare
endef

define Build/Configure
endef

define Build/Compile
endef

define Package/zyxel-bootconfig-ipq807x/install
	$(INSTALL_DIR) $(1)/usr/bin $(1)/lib/preinit
	$(INSTALL_BIN) ./files/zyxel-bootconfig-ipq807x $(1)/usr/bin/
	$(CP) ./files/95_apply_bootconfig $(1)/lib/preinit/95_apply_bootconfig
endef

$(eval $(call BuildPackage,zyxel-bootconfig-ipq807x))