[PC-BSD Commits] r4271 - in pcbsd/trunk/pc-sysinstall: backend conf
svn at pcbsd.org
svn at pcbsd.org
Mon Jul 27 14:24:13 PDT 2009
Author: kris
Date: 2009-07-27 14:24:13 -0700 (Mon, 27 Jul 2009)
New Revision: 4271
Modified:
pcbsd/trunk/pc-sysinstall/backend/functions-mountdisk.sh
pcbsd/trunk/pc-sysinstall/conf/pc-sysinstall.conf
Log:
Fixed lzma extraction error with pc-sysinstall, and fixed enabling swap, which is needed
with 256MB of ram and the new lzma binary it would seem
Modified: pcbsd/trunk/pc-sysinstall/backend/functions-mountdisk.sh
===================================================================
--- pcbsd/trunk/pc-sysinstall/backend/functions-mountdisk.sh 2009-07-27 15:12:13 UTC (rev 4270)
+++ pcbsd/trunk/pc-sysinstall/backend/functions-mountdisk.sh 2009-07-27 21:24:13 UTC (rev 4271)
@@ -122,7 +122,7 @@
;;
SWAP) # Lets enable this swap now
echo "swapon ${PART}"
- #swapon ${PART}
+ swapon /dev/${PART}
;;
*) exit_err "ERROR: Got unknown file-system type $PARTFS" ;;
esac
Modified: pcbsd/trunk/pc-sysinstall/conf/pc-sysinstall.conf
===================================================================
--- pcbsd/trunk/pc-sysinstall/conf/pc-sysinstall.conf 2009-07-27 15:12:13 UTC (rev 4270)
+++ pcbsd/trunk/pc-sysinstall/conf/pc-sysinstall.conf 2009-07-27 21:24:13 UTC (rev 4271)
@@ -59,8 +59,8 @@
# Commands to use in conjunction with tar when extracting LZMA files
-LZMA_CMD="lzma d -so"
-LZMA_CMD_NET="lzma d -si -so"
+LZMA_CMD="lzma -d -c"
+LZMA_CMD_NET="lzma -d -c -"
export LZMA_CMD LZMA_CMD_NET
# Our internet mirror listing file location
More information about the Commits
mailing list