-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqemu.sh
More file actions
executable file
·22 lines (20 loc) · 1.17 KB
/
qemu.sh
File metadata and controls
executable file
·22 lines (20 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# **************************************************************************** #
# #
# ::: :::::::: #
# qemu.sh :+: :+: :+: #
# +:+ +:+ +:+ #
# By: maroy <maroy@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2024/08/04 01:33:07 by mathroy0310 #+# #+# #
# Updated: 2024/09/20 13:41:01 by maroy ### ########.fr #
# #
# **************************************************************************** #
#!/bin/sh
set -e
# . ./disk.sh
qemu-system-$(sh ./target-triplet-to-arch.sh $(sh default-host.sh))\
-m 128 \
-smp 2 \
-drive format=raw,media=disk,file=frog-os.img \
-serial stdio \
-accel kvm \