This guide is meant for those looking to create a dual-partition card, booting from a FAT partition that can be read by the OMAP3 ROM bootloader and Linux/Windows, then utilizing an ext3 partition for the Linux root file system.
Text marked with shows user input.
Plug the SD Card into the SD Card Reader and then plug the SD Card Reader into your system. After doing that, do the following to determine which device it is on your system.
$ [dmesg | tail]
...
[ 6854.215650] sd 7:0:0:0: [sdc] Mode Sense: 0b 00 00 08
[ 6854.215653] sd 7:0:0:0: [sdc] Assuming drive cache: write through
[ 6854.215659] sdc: sdc1
[ 6854.218079] sd 7:0:0:0: [sdc] Attached SCSI removable disk
[ 6854.218135] sd 7:0:0:0: Attached scsi generic sg2 type 0
...
In this case, it shows up as /dev/sdc (note sdc inside the square brackets above).
Note there may be more than one partition (only one shown in the example below).
$ [df -h]
Filesystem Size Used Avail Use% Mounted on
...
/dev/sdc1 400M 94M 307M 24% /media/disk
...
Note the "Mounted on" field in the above and use that name in the umount commands below.
$ [umount /media/disk]
Be sure to choose the whole device (/dev/sdc), not a single partition (/dev/sdc1).
$ [sudo fdisk /dev/sdc]
So you know your starting point. Make sure to write down the number of bytes on the card (in this example, 2021654528).
Command (m for help): [p]
Disk /dev/sdc: 2021 MB, 2021654528 bytes
255 heads, 63 sectors/track, 245 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdc1 * 1 246 1974240+ c W95 FAT32 (LBA)
Partition 1 has different physical/logical endings:
phys=(244, 254, 63) logical=(245, 200, 19)
Command (m for help): [d]
Selected partition 1
If the print out above does not show 255 heads, 63 sectors/track, then do the following expert mode steps to redo the SD Card:
Command (m for help): [x]
Expert Command (m for help): [h]
Number of heads (1-256, default xxx): [255]
Expert Command (m for help): [s]
Number of sectors (1-63, default xxx): [63]
#cylinders = FLOOR (the number of Bytes on the SD Card (from above) / 255 / 63 / 512 )
So for this example: 2021654528 / 255 / 63 / 512 = 245.79. So we use 245 (i.e. truncate, don't round).
Expert Command (m for help): [c]
Number of cylinders (1-256, default xxx): [enter the number you calculated]
Expert Command (m for help): [r]
Command (m for help): [p]
Disk /dev/sdc: 2021 MB, 2021654528 bytes
255 heads, 63 sectors/track, 245 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
Command (m for help): [n]
Command action
e extended
p primary partition (1-4)
[p]
Partition number (1-4): [1]
First cylinder (1-245, default 1): [(press Enter)]
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-245, default 245): [+50]
Command (m for help): [t]
Selected partition 1
Hex code (type L to list codes): [c]
Changed system type of partition 1 to c (W95 FAT32 (LBA))
Command (m for help): [a]
Partition number (1-4): [1]
Command (m for help): [n]
Command action
e extended
p primary partition (1-4)
[p]
Partition number (1-4): [2]
First cylinder (52-245, default 52): [(press Enter)]
Using default value 52
Last cylinder or +size or +sizeM or +sizeK (52-245, default 245): [(press Enter)]
Using default value 245
Command (m for help): [p]
Disk /dev/sdc: 2021 MB, 2021654528 bytes
255 heads, 63 sectors/track, 245 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdc1 * 1 51 409626 c W95 FAT32 (LBA)
/dev/sdc2 52 245 1558305 83 Linux
This is an important step. All the work up to now has been temporary.
Command (m for help): [w]
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table.
The new table will be used at the next reboot.
WARNING: If you have created or modified any DOS 6.x
partitions, please see the fdisk manual page for additional
information.
Syncing disks.
The two partitions are given the volume names LABEL1 and LABEL2 by these commands. You can substitute your own volume labels.
$ [sudo mkfs.msdos -F 32 /dev/sdc1 -n LABEL1]
mkfs.msdos 2.11 (12 Mar 2005)
$ [sudo mkfs.ext3 -L LABEL2 /dev/sdc2]
mke2fs 1.40-WIP (14-Nov-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
195072 inodes, 389576 blocks
19478 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=402653184
12 block groups
32768 blocks per group, 32768 fragments per group
16256 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912
Writing inode tables: done
Creating journal (8192 blocks): done
Writing superblocks and filesystem accounting information:
If you use bootloader U-Boot, use following settings to mount root file system at second partition from kernel:
console=ttyS2,115200n8 root=/dev/mmcblk0p2 rw rootdelay=1
Here's a detailed set of instructions for partitioning and formatting an SD card to boot Linux: http://code.google.com/p/beagleboard/wiki/LinuxBootDiskFormat
To get the BeagleBoard to autoboot from the SD card, the following commands are needed:
OMAP3 beagleboard.org # setenv bootargs 'console=ttyS2,115200n8 root=/dev/mmcblk0p2 rw rootwait'
OMAP3 beagleboard.org # set bootcmd 'mmcinit;fatload mmc 0 80300000 uImage;bootm 80300000' ; saveenv
OMAP3 beagleboard.org # printenv
Upon printing the environment, the output should show the updated settings.
OMAP3 beagleboard.org # printenv
filesize=AF13C
stdin=serial
stdout=serial
stderr=serial
bootargs=console=ttyS2,115200n8 root=/dev/mmcblk0p2 rw rootwait
bootcmd=mmcinit;fatload mmc 0 80300000 uImage;bootm 80300000
Environment size: 181/131068 bytes
Reset the board and it should now autoboot from the SD card.
If using minicom and a serial connection to control the BeagleBoard, there is a transfer protocol that can transfer files between your host machine and the BeagleBoard. This can be a timesaver for transferring small files. This may not be very useful for files over 1MB as serial communication limits transfer speed to about 10-12 KB/s. To install zmodem on the BeagleBoard, you will need to bitbake and install the zmodem recipe.
$ source ~/oe/beagleboard/beagleboard/profile.sh
$ cd $OE_HOME
$ bitbake lrzsz
This will create three new ipk files in ~/oe/tmp/deploy/glibc/ipk/armv7a. Copy only the main file (lrzsz_0.12.20-r4.1_armv7a.ipk) into your home directory. Replace the SD card, reboot, and minicom into the BeagleBoard. Install the ipk file and start the zmodem client to wait for a file.
$ minicom -w
root@beagleboard:~# opkg install lrzsz_0.12.20-r4.1_armv7a.ipk
root@beagleboard:~# rz
waiting to receive.**B0100000023be50
In the minicom terminal, press CTRL-A, then Z. This will bring up a bunch of minicom options. Enter S to "Send files" and select zmodem out of the options. Browse to the folder of the file you want to transfer. You can enter directories and select files using the spacebar. You can also select and send multiple files but only if they are in the same directory. Once finished selecting the files, select [Okay]. It will then show you a dialog of the file transfer with the respective transfer speed.
Folder name of package cannot contain underscores Package name before revision cannot contain capital letters
Use opkg instead of ipkg to install on BeagleBoard
You have to change permissions of /home/root to 777 so the other computer can insert the new pkg. This has to be done locally on the BeagleBoard (by minicom)
To install Perl on BeagleBoard, bitbake the pre-existing Perl recipe and copy over two ipk files to the rfs: perl_5.8.8-r27.1_armv7a.ipk and libperl5_5.8.8-r27.1_armv7a.ipk. Additional modules can then be installed.
Open minicom with option -w. It turns on text wrapping which is off by default.
文章评论(0条评论)
登录后参与讨论