mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
raspberrypi: post-image.sh add new gpu_mem option
The amount of GPU memory can be set using the new option --gpu_mem_XXX (where XXX is the total amount of memory available on the board). Signed-off-by: Gaël PORTAY <gael.portay@savoirfairelinux.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
39576d0f73
commit
f9ccd2a186
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
BOARD_DIR="$(dirname $0)"
|
BOARD_DIR="$(dirname $0)"
|
||||||
BOARD_NAME="$(basename ${BOARD_DIR})"
|
BOARD_NAME="$(basename ${BOARD_DIR})"
|
||||||
@ -38,6 +38,11 @@ enable_uart=1
|
|||||||
__EOF__
|
__EOF__
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
--gpu_mem_256=*|--gpu_mem_512=*|--gpu_mem_1024=*)
|
||||||
|
# Set GPU memory
|
||||||
|
gpu_mem="${1:2}"
|
||||||
|
sed -e "/^${gpu_mem%=*}=/s,=.*,=${gpu_mem##*=}," -i "${BINARIES_DIR}/rpi-firmware/config.txt"
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user