Skip to content

Instantly share code, notes, and snippets.

@rokuyama
Created May 5, 2022 05:21
Show Gist options
  • Save rokuyama/f133ce4bba576e07ad34a54058dcba39 to your computer and use it in GitHub Desktop.
Save rokuyama/f133ce4bba576e07ad34a54058dcba39 to your computer and use it in GitHub Desktop.
U-Boot 1.1.4 (Feb 16 2006 - 17:15:06)
CPU: AMCC PowerPC 405GP Rev. E at 266.640 MHz (PLB=66, OPB=33, EBC=33 MHz)
Internal PCI arbiter enabled, PCI async ext clock used
16 kB I-Cache 8 kB D-Cache
Board: DHT Walnut
I2C: ready
DRAM: 128 MB
FLASH: 512 kB
PCI: Bus Dev VenId DevId Class Int
01 00 144d a800 0106 1d
00 02 12d8 e111 0604 1b
00 03 8086 1076 0200 1c
00 04 105a 0d30 0101 1d
In: serial
Out: serial
Err: serial
Net: ppc_4xx_eth0
IDE: Bus 0: OK
Device 0: not available
Device 1: not available
BEDBUG:ready
Hit any key to stop autoboot: 0
=> printenv
baudrate=115200
loads_echo=1
netdev=eth0
hostname=walnut
nfsargs=setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${rootpath}
ramargs=setenv bootargs root=/dev/ram rw
addip=setenv bootargs ${bootargs} ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}:${netdev}:off panic=1
addtty=setenv bootargs ${bootargs} console=ttyS0,${baudrate}
flash_nfs=run nfsargs addip addtty;bootm ${kernel_addr}
flash_self=run ramargs addip addtty;bootm ${kernel_addr} ${ramdisk_addr}
net_nfs=tftp 200000 ${bootfile};run nfsargs addip addtty;bootm
rootpath=/opt/eldk/ppc_4xx
bootfile=/tftpboot/walnut/uImage
kernel_addr=fff80000
ramdisk_addr=fff80000
load=tftp 100000 /tftpboot/walnut/u-boot.bin
update=protect off fffc0000 ffffffff;era fffc0000 ffffffff;cp.b 100000 fffc0000 40000;setenv filesize;saveenv
upd=run load;run update
ethact=ppc_4xx_eth0
bootargs=root=/dev/hda2 console=ttyS0,115200
serverip=192.168.10.128
ipaddr=192.168.10.180
autostart=no
bootdelay=3
ethaddr=de:ad:be:ef:00:00
bootcmd=tftp 100000 dht.bin; go 100000
stdin=serial
stdout=serial
stderr=serial
ver=U-Boot 1.1.4 (Feb 16 2006 - 17:15:06)
Environment size: 1107/16379 bytes
=> tftp 100000 dht.bin
ENET Speed is 100 Mbps - FULL duplex connection
Using ppc_4xx_eth0 device
TFTP from server 192.168.10.128; our IP address is 192.168.10.180
Filename 'dht.bin'.
Load address: 0x100000
Loading: #################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
###########
done
Bytes transferred = 6377424 (614fd0 hex)
=> go 100000
## Starting application at 0x00100000 ...
[ 1.0000000] +8000000,
[ 1.0000000] 00100000-08000000 -> 00720000-08000000 = 78e0000
[ 1.0000000] [ Kernel symbol table missing! ]
[ 1.0000000] Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
[ 1.0000000] 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017,
[ 1.0000000] 2018, 2019, 2020, 2021, 2022
[ 1.0000000] The NetBSD Foundation, Inc. All rights reserved.
[ 1.0000000] Copyright (c) 1982, 1986, 1989, 1991, 1993
[ 1.0000000] The Regents of the University of California. All rights reserved.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment