PandaBoard Minimal-FS SD flashing
From OMAPpedia
(Difference between revisions)
m (Created page with '{{minimal-FS_Progress_Bar}} <p style="border:{{{border|1px solid black}}}; padding:{{{padding|1px}}}; overflow:hidden;"> <span style=" width: 61%; height: 4px; back…') |
m |
||
| Line 23: | Line 23: | ||
{|width="100%" | {|width="100%" | ||
|align="left"|[[Image:left_arrow1.png|link=minimal-FS_SD Configuration]] | |align="left"|[[Image:left_arrow1.png|link=minimal-FS_SD Configuration]] | ||
| - | |align="center"|[[Image: | + | |align="center"|[[Image:Linux_Logo.jpg|link=minimal-FS|100px]] |
|align="right"|[[Image:right_arrow1.png|link=minimal-FS_Configuration]] | |align="right"|[[Image:right_arrow1.png|link=minimal-FS_Configuration]] | ||
|- | |- | ||
Revision as of 21:47, 30 August 2010
| IMPORTANT: The content of this page is outdated. If you have checked or updated this page and found the content to be suitable, please remove this notice. |
EVEN MORE IMPORTANT: See Troubleshooting for up-to-date information and binaries. Information below is outdated.
| Setting up your Validation Environment on your OMAP Platform | |||||||||
| Overview | Step 1 | Step 2 | Step 3 | Step 4 | Step 5 | Step 6 | Step 7 | Step 8 | |
- Step 3
Loading Bootloader, Kernel and Filesystem to SD card
Loading Uboot
Copying uboot onto SD boot partition:
# sudo cp -rf <location_of_uboot.bin> /tmp/mmc1
Loading Xloader Copying xloader (MLO) onto SD boot partition:
# sudo cp -rf <location_of_MLO> /tmp/mmc1
Loading Kernel Copying kernel image onto SD boot partition:
# sudo cp -rf <location_of_uImage> /tmp/mmc1
Loading Filesystem Copying filesystem onto SD disk partition:
# sudo cp -rf <location_of_rootfilesystem>/tmp/mmc2
or you can untar the filesystem directly to the SD card by:
sudo tar zxvf <location-of-rootfs.tar.gz> -C /tmp/mmc2
|
| |
| Previous | Home | Next |

