Open cellularmitosis opened 5 years ago
Hi, In order to have CI20 booting from SD card you should do following:
https://www.elinux.org/CI20_Dev_Zone
http://mipscreator.mips.com/CI20/images/default_NAND/Debian8_20160602/rootfs_2016_06_02.tar http://mipscreator.mips.com/CI20/images/default_NAND/Debian8_20150909/rootfs_2015_09_09.tar
sudo umount $SD_MOUNT_PATH
sudo sfdisk /dev/sdd -uS -L << EOF 4096,,L EOF sudo mkfs.ext4 /dev/sdd1 sudo dd if=/dev/zero of=/dev/sdd bs=1K seek=526 count=32 sudo dd if=./CI20_u-boot/spl/u-boot-spl.bin of=/dev/sdd obs=512 seek=1 sudo dd if=./CI20_u-boot/u-boot.img of=/dev/sdd obs=1K seek=14 sync
mount SD card (/dev/sdd1)
sudo tar -xzpf ./rootfs_2016_06_02.tar -C $SD_MOUNT_PATH sudo sync
Hi,
Every time I try to boot from the SD Card, the blue LED lights up and the CI20 copies the SD Card to the onboard flash.
This isn't what I want -- I want to boot and run Linux from the SD Card.
Am I missing something obvious? Do I need to install a custom bootloader onto the SD Card?