diff options
author | Eric Hameleers <alien@slackware.com> | 2016-02-13 00:51:27 +0100 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2016-02-13 00:51:27 +0100 |
commit | 70bbd0f73ba87dc65cc3fe83832224e73ade8c8e (patch) | |
tree | ba1d3a34d1605f39031123652c73548109eb2634 /liveinit | |
parent | 63c48afe9b4461b803b910216094a520f71b7727 (diff) | |
download | liveslak-70bbd0f73ba87dc65cc3fe83832224e73ade8c8e.tar.gz liveslak-70bbd0f73ba87dc65cc3fe83832224e73ade8c8e.tar.xz |
liveinit: fix the mount command by removing a superfluous '%'.
Diffstat (limited to 'liveinit')
-rwxr-xr-x | liveinit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -299,7 +299,7 @@ if [ "$RESCUE" = "" ]; then else RAMSIZE=50% # the default value. fi - mount -t tmpfs -o defaults,size=${RAMSIZE}% none /mnt + mount -t tmpfs -o defaults,size=${RAMSIZE} none /mnt # Find the Slackware Live media. # TIP: Increase WAIT to give USB devices a chance to be seen by the kernel. |