6 lines
282 B
Bash
6 lines
282 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
wget 'http://downloads.raspberrypi.org/raspbian_lite/images/raspbian_lite-2017-07-05/2017-07-05-raspbian-jessie-lite.zip' -O raspbian.img.zip
|
||
|
unzip raspbian.img.zip
|
||
|
wget 'https://github.com/dhruvvyas90/qemu-rpi-kernel/raw/master/kernel-qemu-4.4.13-jessie' -O kernel-qemu
|