Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F102672344
D43824.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D43824.diff
View Options
diff --git a/sbin/reboot/reboot.c b/sbin/reboot/reboot.c
--- a/sbin/reboot/reboot.c
+++ b/sbin/reboot/reboot.c
@@ -31,6 +31,7 @@
#include <sys/types.h>
#include <sys/boottrace.h>
+#include <sys/mount.h>
#include <sys/reboot.h>
#include <sys/stat.h>
#include <sys/sysctl.h>
@@ -56,11 +57,6 @@
static bool dohalt;
-static void
-write_nextboot(const char *fn, const char *kernel, bool force)
-{
- FILE *fp;
-
#define E(...) do { \
if (force) { \
warn( __VA_ARGS__ ); \
@@ -69,13 +65,58 @@
err(1, __VA_ARGS__); \
} while (0) \
+static void
+zfsbootcfg(const char *pool, bool force)
+{
+ char *k;
+ int rv;
+
+ asprintf(&k,
+ "zfsbootcfg -z %s -n freebsd:nvstore -k nextboot_enable -v YES",
+ pool);
+ if (k == NULL)
+ E("No memory for zfsbootcfg");
+
+ rv = system(k);
+ if (rv == 0)
+ return;
+ if (rv == -1)
+ E("system zfsbootcfg");
+ if (rv == 127)
+ E("zfsbootcfg not found in path");
+ E("zfsbootcfg returned %d", rv);
+}
+
+static void
+write_nextboot(const char *fn, const char *kernel, bool force)
+{
+ FILE *fp;
+ struct statfs sfs;
+ bool supported = false;
+ bool zfs = false;
+
+ if (statfs("/boot", &sfs) != 0)
+ err(1, "statfs /boot");
+ if (strcmp(sfs.f_fstypename, "ufs") == 0) {
+ /*
+ * Only UFS supports the full nextboot protocol.
+ */
+ supported = true;
+ } else if (strcmp(sfs.f_fstypename, "zfs") == 0) {
+ zfs = true;
+ }
+
+ if (zfs) {
+ zfsbootcfg(sfs.f_mntfromname, force);
+ }
+
fp = fopen(fn, "w");
if (fp == NULL)
E("Can't create %s to boot %s", fn, kernel);
- if (fprintf(fp,
- "nextboot_enable=\"YES\"\n"
- "kernel=\"%s\"\n", kernel) < 0) {
+ if (fprintf(fp,"%skernel=\"%s\"\n",
+ supported ? "nextboot_enable=\"YES\"\n" : "",
+ kernel) < 0) {
int e;
e = errno;
@@ -86,7 +127,6 @@
E("Can't write %s", fn);
}
fclose(fp);
-#undef E
}
int
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 16, 4:15 PM (20 h, 33 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
14661235
Default Alt Text
D43824.diff (1 KB)
Attached To
Mode
D43824: reboot: Implement zfs support
Attached
Detach File
Event Timeline
Log In to Comment