Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

The goal of the document is to illustrate how to create an SD card with SP7021 Linux kernel and root file-system. Please follow the following steps.

1. Run ‘make config’

Get latest source files of SP7021 from git server of SP7021 (2. HOW TO GET SOURCE FILE AND PACKAGE) and run make config command on top folder. After configuration menu pops up, first, choose board you want to build image for. For example, press 4 for SP7021 Demo Board (V3). Second, press 2 to choose to build image for SD card and then enter to start to configure building environment. Refer to screenshot below,

make config is starting to configure building environment. It takes 1~2 minutes to complete.

2. Run ‘make all’

Run make all command to start to create image for SD card. It might take several minutes to complete. After 'make all' completes, you will see screen like:

From information on screen, two partitions are created in the image of SD card. The first partition starts at sector 2048 and ends at sector 206847. Its size is 100 MiB and file-system is W95 FAT. The second partition starts at sector 206848 and ends at sector 239615. Its size is 16 MiB and file-system is Linux (ext3).

3. Image files

The built image files are stored at out/boot2linux_SDcard/. Refer to screenshot of list of the folder:

ISPBOOOT.BIN is a binary file in which xboot is stored. xboot is a boot-loader which loads and runs u-boot during power-on booting processes. u-boot.img is u-boot image file. u-boot is the second stage boot-loader. It loads and runs Linux kernel image. uImage is an image file of compressed Linux kernel with u-boot header. uEnv.txt is an environment file of u-boot. u-boot imports environment variables in the file after it completes initializing. If uenvcmd command is defined in uEnv.txt, u-boot runs the uenvcmd command after it completes importing uEnv.txt. a926.img is an image file for processor A926. A926 processor is designed for taking care of real-time tasks. The default script of u-boot will load and run a926.img it if it exists in root of boot partition.

ISP_SD_BOOOT.img is an image for burning an SD card. It actually contains all files in both partitions.

4. Write image to an SD card

Use an application to write image file, ISP_SD_BOOOT.img, to an SD card. The capacity of SD card should be larger than size of image file, ISP_SD_BOOOT.img. For example, if you want to use “Win32 Disk Imager” to write image to an SD card. First, download the it from https://sourceforge.net/projects/win32diskimager/:

Then, install and run it. After application window pops, select “Image File” and “Device”. Finally, press “Write” button to start to write. Refer to screenshot when “Win32 Disk Imager” is writing image file, ISP_SD_BOOOT.img, to an SD card (G:\) below:

Another example is using “balenaEtcher”. Refer to screenshot when “balenaEtcher” is writing image file, ISP_SD_BOOOT.img, to an SD card below:

5. Boot from an SD card

Insert your SD card to SP7021 board and set its DIP-SW to “boot from SD card”. For example, if you are using SP7021 Demo Board (V1/V2/V3), you need to set DIP-SW to ON-ON for booting from SD card. Refer to picture below:

DIP-SW is set to ON-ON. Refer to Selection of boot devices of Plus1 for details of boot selection.

Turn on power of SP7021 board to start booting.

6. Extend size of root file-system

At the first time, Linux boots from a new SD card. The built-in script of Linux will run fdisk command to extend the size of rootfs partition to the end of SD card and then re-boot. Refer to log while Linux script is extending size of rootfs partition:

[    1.801401] EXT4-fs (mmcblk1p2): mounting ext3 file system using the ext4 subsystem
[    1.838694] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null)
[    1.838915] VFS: Mounted root (ext3 filesystem) on device 179:26.
[    1.843410] devtmpfs: mounted
[    1.846602] Freeing unused kernel memory: 1024K
[    1.849267] Run /sbin/init as init process
[    1.913424] random: fast init done
/etc/init.d/rcS starts...
Mounting other filesystems ...
rc.extra [bg]
sdcard boot set...
partition set
0x0000D8D6
totalsize=15931539456
0x00000009
extra done
totalsize=31116280 startsector=206848

The number of cylinders for this disk is set to 486192.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
   (e.g., DOS FDISK, OS/2 FDISK)

Command (m for help): Disk /dev/mmcblk1: 15 GB, 15931539456 bytes, 31116288 sectors
486192 cylinders, 4 heads, 16 sectors/track
Units: sectors of 1 * 512 = 512 bytes

Device       Boot StartCHS    EndCHS        StartLBA     EndLBA    Sectors  Size Id Type
/dev/mmcblk1p1    0,32,33     12,223,19         2048     206847     204800  100M  b Win95 FAT32
/dev/mmcblk1p2    12,223,20   14,233,27       206848     239615      32768 16.0M 83 Linux

Command (m for help): Partition number (1-4):
Command (m for help): Partition type
   p   primary partition (1-4)
   e   extended
Partition number (1-4): First sector (16-31116287, default 16): Last sector or +size{,K,M,G,T} (206848-31116287, default 31116287):
Command (m for help): Disk /dev/mmcblk1: 15 GB, 15931539456 bytes, 31116288 sectors
486192 cylinders, 4 heads, 16 sectors/track
Units: sectors of 1 * 512 = 512 bytes

Device       Boot StartCHS    EndCHS        StartLBA     EndLBA    Sectors  Size Id Type
/dev/mmcblk1p1    0,32,33     12,223,19         2048     206847     204800  100M  b Win95 FAT32
/dev/mmcblk1p2    1023,3,16   1023,3,16       206848   31116280   30909433 14.7G 83 Linux

Command (m for help): The partition table has been altered.
Calling ioctl() to re-read partition table
fdisk: WARNING: rereading partition table failed, kernel still uses old table: Device or resource busy
End of /etc/init.d/rcS
[    3.682763] EXT4-fs (mmcblk1p2): re-mounted. Opts: (null)
The system is going down NOW!
Sent SIGTERM to all processes
Sent SIGKILL to all processes
Requesting system reboot
+++iBoot v1.02 Jan 10 2019 11:20:28

The latest command in the script is reboot command. You’ll see system re-boot after script completes extending size of rootfs partition.

After system re-boots successfully, built-in script of Linux will run resize2fs to resize the root file-system to make use of the whole partition (It was extended in previous step.). It takes a while for completing resizing rootfs. Refer to screenshot when resizing:

Resizing has completed. You are ready to use SP7021 Linux.

Appendix: How to extend size of rootfs partition to maximum manually?

1. Use fdisk to extend size of rootfs partition to end of the SD card.

Run fdisk as below:

fdisk /dev/mmcblk1

where SD card device is at /dev/mmcblk1.

a) Press p to list partitions of the SD card.

b) Press d and then 2 to delete the second (rootfs) partition.

c) Press p to list partitions of the SD card again.

d) Press n and, p, 2, 104448 and then 31950839 to add back the second (rootfs) partition. Note that 104448 is start-LBA while 31950839 is new end-LBA of the partition.

e) Press p to list partitions of the SD card again. Confirm modification of partitions.

f) Press w to write back partition to the SD card.

g) Run reboot command to re-boot system.

Refer to screenshot below:

2. Run resize2fs to extend size of file-system to make use the whole partition

Run resize2fs command as below:

resize2fs /dev/mmcblk1p2

  • No labels