rust based raspberry pi os
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

7 satır
361 B

  1. build-os:
  2. arm-none-eabi-gcc -mcpu=cortex-a7 -fpic -ffreestanding -c asm/boot-2.s -o build/boot.o
  3. cargo xbuild --release --target armv7r-none-eabihf
  4. arm-none-eabi-gcc -T linker.ld -o build/grove.img -ffreestanding -O2 -nostdlib build/boot.o target/target/release/libgrove.rlib
  5. run-os: build-os
  6. qemu-system-arm -M raspi2 -kernel build/grove.img -serial stdio