rust based raspberry pi os
Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- build-os:
- arm-none-eabi-gcc -mcpu=cortex-a7 -fpic -ffreestanding -c asm/boot-2.s -o build/boot.o
- cargo xbuild --release --target armv7r-none-eabihf
- arm-none-eabi-gcc -T linker.ld -o build/grove.img -ffreestanding -O2 -nostdlib build/boot.o target/target/release/libgrove.rlib
-
- run-os: build-os
- qemu-system-arm -M raspi2 -kernel build/grove.img -serial stdio
|