Changeset c361faa in freewrt
- Timestamp:
- Sep 16, 2006, 8:29:29 PM (19 years ago)
- Branches:
- freewrt_1_0, freewrt_2_0
- Children:
- 0608e75
- Parents:
- 41129e4
- Location:
- package/busybox
- Files:
-
- 1 added
- 1 edited
- 1 moved
-
Makefile (modified) (2 diffs)
-
files/crond.init (moved) (moved from package/base-files/default/etc/init.d/S60cron ) (2 diffs)
-
ipkg/busybox.postinst (added)
Legend:
- Unmodified
- Added
- Removed
-
package/busybox/Makefile
r41129e4 rc361faa 8 8 9 9 PKG_NAME:= busybox 10 PKG_RELEASE:= 210 PKG_RELEASE:= 3 11 11 PKG_VERSION:= 1.1.3 12 12 PKG_MD5SUM:= 19a0b475169335f17e421cf644616fe7 13 PKG_INIT:= 60 13 14 14 15 PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2 … … 32 33 $(MAKE) CC=$(TARGET_CC) CROSS="$(TARGET_CROSS)" PREFIX="$(IDIR_BUSYBOX)" \ 33 34 EXTRA_CFLAGS="$(TARGET_CFLAGS)" -C $(WRKBUILD) install 35 $(INSTALL_DIR) $(IDIR_BUSYBOX)/etc/init.d/ 36 $(INSTALL_BIN) ./files/crond.init \ 37 $(IDIR_BUSYBOX)/etc/init.d/S$(PKG_INIT)crond 34 38 $(RSTRIP) $(IDIR_BUSYBOX) 35 39 $(IPKG_BUILD) $(IDIR_BUSYBOX) $(PACKAGE_DIR) -
package/busybox/files/crond.init
r41129e4 rc361faa 1 1 #!/bin/sh 2 3 . /etc/rc.conf 4 2 5 case $1 in 3 autostart|start) 6 autostart) 7 test x"$crond" = x"NO" && exit 0 8 exec $0 start 9 ;; 10 start) 4 11 mkdir -p /var/spool/cron 5 12 ln -s /etc/crontabs /var/spool/cron/crontabs … … 17 24 ;; 18 25 esac 19 exit 026 exit $?
Note:
See TracChangeset
for help on using the changeset viewer.
