Quick Start Board IMX53 change uImage

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

Quick Start Board IMX53 change uImage

跳至解决方案
1,647 次查看
andrebella
Contributor III

I have the quickstart board it comes with a preloaded ubuntu on it,, but I wanted to change the uImage for one that I just made with LTIB, how can I do that?

标签 (3)
标记 (1)
0 项奖励
回复
1 解答
1,399 次查看
NicolasIzquierd
Contributor III

Hi andrebella..

My mistake, is in chapter 8, see below, you can easy replace your uImage with a dd command from your linux box.

8.1.3 Copying the kernel image (pag 36)

The following command will copy the kernel image to the SD/MMC card

$ sudo dd if= uImage of=/dev/sdb bs=512 seek=2048 && sync && sync

This will copy the uImage to the media at offset 1MB.

just be very sure where your SD is located with the cat /proc/partitions is,

hope with this can find your solution.

-ni

在原帖中查看解决方案

0 项奖励
回复
4 回复数
1,399 次查看
NicolasIzquierd
Contributor III

Hi,

you may need to download the IMX53_1109_LINUXDOCS_BUNDLE, there you will look the the i.MX53_START_Linux_BSP_UserGuide.pdf  where chapter 5, 6, 7 you can find the procedure to replace your uImage,

hopes this can help you.

-ni

0 项奖励
回复
1,399 次查看
andrebella
Contributor III

I read that but it talks about if you create your own rootfs and uImage in one package,

I just wanted to replace the uImage from the sd card, I had done it from /boot but it still loads the old uImage.

0 项奖励
回复
1,400 次查看
NicolasIzquierd
Contributor III

Hi andrebella..

My mistake, is in chapter 8, see below, you can easy replace your uImage with a dd command from your linux box.

8.1.3 Copying the kernel image (pag 36)

The following command will copy the kernel image to the SD/MMC card

$ sudo dd if= uImage of=/dev/sdb bs=512 seek=2048 && sync && sync

This will copy the uImage to the media at offset 1MB.

just be very sure where your SD is located with the cat /proc/partitions is,

hope with this can find your solution.

-ni

0 项奖励
回复
1,399 次查看
andrebella
Contributor III

Thank you Jose, this works

$ sudo dd if= uImage of=/dev/sdb bs=512 seek=2048 && sync && sync

0 项奖励
回复