Created
March 25, 2014 18:08
-
-
Save tfheen/9767652 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| U-Boot 2013.04-dirty (Jul 10 2013 - 14:02:53) | |
| I2C: ready | |
| DRAM: 512 MiB | |
| WARNING: Caches not enabled | |
| NAND: No NAND device found!!! | |
| 0 MiB | |
| MMC: OMAP SD/MMC: 0, OMAP SD/MMC: 1 | |
| *** Warning - readenv() failed, using default environment | |
| musb-hdrc: ConfigData=0xde (UTMI-8, dyn FIFOs, HB-ISO Rx, HB-ISO Tx, SoftConn) | |
| musb-hdrc: MHDRC RTL version 2.0 | |
| musb-hdrc: setup fifo_mode 4 | |
| musb-hdrc: 28/31 max ep, 16384/16384 memory | |
| USB Peripheral mode controller at 47401000 using PIO, IRQ 0 | |
| musb-hdrc: ConfigData=0xde (UTMI-8, dyn FIFOs, HB-ISO Rx, HB-ISO Tx, SoftConn) | |
| musb-hdrc: MHDRC RTL version 2.0 | |
| musb-hdrc: setup fifo_mode 4 | |
| musb-hdrc: 28/31 max ep, 16384/16384 memory | |
| USB Host mode controller at 47401800 using PIO, IRQ 0 | |
| Net: <ethaddr> not set. Validating first E-fuse MAC | |
| cpsw, usb_ether | |
| Hit any key to stop autoboot: 0 | |
| gpio: pin 53 (gpio 53) value is 1 | |
| mmc0 is current device | |
| micro SD card found | |
| mmc0 is current device | |
| gpio: pin 54 (gpio 54) value is 1 | |
| SD/MMC found on device 0 | |
| reading uEnv.txt | |
| 1039 bytes read in 5 ms (202.1 KiB/s) | |
| Loaded environment from uEnv.txt | |
| Importing environment from mmc ... | |
| Running uenvcmd ... | |
| reading zImage | |
| 2709224 bytes read in 312 ms (8.3 MiB/s) | |
| reading uInitrd | |
| 10576278 bytes read in 1204 ms (8.4 MiB/s) | |
| reading /dtbs/am335x-boneblack.dtb | |
| 17911 bytes read in 10 ms (1.7 MiB/s) | |
| ## Flattened Device Tree blob at 80f80000 | |
| Booting using the fdt blob at 0x80f80000 | |
| Loading Ramdisk to 9e821000, end 9f237196 ... OK | |
| Using Device Tree in place at 80f80000, end 80f875f6 | |
| Starting kernel ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # cat uEnv.txt | |
| #u-boot eMMC specific overrides; Angstrom Distribution (BeagleBone Black) 2013-06-20 | |
| kernel_file=zImage | |
| initrd_file=uInitrd | |
| loadzimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${kernel_file} | |
| loadinitrd=load mmc ${mmcdev}:${mmcpart} 0x81000000 ${initrd_file}; setenv initrd_size ${filesize} | |
| loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdtaddr} /dtbs/${fdtfile} | |
| # | |
| console=ttyO0,115200n8 | |
| mmcroot=/dev/mmcblk1p2 ro | |
| mmcrootfstype=ext4 rootwait fixrtc | |
| ##To disable HDMI/eMMC... | |
| #optargs=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN,BB-BONE-EMMC-2G | |
| ##3.1MP Camera Cape | |
| #optargs=capemgr.disable_partno=BB-BONE-EMMC-2G | |
| mmcargs=setenv bootargs console=${console} root=${mmcroot} rootfstype=${mmcrootfstype} ${optargs} | |
| #zImage: | |
| #uenvcmd=run loadzimage; run loadfdt; run mmcargs; bootz ${loadaddr} - ${fdtaddr} | |
| #zImage + uInitrd: where uInitrd has to be generated on the running system. | |
| boot_fdt=run loadzimage; run loadinitrd; run loadfdt | |
| uenvcmd=run boot_fdt; run mmcargs; bootz ${loadaddr} 0x81000000:${initrd_size} ${fdtaddr} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment