- UID
- 19128
- 性别
- 男
|
vivi> boot smc kernel
Copy linux kernel from 0x00030000 to 0x30008000, size = 0x00170000 ... done
zImage magic = 0x016f2818
Setup linux parameters at 0x30000100
linux command line is: "noinitrd root=/dev/bon/2 init=/linuxrc console=ttyS0"
MACH_TYPE = 193
NOW, Booting Linux......
Uncompressing Linux............................................... done, booting
the kernel.
Linux version 2.4.18-rmk7-pxa1 (root@localhost.localdomain) (gcc version 2.95.2
20000516 (release) [Rebel.com]) #2 Îå 8ÔÂ 6 23:53:20 HKT 2004
CPU: ARM/CIRRUS Arm920Tsid(wb) revision 0
Machine: Samsung-SMDK2410
On node 0 totalpages: 16384
zone(0): 16384 pages.
zone(1): 0 pages.
zone(2): 0 pages.
Kernel command line: noinitrd root=/dev/bon/2 init=/linuxrc console=ttyS0
DEBUG: timer count 15626
Console: colour dummy device 80x30
Calibrating delay loop... 99.94 BogoMIPS
Memory: 64MB = 64MB total
Memory: 62880KB available (1226K code, 295K data, 64K init)
Dentry-cache hash table entries: 8192 (order: 4, 65536 bytes)
Inode-cache hash table entries: 4096 (order: 3, 32768 bytes)
Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
Buffer-cache hash table entries: 4096 (order: 2, 16384 bytes)
Page-cache hash table entries: 16384 (order: 4, 65536 bytes)
POSIX conformance testing by UNIFIX
Linux NET4.0 for Linux 2.4
Based upon Swansea University Computer Society NET3.039
Initializing RT netlink socket
CPU clock = 200.000 Mhz, HCLK = 100.000 Mhz, PCLK = 50.000 Mhz
Starting kswapd
devfs: v1.10 (20020120) Richard Gooch (rgooch@atnf.csiro.au)
devfs: boot_options: 0x1
ttyS%d0 at I/O 0x50000000 (irq = 52) is a S3C2410
ttyS%d1 at I/O 0x50004000 (irq = 55) is a S3C2410
ttyS%d2 at I/O 0x50008000 (irq = 58) is a S3C2410
Console: switching to colour frame buffer device 30x40
Installed S3C2410 frame buffer
pty: 256 Unix98 ptys configured
s3c2410-ts initialized
S3C2410 Real Time Clock Driver v0.1
block: 128 slots per queue, batch=32
eth0: cs8900 rev J(3.3 Volts) found at 0xd0000300
cs89x0 media RJ-45, IRQ 37
UDA1341 audio driver initialized
NAND device: Manufacture ID: 0xec, Chip ID: 0x76 (Samsung K9D1208V0M)
bon0: 00000000-00030000 (00030000) 00000000
bon1: 00030000-0017c000 (0014c000) 00000000
bon2: 00180000-02000000 (01e80000) 00000000
bon3: 02000000-03ff8000 (01ff8000) 00000001
NET4: Linux TCP/IP 1.0 for NET4.0
IP Protocols: ICMP, UDP, TCP, IGMP
IP: routing cache hash table of 512 buckets, 4Kbytes
TCP: Hash tables configured (established 4096 bind 4096)
NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
NetWinder Floating Point Emulator V0.95 (c) 1998-1999 Rebel.com
VFS: Mounted root (cramfs filesystem).
Mounted devfs on /dev
Freeing init memory: 64K
mount /etc as ramfs
re-create the /etc/mtab entries
console=/dev/cosole
init started: BusyBox v0.60.3 (2002.05.13-08:36+0000) multi-call binary
Starting pid 16, console /dev/console: '/etc/init.d/rcS'
modprobe: modprobe: Can't open dependencies file /lib/modules/2.4.18-rmk7-pxa1/m
odules.dep (No such file or directory)
mount: Mounting /dev/mtdblock/1 on /usr failed: No such device
exec: /usr/etc/rc.local: No such file r directory
Waiting for enter to start '/bin/sh' (pid 20, terminal /dev/console)
Please press Enter to activate this console.
Starting pid 20, console /dev/console: '/bin/sh'
BusyBox v0.60.3 (2002.05.13-08:36+0000) Built-in shell (ash)
Enter 'help' for a list of built-in commands.
#
看看Busybox中集成了哪些命令和实用工具。:)
# ls
bin etc linuette mnt qt tmp var
dev lib linuxrc proc sbin usr
#
# cd bin
# ls
[ date grep ln ping sync uptime
basename dd gunzip login ps sz usleep
busybox df gzip ls pwd tail vi
cat dmesg head mkdir rdate tar wget
chgrp du hostname mknod rm telnet zcat
chmod echo irattach more rmdir test
chown env irdadump mount rz time
clear expr irdaping mv sed true
cp false kill netstat sh umount
cut free killall obex_test sleep uname
#
# cd sbin
# ls
cardmgr ifconfig inetd ksyms pump route
depmod ifport init lnx_init pump.sh
fuser ifuser insmod lsmod reboot
halt in.telnetd kallsyms modprobe rmmod
#
看看配置文件有哪些。
# cd etc
# ls
fstab init.d passwd resolv.conf
group login.defs pcmcia services
hosts modules.conf ppp tmp
inetd.conf mtab protocols var
#
看看启动了哪些网络服务。
# more inetd.conf
#
#ftp stream tcp nowait root /usr/sbin/tcpd in.ftpd -l -a
telnet stream tcp nowait root /sbin/in.telnetd in.telnetd
# |
|