Desktop scripts

This commit is contained in:
Sonny 2017-06-17 18:35:23 +02:00
parent 6079f98037
commit 639e4dbf2d
19 changed files with 321 additions and 0 deletions

14
scripts/qemu/raspbian Executable file
View file

@ -0,0 +1,14 @@
#!/bin/bash
# Qemu script to start raspbian
qemu-system-arm \
-kernel /media/platvoeten/Downloads/kernel-qemu-4.4.34-jessie \
-cpu arm1176 \
-net user,hostfwd=tcp::2222-:22 \
-net nic \
-display none \
-m 256 \
-no-reboot \
-M versatilepb \
-serial stdio\
-append "root=/dev/sda2 panic=1 rootfstype=ext4 rw" \
-drive "file=/media/platvoeten/VM/raspbian.img,index=0,media=disk,format=raw"