Git Product home page Git Product logo

Comments (1)

latinovic avatar latinovic commented on August 16, 2024

Hi,
In order to have CI20 booting from SD card you should do following:

Build u-boot from source as instructed here:

https://www.elinux.org/CI20_Dev_Zone

Download RFS from one of following locations:

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

Burn u-boot to SD card

  • Determine the device name of the SD card:
    run lsblk command before sd card is inserted, run lsblk command after sd card is inserted, see the difference.
    /dev/sdd is used in my case.
  • Unmount sd card

sudo umount $SD_MOUNT_PATH

  • Burn uboot

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

Unpack RFS to SD card

mount SD card (/dev/sdd1)

sudo tar -xzpf ./rootfs_2016_06_02.tar -C $SD_MOUNT_PATH
sudo sync

Boot CI20

  • Insert SD card
  • Make sure that JP3 is set to boot from SD card (2,3)
  • Power on the board

from ci20_u-boot.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.