diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-01-30 15:10:15 -0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2012-02-07 14:37:15 -0800 |
commit | cfd84a05581e068d705b0804829c4833a06bffa6 (patch) | |
tree | b91e5a5eeb6aa94ea3b9d2ec45ac2fbd2e463ee6 /scripts | |
parent | 22309029a9599b8f947c1fca664760123c325885 (diff) | |
download | openembedded-core-cfd84a05581e068d705b0804829c4833a06bffa6.tar.gz openembedded-core-cfd84a05581e068d705b0804829c4833a06bffa6.tar.bz2 openembedded-core-cfd84a05581e068d705b0804829c4833a06bffa6.tar.xz openembedded-core-cfd84a05581e068d705b0804829c4833a06bffa6.zip |
runqemu-internal: qemuarm can handle 256M
Raise the check for max RAM supported for QEMU/arm
its 256M since we patched it to be so in OE
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu-internal | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal index 21fbce3ee..73b8b41ec 100755 --- a/scripts/runqemu-internal +++ b/scripts/runqemu-internal @@ -67,13 +67,14 @@ fi # QEMU_MEMORY has 'M' appended to mem_size QEMU_MEMORY="$mem_size"M -# Bug 433: qemuarm cannot use > 128 MB RAM +# Bug 433: qemuarm cannot use > 256 MB RAM if [ "$MACHINE" = "qemuarm" ]; then - if [[ -z "$mem_size" || $mem_size -gt 128 ]]; then - echo "WARNING: qemuarm does not support > 128M of RAM." - echo "Changing QEMU_MEMORY to default of 128M." - QEMU_MEMORY="128M" - SCRIPT_QEMU_EXTRA_OPT=`echo $SCRIPT_QEMU_EXTRA_OPT | sed -e "s/$mem_set/-m 128/" ` + if [[ -z "$mem_size" || $mem_size -gt 256 ]]; then + echo "WARNING: qemuarm does not support > 256M of RAM." + echo "Changing QEMU_MEMORY to default of 256M." + QEMU_MEMORY="256M" + mem_size="256" + SCRIPT_QEMU_EXTRA_OPT=`echo $SCRIPT_QEMU_EXTRA_OPT | sed -e "s/$mem_set/-m 256/" ` fi fi |