]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/reboot/nextboot.sh
MFV r316083,316094:
[FreeBSD/FreeBSD.git] / sbin / reboot / nextboot.sh
1 #! /bin/sh
2 #
3 # Copyright (c) 2002 Gordon Tetlow. All rights reserved.
4 # Copyright (c) 2012 Sandvine Incorporated. All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 #    notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 #    notice, this list of conditions and the following disclaimer in the
13 #    documentation and/or other materials provided with the distribution.
14 #
15 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 # SUCH DAMAGE.
26 #
27 # $FreeBSD$
28
29 append="NO"
30 delete="NO"
31 kenv=
32 force="NO"
33 nextboot_file="/boot/nextboot.conf"
34
35 add_kenv()
36 {
37         local var value
38
39         var=$1
40         # strip literal quotes if passed in
41         value=${2%\"*}
42         value=${value#*\"}
43
44         if [ -n "${kenv}" ]; then
45                 kenv="${kenv}
46 "
47         fi
48         kenv="${kenv}${var}=\"${value}\""
49 }
50
51 display_usage() {
52         cat <<-EOF
53         Usage: nextboot [-af] [-e variable=value] [-k kernel] [-o options]
54                nextboot -D
55         EOF
56 }
57
58 while getopts "aDe:fk:o:" argument ; do
59         case "${argument}" in
60         a)
61                 append="YES"
62                 ;;
63         D)
64                 delete="YES"
65                 ;;
66         e)
67                 var=${OPTARG%%=*}
68                 value=${OPTARG#*=}
69                 if [ -z "$var" -o -z "$value" ]; then
70                         display_usage
71                         exit 1
72                 fi
73                 add_kenv "$var" "$value"
74                 ;;
75         f)
76                 force="YES"
77                 ;;
78         k)
79                 kernel="${OPTARG}"
80                 add_kenv kernel "$kernel"
81                 ;;
82         o)
83                 add_kenv kernel_options "${OPTARG}"
84                 ;;
85         *)
86                 display_usage
87                 exit 1
88                 ;;
89         esac
90 done
91
92 if [ ${delete} = "YES" ]; then
93         rm -f ${nextboot_file}
94         exit 0
95 fi
96
97 if [ -z "${kenv}" ]; then
98         display_usage
99         exit 1
100 fi
101
102 if [ -n "${kernel}" -a ${force} = "NO" -a ! -d /boot/${kernel} ]; then
103         echo "Error: /boot/${kernel} doesn't exist. Use -f to override."
104         exit 1
105 fi
106
107 df -Tn "/boot/" 2>/dev/null | while read _fs _type _other ; do
108         [ "zfs" = "${_type}" ] || continue
109         cat 1>&2 <<-EOF
110                 WARNING: loader(8) has only R/O support for ZFS
111                 nextboot.conf will NOT be reset in case of kernel boot failure
112         EOF
113 done
114
115 set -e
116
117 nextboot_tmp=$(mktemp $(dirname ${nextboot_file})/nextboot.XXXXXX)
118
119 if [ ${append} = "YES" -a -f ${nextboot_file} ]; then
120         cp -f ${nextboot_file} ${nextboot_tmp}
121 fi
122
123 cat >> ${nextboot_tmp} << EOF
124 nextboot_enable="YES"
125 $kenv
126 EOF
127
128 fsync ${nextboot_tmp}
129
130 mv ${nextboot_tmp} ${nextboot_file}