OpenWrt – Blame information for rev 4
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 1 | # |
2 | # Copyright (C) 2011 OpenWrt.org |
||
3 | # |
||
4 | # This is free software, licensed under the GNU General Public License v2. |
||
5 | # See /LICENSE for more information. |
||
6 | # |
||
7 | |||
8 | include $(TOPDIR)/rules.mk |
||
9 | |||
10 | PKG_NAME:=om-watchdog |
||
11 | PKG_RELEASE:=2 |
||
12 | PKG_VERSION:=1 |
||
13 | |||
14 | include $(INCLUDE_DIR)/package.mk |
||
15 | |||
16 | define Package/om-watchdog |
||
17 | SECTION:=base |
||
18 | CATEGORY:=Base system |
||
19 | TITLE:=om watchdog |
||
20 | URL:=http://openwrt.org/ |
||
21 | endef |
||
22 | |||
23 | define Package/om-watchdog/description |
||
24 | This package contains the hw watchdog script for the OM1P and OM2P device. |
||
25 | endef |
||
26 | |||
27 | define Build/Compile |
||
28 | endef |
||
29 | |||
30 | define Package/om-watchdog/install |
||
31 | $(INSTALL_DIR) $(1)/etc/init.d/ |
||
32 | $(INSTALL_DIR) $(1)/sbin/ |
||
33 | $(INSTALL_BIN) ./files/om-watchdog.init $(1)/etc/init.d/om-watchdog |
||
34 | $(INSTALL_BIN) ./files/om-watchdog $(1)/sbin/om-watchdog |
||
35 | endef |
||
36 | |||
37 | $(eval $(call BuildPackage,om-watchdog)) |