Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4116220
  • 博文数量: 241
  • 博客积分: 15936
  • 博客等级: 上将
  • 技术积分: 25293
  • 用 户 组: 普通用户
  • 注册时间: 2007-03-27 11:22
个人简介

Fedora-ARM

文章分类
文章存档

2016年(3)

2014年(1)

2013年(3)

2012年(50)

2011年(61)

2010年(26)

2009年(27)

2008年(21)

2007年(49)

分类: LINUX

2007-10-29 22:27:13

移植U-Boot.1.2.0到
友善之臂SBC2440V4(S3C2440AL)
本文介绍的uboot已经很旧请到uboot-2009.01获取最新版本代码补丁
 
   公司新买了一块友善之臂的SBC2440V4给我,我自己的博创UP-NETARM2410-S可以搬回家用了。在将U-Boot和Linux移植到我自己的2410-S后,现在开始移植U-Boot和Linux到s3c2440。
阅读(29117) | 评论(74) | 转发(5) |
给主人留下些什么吧!~~

chinaunix网友2009-04-29 17:38:29

求助: 我现在正在学UBOOT,可是编译是总是出现start.S:313 undifined reference to “nand_read_ll”,可是我在board/ta2410/中添加nand_read.c文件,而且也在makefile中添加了nand_read.o,我找不出原因,请求您的帮助~!

chinaunix网友2009-03-31 15:06:47

我在移植DM9000 的时候有到这样的问题 ERROR: resetting DM9000 -> not responding dm9000 not found at 0x28000000 id: 0x2b2a2928 DM9000: Undefined IO-mode:0x3 MAC: 92:68:00:08:00:00 could not establish link transmission timeout transmission timeout ping failed; host 192.168.0.45 is not alive 请帮我分析哈是什么原因,谢谢

chinaunix网友2009-02-20 20:58:18

/* * (C) Copyright 2002 * Sysgo Real-Time Solutions, GmbH * Marius Groeger * * (C) Copyright 2002 * David Mueller, ELSOFT AG, * * (C) Copyright 2005 * JinHua Luo, GuangDong Linux Center, * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Lic

pangjie3752009-01-12 13:39:01

楼主, 我按你的方法一步一步设置的,我把U-boot.bin文件烧写到开发板后,启动信息如下: U-Boot 1.2.0 (Jan 7 2009 - 16:55:04) U-Boot code: 33F80000 -> 33F9D850 BSS: -> 33FA35F4 DRAM: 64 MB Flash: 1 MB NAND: NAND flash probing at 0x4E000000 0 MB nand_read_ecc: Attempt read beyond end of device 20000 10000 0 *** Warning - bad CRC or NAND, using default environment In: serial Out: serial Err: serial Hit any key to stop autoboot: 0 BOOTP broadcast 1 BOOTP broadcast 2 BOOTP broadcast 3 BOOTP broadcast

chinaunix网友2008-12-14 21:38:22

你贴出的修改后程序~ #define NAND_MAX_CHIPS 1 /* Nand Flash命令层底层接口函数 */ #define WRITE_NAND_COMMAND(d, adr) {rNFCMD = d;}//此行为黑色,但是和我所贴出的程序格式不相吻合,指点一下~ /*********以下是红色***********/ #define WRITE_NAND_ADDRESS(d, adr) {rNFADDR = d;} #define WRITE_NAND(d, adr) {rNFDATA = d;} #define READ_NAND(adr) (rNFDATA) #define NAND_WAIT_READY(nand) {while(!(rNFSTAT&(1<<0)));} #define NAND_DISABLE_CE(nand) {rNFCONT |= (1<<1);} #define NAND_ENABLE_CE(nand) {rNFCONT &= ~(1<<1);} //****************以上是