summaryrefslogtreecommitdiffstats
path: root/etc/rc.nanobsd_switch_boot_slice
diff options
context:
space:
mode:
authorjim-p <jim@pingle.org>2010-04-23 12:19:36 -0400
committerjim-p <jim@pingle.org>2010-04-23 12:19:36 -0400
commit2b5f276f8766b7085d8b6ec54b21b6db7554a355 (patch)
treeacd730b4e78ed1f1f01fe082e601449f38675de3 /etc/rc.nanobsd_switch_boot_slice
parent08fd5444a92c40b9c248493b8da517ffce0e5445 (diff)
downloadpfsense-2b5f276f8766b7085d8b6ec54b21b6db7554a355.zip
pfsense-2b5f276f8766b7085d8b6ec54b21b6db7554a355.tar.gz
Improve NanoBSD slice updating/changing a bit, add some error checking. Resolves #534.
Diffstat (limited to 'etc/rc.nanobsd_switch_boot_slice')
-rw-r--r--etc/rc.nanobsd_switch_boot_slice27
1 files changed, 27 insertions, 0 deletions
diff --git a/etc/rc.nanobsd_switch_boot_slice b/etc/rc.nanobsd_switch_boot_slice
new file mode 100644
index 0000000..ccbed9c
--- /dev/null
+++ b/etc/rc.nanobsd_switch_boot_slice
@@ -0,0 +1,27 @@
+#!/usr/local/bin/php -q
+<?php
+require_once("globals.inc");
+require_once("config.inc");
+require_once("pfsense-utils.inc");
+
+global $g;
+global $SLICE, $OLDSLICE, $TOFLASH, $COMPLETE_PATH, $COMPLETE_BOOT_PATH;
+global $GLABEL_SLICE, $UFS_ID, $OLD_UFS_ID, $BOOTFLASH;
+global $BOOT_DEVICE, $REAL_BOOT_DEVICE, $BOOT_DRIVE, $ACTIVE_SLICE;
+nanobsd_detect_slice_info();
+
+if ($g['platform'] != "nanobsd") {
+ echo "This script can only be used on NanoBSD (embedded) images.\n";
+ exit(1);
+}
+
+echo "Boot slice : {$BOOTFLASH} ({$BOOT_DEVICE})\n";
+echo "Active slice: {$ACTIVE_SLICE}\n\n";
+
+echo "Switching active slice...";
+nanobsd_switch_boot_slice();
+echo "Done.\n\n";
+nanobsd_detect_slice_info();
+echo "Boot slice : {$BOOTFLASH} ({$BOOT_DEVICE})\n";
+echo "Active slice: {$ACTIVE_SLICE}\n\n";
+?> \ No newline at end of file
OpenPOWER on IntegriCloud