You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
611 B
21 lines
611 B
![]()
12 years ago
|
#!/bin/sh
|
||
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
|
||
|
# ex: ts=8 sw=4 sts=4 et filetype=sh
|
||
|
export DRACUT_SYSTEMD=1
|
||
|
if [ -f /dracut-state.sh ]; then
|
||
|
. /dracut-state.sh 2>/dev/null
|
||
|
fi
|
||
|
type getarg >/dev/null 2>&1 || . /lib/dracut-lib.sh
|
||
|
|
||
|
source_conf /etc/conf.d
|
||
|
|
||
|
make_trace_mem "hook pre-mount" '1:shortmem' '2+:mem' '3+:slab'
|
||
|
# pre pivot scripts are sourced just before we doing cleanup and switch over
|
||
|
# to the new root.
|
||
|
getarg 'rd.break=pre-mount' 'rdbreak=pre-mount' && emergency_shell -n pre-mount "Break pre-mount"
|
||
|
source_hook pre-mount
|
||
|
|
||
|
export -p > /dracut-state.sh
|
||
|
|
||
|
exit 0
|