mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Meta: Run aarch64 with the disk image in the SD card slot
Co-authored-by: Timon Kruiper <timonkruiper@gmail.com> Co-authored-by: Ollrogge <nils-ollrogge@outlook.de>
This commit is contained in:
parent
c91db6ec97
commit
f3363c1088
Notes:
sideshowbarker
2024-07-16 22:24:50 +09:00
Author: https://github.com/mrkct Commit: https://github.com/SerenityOS/serenity/commit/f3363c1088 Pull-request: https://github.com/SerenityOS/serenity/pull/17887 Reviewed-by: https://github.com/Hendiadyoin1 Reviewed-by: https://github.com/Ollrogge Reviewed-by: https://github.com/Panky-codes Reviewed-by: https://github.com/nico Reviewed-by: https://github.com/supercomputer7
2 changed files with 18 additions and 1 deletions
|
@ -71,6 +71,19 @@ else
|
|||
DISK_SIZE_BYTES="$SERENITY_DISK_SIZE_BYTES"
|
||||
fi
|
||||
|
||||
nearest_power_of_2() {
|
||||
local n=$1
|
||||
local p=1
|
||||
while [ $p -lt "$n" ]; do
|
||||
p=$((p*2))
|
||||
done
|
||||
echo $p
|
||||
}
|
||||
if [ "$SERENITY_ARCH" = "aarch64" ]; then
|
||||
# The Aarch64 port loads from an SD card, which must have a size that is a power of 2
|
||||
DISK_SIZE_BYTES=$(nearest_power_of_2 "$DISK_SIZE_BYTES")
|
||||
fi
|
||||
|
||||
USE_EXISTING=0
|
||||
|
||||
if [ -f _disk_image ]; then
|
||||
|
|
|
@ -279,7 +279,11 @@ fi
|
|||
# add -machine vmport=off below to run the machine with ps/2 mouse
|
||||
if [ -z "$SERENITY_MACHINE" ]; then
|
||||
if [ "$SERENITY_ARCH" = "aarch64" ]; then
|
||||
SERENITY_MACHINE="-M raspi3b -serial stdio"
|
||||
SERENITY_MACHINE="
|
||||
-M raspi3b
|
||||
-serial stdio
|
||||
-drive file=${SERENITY_DISK_IMAGE},if=sd,format=raw
|
||||
"
|
||||
else
|
||||
SERENITY_MACHINE="
|
||||
-m $SERENITY_RAM_SIZE
|
||||
|
|
Loading…
Reference in a new issue