summaryrefslogtreecommitdiff
blob: c2a90aceff0b34cb5a7cff4f1e2bf7752a4958a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/sbin/runscript
# Copyright 2005 Robin H. Johnson <robbat2@orbis-terrarum.net>
# Distributed under the terms of the GNU General Public License v2
# $Id$

depend() {
	after localmount
	# this should start as early as possible
	# we can't do 'before *' as that breaks it
	before clock bootmisc consolefont keymaps rmnologin serial urandom
}

start() {
	# force reading
	source /etc/conf.d/readahead-list

	f="${READAHEAD_LIST_call_main}"
	ebegin "readahead(2): ${f}"
	/sbin/readahead-list ${f}
	eend $?
}

# vim: ts=4 sw=4