xref: /openbmc/u-boot/board/freescale/m5373evb/README (revision 380e86f3)
1702e6014SWolfgang DenkFreescale MCF5373EVB ColdFire Development Board
2702e6014SWolfgang Denk================================================
3702e6014SWolfgang Denk
4702e6014SWolfgang DenkTsiChung Liew(Tsi-Chung.Liew@freescale.com)
5702e6014SWolfgang DenkCreated 11/08/07
6702e6014SWolfgang Denk===========================================
7702e6014SWolfgang Denk
8702e6014SWolfgang Denk
9702e6014SWolfgang DenkChanged files:
10702e6014SWolfgang Denk==============
11702e6014SWolfgang Denk
12702e6014SWolfgang Denk- board/freescale/m5373evb/m5373evb.c	Dram setup
13702e6014SWolfgang Denk- board/freescale/m5373evb/mii.c	Mii access
14702e6014SWolfgang Denk- board/freescale/m5373evb/Makefile	Makefile
15702e6014SWolfgang Denk- board/freescale/m5373evb/config.mk	config make
16702e6014SWolfgang Denk- board/freescale/m5373evb/u-boot.lds	Linker description
17702e6014SWolfgang Denk
18702e6014SWolfgang Denk- arch/m68k/cpu/mcf532x/cpu.c		cpu specific code
19702e6014SWolfgang Denk- arch/m68k/cpu/mcf532x/cpu_init.c	FBCS, Mux pins, icache and RTC extra regs
20702e6014SWolfgang Denk- arch/m68k/cpu/mcf532x/interrupts.c	cpu specific interrupt support
21702e6014SWolfgang Denk- arch/m68k/cpu/mcf532x/speed.c		system, pci, flexbus, and cpu clock
22702e6014SWolfgang Denk- arch/m68k/cpu/mcf532x/Makefile		Makefile
23702e6014SWolfgang Denk- arch/m68k/cpu/mcf532x/config.mk		config make
24702e6014SWolfgang Denk- arch/m68k/cpu/mcf532x/start.S		start up assembly code
25702e6014SWolfgang Denk
26702e6014SWolfgang Denk- doc/README.m5373evb		This readme file
27702e6014SWolfgang Denk
28702e6014SWolfgang Denk- drivers/net/mcffec.c		ColdFire common FEC driver
29702e6014SWolfgang Denk- drivers/serial/mcfuart.c	ColdFire common UART driver
30702e6014SWolfgang Denk- drivers/rtc/mcfrtc.c		Realtime clock Driver
31702e6014SWolfgang Denk
32702e6014SWolfgang Denk- include/asm-m68k/bitops.h		Bit operation function export
33702e6014SWolfgang Denk- include/asm-m68k/byteorder.h		Byte order functions
34702e6014SWolfgang Denk- include/asm-m68k/fec.h		FEC structure and definition
35702e6014SWolfgang Denk- include/asm-m68k/fsl_i2c.h		I2C structure and definition
36702e6014SWolfgang Denk- include/asm-m68k/global_data.h	Global data structure
37702e6014SWolfgang Denk- include/asm-m68k/immap.h		ColdFire specific header file and driver macros
38702e6014SWolfgang Denk- include/asm-m68k/immap_532x.h		mcf532x specific header file
39702e6014SWolfgang Denk- include/asm-m68k/io.h			io functions
40702e6014SWolfgang Denk- include/asm-m68k/m532x.h		mcf532x specific header file
41702e6014SWolfgang Denk- include/asm-m68k/posix_types.h	Posix
42702e6014SWolfgang Denk- include/asm-m68k/processor.h		header file
43702e6014SWolfgang Denk- include/asm-m68k/ptrace.h		Exception structure
44702e6014SWolfgang Denk- include/asm-m68k/rtc.h		Realtime clock header file
45702e6014SWolfgang Denk- include/asm-m68k/string.h		String function export
46702e6014SWolfgang Denk- include/asm-m68k/timer.h		Timer structure and definition
47702e6014SWolfgang Denk- include/asm-m68k/types.h		Data types definition
48702e6014SWolfgang Denk- include/asm-m68k/uart.h		Uart structure and definition
49*a187559eSBin Meng- include/asm-m68k/u-boot.h		U-Boot structure
50702e6014SWolfgang Denk
51702e6014SWolfgang Denk- include/configs/M5373EVB.h		Board specific configuration file
52702e6014SWolfgang Denk
53702e6014SWolfgang Denk- arch/m68k/lib/board.c			board init function
54702e6014SWolfgang Denk- arch/m68k/lib/cache.c
55702e6014SWolfgang Denk- arch/m68k/lib/interrupts			Coldfire common interrupt functions
56702e6014SWolfgang Denk- arch/m68k/lib/m68k_linux.c
57702e6014SWolfgang Denk- arch/m68k/lib/time.c			Timer functions (Dma timer and PIT)
58702e6014SWolfgang Denk- arch/m68k/lib/traps.c			Exception init code
59702e6014SWolfgang Denk
60702e6014SWolfgang Denk1 MCF5373 specific Options/Settings
61702e6014SWolfgang Denk====================================
62702e6014SWolfgang Denk1.1 pre-loader is no longer suppoer in thie coldfire family
63702e6014SWolfgang Denk
64702e6014SWolfgang Denk1.2 Configuration settings for M5373EVB Development Board
65702e6014SWolfgang DenkCONFIG_MCF532x		-- define for all MCF532x CPUs
66702e6014SWolfgang DenkCONFIG_M5373		-- define for all Freescale MCF5373 CPUs
67702e6014SWolfgang DenkCONFIG_M5373EVB		-- define for M5373EVB board
68702e6014SWolfgang Denk
69702e6014SWolfgang DenkCONFIG_MCFUART		-- define to use common CF Uart driver
70702e6014SWolfgang DenkCONFIG_SYS_UART_PORT		-- define UART port number, start with 0, 1 and 2
71702e6014SWolfgang DenkCONFIG_BAUDRATE		-- define UART baudrate
72702e6014SWolfgang Denk
73702e6014SWolfgang DenkCONFIG_MCFRTC		-- define to use common CF RTC driver
74702e6014SWolfgang DenkCONFIG_SYS_MCFRTC_BASE		-- provide base address for RTC in immap.h
75702e6014SWolfgang DenkCONFIG_SYS_RTC_OSCILLATOR	-- define RTC clock frequency
76702e6014SWolfgang DenkRTC_DEBUG		-- define to show RTC debug message
77*a187559eSBin MengCONFIG_CMD_DATE		-- enable to use date feature in U-Boot
78702e6014SWolfgang Denk
79702e6014SWolfgang DenkCONFIG_MCFFEC		-- define to use common CF FEC driver
80702e6014SWolfgang DenkCONFIG_MII		-- enable to use MII driver
81702e6014SWolfgang DenkCONFIG_CF_DOMII		-- enable to use MII feature in cmd_mii.c
82702e6014SWolfgang DenkCONFIG_SYS_DISCOVER_PHY	-- enable PHY discovery
83702e6014SWolfgang DenkCONFIG_SYS_RX_ETH_BUFFER	-- Set FEC Receive buffer
84702e6014SWolfgang DenkCONFIG_SYS_FAULT_ECHO_LINK_DOWN--
85702e6014SWolfgang DenkCONFIG_SYS_FEC0_PINMUX		-- Set FEC0 Pin configuration
86702e6014SWolfgang DenkCONFIG_SYS_FEC0_MIIBASE	-- Set FEC0 MII base register
87702e6014SWolfgang DenkMCFFEC_TOUT_LOOP	-- set FEC timeout loop
88702e6014SWolfgang Denk
89702e6014SWolfgang DenkCONFIG_MCFTMR		-- define to use DMA timer
90702e6014SWolfgang DenkCONFIG_MCFPIT		-- define to use PIT timer
91702e6014SWolfgang Denk
9200f792e0SHeiko SchocherCONFIG_SYS_I2C_FSL	-- define to use FSL common I2C driver
93ea818dbbSHeiko SchocherCONFIG_SYS_I2C_SOFT	-- define for I2C bit-banged
94702e6014SWolfgang DenkCONFIG_SYS_I2C_SPEED		-- define for I2C speed
95702e6014SWolfgang DenkCONFIG_SYS_I2C_SLAVE		-- define for I2C slave address
96702e6014SWolfgang DenkCONFIG_SYS_I2C_OFFSET		-- define for I2C base address offset
97702e6014SWolfgang DenkCONFIG_SYS_IMMR		-- define for MBAR offset
98702e6014SWolfgang Denk
99702e6014SWolfgang DenkCONFIG_SYS_MBAR		-- define MBAR offset
100702e6014SWolfgang Denk
101702e6014SWolfgang DenkCONFIG_MONITOR_IS_IN_RAM -- Not support
102702e6014SWolfgang Denk
103702e6014SWolfgang DenkCONFIG_SYS_INIT_RAM_ADDR	-- defines the base address of the MCF5373 internal SRAM
104702e6014SWolfgang Denk
105702e6014SWolfgang DenkCONFIG_SYS_CSn_BASE	-- defines the Chip Select Base register
106702e6014SWolfgang DenkCONFIG_SYS_CSn_MASK	-- defines the Chip Select Mask register
107702e6014SWolfgang DenkCONFIG_SYS_CSn_CTRL	-- defines the Chip Select Control register
108702e6014SWolfgang Denk
109702e6014SWolfgang DenkCONFIG_SYS_SDRAM_BASE	-- defines the DRAM Base
110702e6014SWolfgang Denk
111702e6014SWolfgang Denk2. MEMORY MAP UNDER U-BOOT AND LINUX KERNEL
112702e6014SWolfgang Denk===========================================
113702e6014SWolfgang Denk2.1. System memory map:
114702e6014SWolfgang Denk	Flash:		0x00000000-0x3FFFFFFF (1024MB)
115702e6014SWolfgang Denk	DDR:		0x40000000-0x7FFFFFFF (1024MB)
116702e6014SWolfgang Denk	SRAM:		0x80000000-0x8FFFFFFF (256MB)
117702e6014SWolfgang Denk	IP:		0xF0000000-0xFFFFFFFF (256MB)
118702e6014SWolfgang Denk
119*a187559eSBin Meng2.2. For the initial bringup, we adopted a consistent memory scheme between U-Boot and
120702e6014SWolfgang Denk	linux kernel, you can customize it based on your system requirements:
121702e6014SWolfgang Denk	Flash0:		0x00000000-0x00FFFFFF (16MB)
122702e6014SWolfgang Denk
123702e6014SWolfgang Denk	DDR:		0x40000000-0x4FFFFFFF (256MB)
124702e6014SWolfgang Denk	SRAM:		0x80000000-0x80007FFF (32KB)
125702e6014SWolfgang Denk	IP:		0xFC000000-0xFC0FFFFF (64KB)
126702e6014SWolfgang Denk
127702e6014SWolfgang Denk3. COMPILATION
128702e6014SWolfgang Denk==============
129702e6014SWolfgang Denk3.1	To create U-Boot the gcc-4.1-xx compiler set (ColdFire ELF or
130702e6014SWolfgang DenkuClinux version) from codesourcery.com was used. Download it from:
131702e6014SWolfgang Denkhttp://www.codesourcery.com/gnu_toolchains/coldfire/download.html
132702e6014SWolfgang Denk
133702e6014SWolfgang Denk3.2 Compilation
134702e6014SWolfgang Denk   export CROSS_COMPILE=cross-compile-prefix
135702e6014SWolfgang Denk   cd u-boot-1.x.x
136702e6014SWolfgang Denk   make distclean
137702e6014SWolfgang Denk   make M5373EVB_config
138702e6014SWolfgang Denk   make
139702e6014SWolfgang Denk
140702e6014SWolfgang Denk4. SCREEN DUMP
141702e6014SWolfgang Denk==============
142702e6014SWolfgang Denk4.1 M5373EVB Development board
143702e6014SWolfgang Denk    (NOTE: May not show exactly the same)
144702e6014SWolfgang Denk
145702e6014SWolfgang DenkU-Boot 1.3.0 (Nov 8 2007 - 12:44:08)
146702e6014SWolfgang Denk
147702e6014SWolfgang DenkCPU:   Freescale MCF5373 (Mask:65 Version:1)
148702e6014SWolfgang Denk       CPU CLK 240 Mhz BUS CLK 80 Mhz
149702e6014SWolfgang DenkBoard: Freescale FireEngine 5373 EVB
150702e6014SWolfgang DenkI2C:   ready
151702e6014SWolfgang DenkDRAM:  32 MB
152702e6014SWolfgang DenkFLASH: 2 MB
153702e6014SWolfgang DenkIn:    serial
154702e6014SWolfgang DenkOut:   serial
155702e6014SWolfgang DenkErr:   serial
156702e6014SWolfgang DenkNAND:  16 MiB
157702e6014SWolfgang DenkNet:   FEC0
158702e6014SWolfgang Denk-> print
159702e6014SWolfgang Denkbootdelay=1
160702e6014SWolfgang Denkbaudrate=115200
161702e6014SWolfgang Denkethaddr=00:e0:0c:bc:e5:60
162702e6014SWolfgang Denkhostname=M5373EVB
163702e6014SWolfgang Denknetdev=eth0
164702e6014SWolfgang Denkloadaddr=40010000
165702e6014SWolfgang Denkload=tftp ${loadaddr) ${u-boot}
166702e6014SWolfgang Denkupd=run load; run prog
167702e6014SWolfgang Denkprog=prot off 0 2ffff;era 0 2ffff;cp.b ${loadaddr} 0 ${filesize};save
168702e6014SWolfgang Denkethact=FEC0
169702e6014SWolfgang Denku-boot=u-boot.bin
170702e6014SWolfgang Denkgatewayip=192.168.1.1
171702e6014SWolfgang Denknetmask=255.255.255.0
172702e6014SWolfgang Denkipaddr=192.168.1.3
173702e6014SWolfgang Denkserverip=192.168.1.2
174702e6014SWolfgang Denkstdin=serial
175702e6014SWolfgang Denkstdout=serial
176702e6014SWolfgang Denkstderr=serial
177702e6014SWolfgang Denkmem=261632k
178702e6014SWolfgang Denk
179702e6014SWolfgang DenkEnvironment size: 401/8188 bytes
180702e6014SWolfgang Denk-> bdinfo
181702e6014SWolfgang Denkmemstart    = 0x40000000
182702e6014SWolfgang Denkmemsize     = 0x02000000
183702e6014SWolfgang Denkflashstart  = 0x00000000
184702e6014SWolfgang Denkflashsize   = 0x00200000
185702e6014SWolfgang Denkflashoffset = 0x00000000
186702e6014SWolfgang Denksramstart   = 0x80000000
187702e6014SWolfgang Denksramsize    = 0x00008000
188702e6014SWolfgang Denkmbar	    = 0xFC000000
189702e6014SWolfgang Denkbusfreq     =	  80 MHz
190702e6014SWolfgang Denkethaddr     = 00:E0:0C:BC:E5:60
191702e6014SWolfgang Denkip_addr     = 192.168.1.3
192702e6014SWolfgang Denkbaudrate    = 115200 bps
193702e6014SWolfgang Denk->
194702e6014SWolfgang Denk-> help
195702e6014SWolfgang Denk?	- alias for 'help'
196702e6014SWolfgang Denkbase	- print or set address offset
197702e6014SWolfgang Denkbdinfo	- print Board Info structure
198702e6014SWolfgang Denkboot	- boot default, i.e., run 'bootcmd'
199702e6014SWolfgang Denkbootd	- boot default, i.e., run 'bootcmd'
200702e6014SWolfgang Denkbootelf - Boot from an ELF image in memory
201702e6014SWolfgang Denkbootm	- boot application image from memory
202702e6014SWolfgang Denkbootp	- boot image via network using BootP/TFTP protocol
203702e6014SWolfgang Denkbootvx	- Boot vxWorks from an ELF image
204702e6014SWolfgang Denkcmp	- memory compare
205702e6014SWolfgang Denkconinfo - print console devices and information
206702e6014SWolfgang Denkcp	- memory copy
207702e6014SWolfgang Denkcrc32	- checksum calculation
208702e6014SWolfgang Denkdate	- get/set/reset date & time
209702e6014SWolfgang Denkdcache	- enable or disable data cache
210702e6014SWolfgang Denkecho	- echo args to console
211702e6014SWolfgang Denkerase	- erase FLASH memory
212702e6014SWolfgang Denkflinfo	- print FLASH memory information
213702e6014SWolfgang Denkgo	- start application at address 'addr'
214702e6014SWolfgang Denkhelp	- print online help
215702e6014SWolfgang Denki2c	- I2C sub-system
216702e6014SWolfgang Denkicache	- enable or disable instruction cache
217702e6014SWolfgang Denkiminfo	- print header information for application image
218702e6014SWolfgang Denkimls	- list all images found in flash
219702e6014SWolfgang Denkitest	- return true/false on integer compare
220702e6014SWolfgang Denkloadb	- load binary file over serial line (kermit mode)
221702e6014SWolfgang Denkloads	- load S-Record file over serial line
222702e6014SWolfgang Denkloady	- load binary file over serial line (ymodem mode)
223702e6014SWolfgang Denkloop	- infinite loop on address range
224702e6014SWolfgang Denkls	- list files in a directory (default /)
225702e6014SWolfgang Denkmd	- memory display
226702e6014SWolfgang Denkmii	- MII utility commands
227702e6014SWolfgang Denkmm	- memory modify (auto-incrementing)
228702e6014SWolfgang Denkmtest	- simple RAM test
229702e6014SWolfgang Denkmw	- memory write (fill)
230702e6014SWolfgang Denknand	- NAND sub-system
231702e6014SWolfgang Denknboot	- boot from NAND device
232702e6014SWolfgang Denknfs	- boot image via network using NFS protocol
233702e6014SWolfgang Denknm	- memory modify (constant address)
234702e6014SWolfgang Denkping	- send ICMP ECHO_REQUEST to network host
235702e6014SWolfgang Denkprintenv- print environment variables
236702e6014SWolfgang Denkprotect - enable or disable FLASH write protection
237702e6014SWolfgang Denkrarpboot- boot image via network using RARP/TFTP protocol
238702e6014SWolfgang Denkreset	- Perform RESET of the CPU
239702e6014SWolfgang Denkrun	- run commands in an environment variable
240702e6014SWolfgang Denksaveenv - save environment variables to persistent storage
241702e6014SWolfgang Denksetenv	- set environment variables
242702e6014SWolfgang Denksleep	- delay execution for some time
243702e6014SWolfgang Denksource	- run script from memory
244702e6014SWolfgang Denktftpboot- boot image via network using TFTP protocol
245702e6014SWolfgang Denkversion - print monitor version
246702e6014SWolfgang Denk-> tftp 0x40800000 uImage
247702e6014SWolfgang DenkUsing FEC0 device
248702e6014SWolfgang DenkTFTP from server 192.168.1.3; our IP address is 192.168.1.3 Filename 'uImage'.
249702e6014SWolfgang DenkLoad address: 0x40800000
250702e6014SWolfgang DenkLoading: #################################################################
251702e6014SWolfgang Denk	  #################################################################
252702e6014SWolfgang Denk	  ##########
253702e6014SWolfgang Denkdone
254702e6014SWolfgang DenkBytes transferred = 2053270 (1f5496 hex)
255702e6014SWolfgang Denk-> bootm 0x40800000
256702e6014SWolfgang Denk## Booting image at 40800000 ...
257702e6014SWolfgang Denk    Image Name:   Linux Kernel Image
258702e6014SWolfgang Denk    Created:	  2007-11-07  20:33:08 UTC
259702e6014SWolfgang Denk    Image Type:   M68K Linux Kernel Image (gzip compressed)
260702e6014SWolfgang Denk    Data Size:	  2053206 Bytes =  2 MB
261702e6014SWolfgang Denk    Load Address: 40020000
262702e6014SWolfgang Denk    Entry Point:  40020000
263702e6014SWolfgang Denk    Verifying Checksum ... OK
264702e6014SWolfgang Denk    Uncompressing Kernel Image ... OK
265702e6014SWolfgang DenkLinux version 2.6.22-uc1 (mattw@loa) (gcc version 4.2.1 (Sourcery G++ Lite 4.2-7
266702e6014SWolfgang Denk
267702e6014SWolfgang Denk
268702e6014SWolfgang DenkuClinux/COLDFIRE(m537x)
269702e6014SWolfgang DenkCOLDFIRE port done by Greg Ungerer, gerg@snapgear.com Flat model support (C) 1998,1999 Kenneth Albanowski, D. Jeff Dionne Built 1 zonelists.  Total pages: 8128 Kernel command line: rootfstype=romfs PID hash table entries: 128 (order: 7, 512 bytes) Dentry cache hash table entries: 4096 (order: 2, 16384 bytes) Inode-cache hash table entries: 2048 (order: 1, 8192 bytes) Memory available: 28092k/32768k RAM, (1788k kernel code, 244k data) Mount-cache hash table entries: 512
270702e6014SWolfgang DenkNET: Registered protocol family 16
271702e6014SWolfgang DenkUSB-MCF537x: (HOST module) EHCI device is registered
272702e6014SWolfgang DenkUSB-MCF537x: (OTG module) EHCI device is registered
273702e6014SWolfgang DenkUSB-MCF537x: (OTG module) UDC device is registered
274702e6014SWolfgang Denkusbcore: registered new interface driver usbfs
275702e6014SWolfgang Denkusbcore: registered new interface driver hub
276702e6014SWolfgang Denkusbcore: registered new device driver usb
277702e6014SWolfgang DenkNET: Registered protocol family 2
278702e6014SWolfgang DenkIP route cache hash table entries: 1024 (order: 0, 4096 bytes) TCP established hash table entries: 1024 (order: 1, 8192 bytes) TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
279702e6014SWolfgang DenkTCP: Hash tables configured (established 1024 bind 1024) TCP reno registered
280702e6014SWolfgang DenkJFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
281702e6014SWolfgang Denkio scheduler noop registered
282702e6014SWolfgang Denkio scheduler cfq registered (default)
283702e6014SWolfgang DenkColdFire internal UART serial driver version 1.00 ttyS0 at 0xfc060000 (irq = 90) is a builtin ColdFire UART
284702e6014SWolfgang DenkttyS1 at 0xfc064000 (irq = 91) is a builtin ColdFire UART
285702e6014SWolfgang DenkttyS2 at 0xfc068000 (irq = 92) is a builtin ColdFire UART RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
286702e6014SWolfgang Denkloop: module loaded
287702e6014SWolfgang Denknbd: registered device at major 43
288702e6014SWolfgang Denkusbcore: registered new interface driver ub FEC ENET Version 0.2
289702e6014SWolfgang Denkfec: PHY @ 0x1, ID 0x20005c90 -- DP83848
290702e6014SWolfgang Denketh0: ethernet 00:e0:0c:bc:e5:60
291702e6014SWolfgang Denkuclinux[mtd]: RAM probe address=0x4021c22c size=0x22b000 Creating 1 MTD partitions on "RAM":
292702e6014SWolfgang Denk0x00000000-0x0022b000 : "ROMfs"
293702e6014SWolfgang Denkuclinux[mtd]: set ROMfs to be root filesystem NAND device: Manufacturer ID: 0x20, Chip ID: 0x73 (ST Micro NAND 16MiB 3,3V 8-b) Scanning device for bad blocks Creating 1 MTD partitions on "NAND 16MiB 3,3V 8-bit":
294702e6014SWolfgang Denk0x00000000-0x01000000 : "M53xx flash partition 1"
295702e6014SWolfgang DenkQSPI: spi->max_speed_hz 300000
296702e6014SWolfgang DenkQSPI: Baud set to 255
297702e6014SWolfgang DenkSPI: Coldfire master initialized
298702e6014SWolfgang DenkM537x - Disable UART1 when using Audio
299702e6014SWolfgang Denkudc: Freescale MCF53xx UDC driver version 27 October 2006 init
300702e6014SWolfgang Denkudc: MCF53xx USB Device is found. ID=0x5 Rev=0x41 i2c /dev entries driver
301702e6014SWolfgang Denkusbcore: registered new interface driver usbhid
302702e6014SWolfgang Denkdrivers/hid/usbhid/hid-core.c: v2.6:USB HID core driver TCP cubic registered
303702e6014SWolfgang DenkNET: Registered protocol family 1
304702e6014SWolfgang DenkNET: Registered protocol family 17
305702e6014SWolfgang DenkVFS: Mounted root (romfs filesystem) readonly.
306702e6014SWolfgang DenkFreeing unused kernel memory: 64k freed (0x401f5000 - 0x40204000) init started:  BusyBox v1.00 (2007.11.07-19:57+0000) multi-call binary?Setting e Mounting filesystems
307702e6014SWolfgang Denkmount: Mounting devpts on /dev/pts failed: No such device
308702e6014SWolfgang Denkmount: Mounting usbfs on /proc/bus/usb failed: No such file or directory Starting syslogd and klogd Setting up networking on loopback device:
309702e6014SWolfgang DenkSetting up networking on eth0:
310702e6014SWolfgang Denkinfo, udhcpc (v0.9.9-pre) started
311702e6014SWolfgang Denketh0: config: auto-negotiation on, 100FDX, 100HDX, 10FDX, 10HDX.
312702e6014SWolfgang Denkdebug, Sending discover...
313702e6014SWolfgang Denkdebug, Sending discover...
314702e6014SWolfgang Denkdebug, Sending select for 172.27.0.130...
315702e6014SWolfgang Denkinfo, Lease of 172.27.0.130 obtained, lease time 43200 deleting routers
316702e6014SWolfgang Denkroute: SIOC[ADD|DEL]RT: No such process
317702e6014SWolfgang Denkadding dns 172.27.0.1
318702e6014SWolfgang DenkStarting the boa webserver:
319702e6014SWolfgang DenkSetting time from ntp server: ntp.cs.strath.ac.uk
320702e6014SWolfgang Denkntp.cs.strath.ac.uk: Unknown host
321702e6014SWolfgang Denk
322702e6014SWolfgang Denk
323702e6014SWolfgang DenkBusyBox v1.00 (2007.11.07-19:57+0000) Built-in shell (msh) Enter 'help' for a list of built-in commands.
324702e6014SWolfgang Denk
325702e6014SWolfgang Denk#
326