Skip to content
Snippets Groups Projects
Commit 58b37a35 authored by Bob Mottram's avatar Bob Mottram
Browse files

ram value

parent bae3bcc4
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,9 @@ PROJECT_NAME='freedombone'
export TEXTDOMAIN=${PROJECT_NAME}-image
export TEXTDOMAINDIR="/usr/share/locale"
# recommended RAM for virtual machines
VM_MEMORY='1G'
VARIANT='full'
# fixed username and password when the --generic option is used
......@@ -325,9 +328,9 @@ else
"
else
if [[ $IMAGE_TYPE != "qemu-x86_64"* && $IMAGE_TYPE != "qemu-amd64"* ]]; then
echo "qemu-system-i386 $(ls ${PROJECT_NAME}*.qcow2)"
echo "qemu-system-i386 -m ${VM_MEMORY} $(ls ${PROJECT_NAME}*.qcow2)"
else
echo "qemu-system-x86_64 $(ls ${PROJECT_NAME}*.qcow2)"
echo "qemu-system-x86_64 -m ${VM_MEMORY} $(ls ${PROJECT_NAME}*.qcow2)"
fi
echo $"
Username: $USERNAME
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment