diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-01-18 15:31:46 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-01-18 15:31:46 -0500 |
commit | 183c16d663d4dbab7834f8af8e23eb5b086c3e85 (patch) | |
tree | c5baf79744522230f9307db8cb38a291dbd7f2a3 /etc | |
parent | 22c58bdae7a9793100eebf60dc2f5c74666255fc (diff) | |
download | pfsense-183c16d663d4dbab7834f8af8e23eb5b086c3e85.zip pfsense-183c16d663d4dbab7834f8af8e23eb5b086c3e85.tar.gz |
The MS-Dos filesystem was renamed from msdos to msdosfs in 6.3.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/config.inc | 2 | ||||
-rwxr-xr-x | etc/rc.initial.store_config_to_removable_device | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/config.inc b/etc/inc/config.inc index 596b6d1..b8356b6 100644 --- a/etc/inc/config.inc +++ b/etc/inc/config.inc @@ -118,7 +118,7 @@ if ($g['booting'] and !file_exists($g['cf_conf_path'] . "/config.xml") ) { $cfgdevice = $cfgpartition = "fd0"; } } - $cfgfstype = "msdos"; + $cfgfstype = "msdosfs"; echo "CDROM build\n"; echo " CFG: {$cfgpartition}\n"; echo " TYPE: {$cfgfstype}\n"; diff --git a/etc/rc.initial.store_config_to_removable_device b/etc/rc.initial.store_config_to_removable_device index 8733e98..9138bbe 100755 --- a/etc/rc.initial.store_config_to_removable_device +++ b/etc/rc.initial.store_config_to_removable_device @@ -60,7 +60,7 @@ mwexec("/bin/mkdir -p /tmp/mnt/cf"); - $status = mwexec("/sbin/mount -w -t msdos /dev/{$move_config_to_device} /tmp/mnt/cf"); + $status = mwexec("/sbin/mount -w -t msdosfs /dev/{$move_config_to_device} /tmp/mnt/cf"); if(!$status) { echo "Error while mounting {$move_config_to_device}.\n"; exit; |