Difference between revisions of "EBC Boot Sequence"

From eLinux.org
Jump to: navigation, search
m (U-Boot help: Updated for Fall 2014)
m (systemd: Cleaned up ESC's)
 
(10 intermediate revisions by the same user not shown)
Line 160: Line 160:
 
  U-Boot# '''help boot'''
 
  U-Boot# '''help boot'''
 
  boot - boot default, i.e., run 'bootcmd'
 
  boot - boot default, i.e., run 'bootcmd'
  U-boot# '''print bootcmd'''
+
  bootcmd=if mmc rescan; then echo SD/MMC found on device ${mmc_dev};  
+
Usage:
if run loadbootenv; then echo Loaded environment from ${bootenv};run importbootenv;fi;
+
boot
if test -n $uenvcmd; then echo Running uenvcmd ...;run uenvcmd;fi;
+
  U-Boot# '''print bootcmd'''
  if run mmc_load_uimage_ext4; then run mmc_args;bootm ${kloadaddr};fi;fi;run nand_boot;
+
  bootcmd=gpio set 53; i2c mw 0x24 1 0x3e; run findfdt; setenv mmcdev 0; setenv bootpart 0:1;
 +
run mmcboot;gpio clear 56; gpio clear 55; gpio clear 54; setenv mmcdev 1; setenv bootpart 1:1;
 +
  run mmcboot;run nandboot;
  
Figure out what's happening above by 'pretty printing' '''bootcmd'''.  That is, properly format the code so you can follow the flow. Submit this as part of this assignment's memo.
+
Figure out what's happening above by 'pretty printing' '''bootcmd'''.  That is, properly format the code so you can follow the flow.
  if mmc rescan; then
+
gpio set 53;
   echo SD/MMC found on device ${mmc_dev}; ''Find out what mmc_dev is and fill it in''
+
i2c mw 0x24 1 0x3e;
   if run loadbootenv; then  
+
run findfdt;
    echo Loaded environment from ${bootenv};
+
    run importbootenv;
+
setenv mmcdev 0;
 +
setenv bootpart 0:1;
 +
run mmcboot;
 +
 +
gpio clear 56;
 +
gpio clear 55;
 +
gpio clear 54;
 +
setenv mmcdev 1;
 +
setenv bootpart 1:1;
 +
run mmcboot;
 +
run nandboot;
 +
 
 +
You can dig further by printing the scripts being run. For example the '''findfdt''' script.
 +
U-Boot# '''print findfdt'''
 +
findfdt=
 +
if test $board_name = A335BONE;
 +
    then
 +
    setenv fdtfile am335x-bone.dtb;
 +
    setenv fdtbase am335x-bone;
 +
    fi;
 +
if test $board_name = A335BNLT;
 +
    then
 +
    setenv fdtfile am335x-boneblack.dtb;
 +
    setenv fdtbase am335x-boneblack;
 +
    fi;
 +
if test $board_name = A33515BB;
 +
    then
 +
    setenv fdtfile am335x-evm.dtb;
 +
    fi;
 +
if test $board_name = A335X_SK;
 +
    then
 +
    setenv fdtfile am335x-evmsk.dtb;
 +
    fi;
 +
if test $fdtfile = undefined;
 +
    then echo WARNING: Could not determine device tree to use;
 +
    fi;
 +
 
 +
Or take a look at '''mmcboot'''
 +
 
 +
mmcboot=
 +
mmc dev ${mmcdev};
 +
  if mmc rescan;
 +
  then  
 +
  gpio set 54;
 +
   echo SD/MMC found on device ${mmcdev};
 +
  setenv bootpart ${mmcdev}:1;
 +
  echo Checking for: /uEnv.txt ...;
 +
   if test -e mmc ${bootpart} /uEnv.txt;
 +
      then
 +
      if run loadbootenv;
 +
        then  
 +
        gpio set 55;
 +
        echo Loaded environment from ${bootenv};
 +
        run importbootenv;
 +
        fi;
 +
      if test -n ${cape};
 +
        then
 +
        if test -e mmc ${bootpart} ${fdtdir}/${fdtbase}-${cape}.dtb;
 +
            then
 +
            setenv fdtfile ${fdtbase}-${cape}.dtb;
 +
            fi;
 +
        echo using: $fdtfile...;
 +
        fi;
 +
      echo Checking if uenvcmd is set ...;
 +
      if test -n ${uenvcmd};
 +
        then
 +
        gpio set 56;
 +
        echo Running uenvcmd ...;
 +
        run uenvcmd;
 +
        fi;
 +
      echo Checking if client_ip is set ...;
 +
      if test -n ${client_ip};
 +
        then
 +
        if test -n ${dtb};
 +
            then
 +
            setenv fdtfile ${dtb};
 +
            echo using ${fdtfile} ...;
 +
            fi;
 +
        gpio set 56;
 +
        echo Running nfsboot ...;
 +
        run nfsboot;
 +
        fi;
 +
      fi;
 +
  echo Checking for: /${script} ...;
 +
  if test -e mmc ${bootpart} /${script};
 +
      then
 +
      gpio set 55;
 +
      setenv scriptfile ${script};
 +
      run loadbootscript;
 +
      echo Loaded script from ${scriptfile};
 +
      gpio set 56;
 +
      run bootscript;
 +
      fi;
 +
  echo Checking for: /boot/${script} ...;
 +
  if test -e mmc ${bootpart} /boot/${script};
 +
      then
 +
      gpio set 55;
 +
      setenv scriptfile /boot/${script};
 +
      run loadbootscript;
 +
      echo Loaded script from ${scriptfile};
 +
      gpio set 56;
 +
      run bootscript;
 +
      fi;
 +
  echo Checking for: /boot/uEnv.txt ...;
 +
  for i in 1 2 3 4 5 6 7 ;
 +
      do setenv mmcpart ${i};
 +
      setenv bootpart ${mmcdev}:${mmcpart};
 +
      if test -e mmc ${bootpart} /boot/uEnv.txt;
 +
        then
 +
        gpio set 55;
 +
        load mmc ${bootpart} ${loadaddr} /boot/uEnv.txt;
 +
        env import -t ${loadaddr} ${filesize};
 +
        echo Loaded environment from /boot/uEnv.txt;
 +
        if test -n ${dtb};
 +
            then
 +
            setenv fdtfile ${dtb};
 +
            echo Using: dtb=${fdtfile} ...;
 +
            fi;
 +
        echo Checking if uname_r is set in /boot/uEnv.txt...;
 +
        if test -n ${uname_r};
 +
            then
 +
            gpio set 56;
 +
            echo Running uname_boot ...;
 +
            setenv mmcroot /dev/mmcblk${mmcdev}p${mmcpart} ro;
 +
            run uname_boot;
 +
            fi;
 +
        fi;
 +
      done;
 
   fi;
 
   fi;
... and so on.
 
  
 
== U-Boot print ==
 
== U-Boot print ==
 
It might be helpful to print the contents of all the variables and save it for future reference.
 
It might be helpful to print the contents of all the variables and save it for future reference.
  U-boot# print
+
  U-boot# '''print'''
  autoload=yes
+
  arch=arm
 +
autoconf=off
 
  baudrate=115200
 
  baudrate=115200
  bootargs_defaults=setenv bootargs console=${console} ${optargs}
+
  board=am335x
  bootcmd=if mmc rescan; then echo SD/MMC found on device ${mmc_dev};if run loadbootenv; then echo Loaded 
+
board_name=A335BNLT
  environment from ${bootenv};run importbootenv;fi;if test -n $uenvcmd; then echo Running uenvcmd ...;run
+
board_rev=000C
  uenvcmd;fi;if run mmc_load_uimage_ext4; then run mmc_args;bootm ${kloadaddr};fi;fi;run nand_boot;
+
boot_fdt=try
 +
  bootcmd=gpio set 53; i2c mw 0x24 1 0x3e; run findfdt; setenv mmcdev 0; setenv bootpart 0:1; run mmcboot;gpio clear 56; gpio clear 55; gpio clear 54; setenv mmcdev 1; setenv bootpart 1:1; run mmcboot;run nandboot;
 +
bootcount=7
 
  bootdelay=1
 
  bootdelay=1
 
  bootenv=uEnv.txt
 
  bootenv=uEnv.txt
  bootfile=uImage
+
  bootfile=zImage
 +
bootm_size=0x10000000
 +
bootpart=0:2
 +
bootscript=echo Running bootscript from mmc ...; source ${loadaddr}
 
  console=ttyO0,115200n8
 
  console=ttyO0,115200n8
 +
cpu=armv7
 +
device=eth0
 +
dfu_alt_info_emmc=rawemmc mmc 0 3751936
 +
dfu_alt_info_mmc=boot part 0 1;rootfs part 0 2;MLO fat 0 1;MLO.raw mmc 0x100 0x100;u-boot.img.raw mmc 0x300 0x400;spl-os-args.raw mmc 0x80 0x80;spl-os-image.raw mmc 0x900 0x2000;spl-os-args fat 0 1;spl-os-image fat 0 1;u-boot.img fat 0 1;uEnv.txt fat 0 1
 +
dfu_alt_info_nand=SPL part 0 1;SPL.backup1 part 0 2;SPL.backup2 part 0 3;SPL.backup3 part 0 4;u-boot part 0 5;u-boot-spl-os part 0 6;kernel part 0 8;rootfs part 0 9
 +
dfu_alt_info_ram=kernel ram 0x80200000 0xD80000;fdt ram 0x80F80000 0x80000;ramdisk ram 0x81000000 0x4000000
 +
eth1addr=d0:39:72:1a:5e:cc
 
  ethact=cpsw
 
  ethact=cpsw
  ethaddr=d4:94:a1:39:ed:0c
+
  ethaddr=d0:39:72:1a:5e:ca
  importbootenv=echo Importing environment from mmc ...; env import -t $loadaddr $filesize
+
fdt_addr_r=0x88000000
  ip_method=none
+
fdtaddr=0x88000000
  kloadaddr=0x80007fc0
+
fdtdir=/dtbs
 +
fdtfile=undefined
 +
findfdt=if test $board_name = A335BONE; then setenv fdtfile am335x-bone.dtb; setenv fdtbase am335x-bone; fi; if test $board_name = A335BNLT; then setenv fdtfile am335x-boneblack.dtb; setenv fdtbase am335x-boneblack; fi; if test $board_name = A33515BB; then setenv fdtfile am335x-evm.dtb; fi; if test $board_name = A335X_SK; then setenv fdtfile am335x-evmsk.dtb; fi; if test $fdtfile = undefined; then echo WARNING: Could not determine device tree to use; fi;
 +
gw_ip=192.168.1.1
 +
  importbootenv=echo Importing environment from mmc ...; env import -t -r $loadaddr $filesize
 +
  kernel_addr_r=0x82000000
 
  loadaddr=0x82000000
 
  loadaddr=0x82000000
  loadbootenv=fatload mmc ${mmc_dev} ${loadaddr} ${bootenv}
+
  loadbootenv=load mmc ${bootpart} ${loadaddr} ${bootenv}
  mmc_args=run bootargs_defaults;setenv bootargs ${bootargs} root=${mmc_root} rootfstype=${mmc_root_fs_type}   
+
  loadbootscript=load mmc ${bootpart} ${loadaddr} ${scriptfile};
  ip=${ip_method}
+
loadfdt=echo loading ${fdtdir}/${fdtfile} ...; load mmc ${bootpart} ${fdtaddr} ${fdtdir}/${fdtfile}
  mmc_boot=run mmc_args; run mmc_load_uimage_ext4; bootm ${kloadaddr}
+
loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}
  mmc_dev=0
+
  loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz
  mmc_load_uimage=fatload mmc ${mmc_dev}:1 ${kloadaddr} ${bootfile}
+
  loadrd=load mmc ${bootpart} ${rdaddr} ${bootdir}/${rdfile}; setenv rdsize ${filesize}
mmc_load_uimage_ext4=ext4load mmc ${mmc_dev}:2 ${kloadaddr} /boot/${bootfile}
+
  mmcargs=setenv bootargs console=${console} ${optargs} ${cape_disable} ${cape_enable} root=${mmcroot} rootfstype=${mmcrootfstype} ${cmdline}
  mmc_root=/dev/mmcblk0p2 ro
+
  mmcboot=mmc dev ${mmcdev}; if mmc rescan; then gpio set 54;echo SD/MMC found on device ${mmcdev};setenv bootpart ${mmcdev}:1; echo Checking for: /uEnv.txt ...;if test -e mmc ${bootpart} /uEnv.txt; then if run loadbootenv; then gpio set 55;echo Loaded environment from ${bootenv};run importbootenv;fi;if test -n ${cape}; then if test -e mmc ${bootpart} ${fdtdir}/${fdtbase}-${cape}.dtb; then setenv fdtfile ${fdtbase}-${cape}.dtb; fi; echo using: $fdtfile...; fi; echo Checking if uenvcmd is set ...;if test -n ${uenvcmd}; then gpio set 56; echo Running uenvcmd ...;run uenvcmd;fi;echo Checking if client_ip is set ...;if test -n ${client_ip}; then if test -n ${dtb}; then setenv fdtfile ${dtb};echo using ${fdtfile} ...;fi;gpio set 56; echo Running nfsboot ...;run nfsboot;fi;fi; echo Checking for: /${script} ...;if test -e mmc ${bootpart} /${script}; then gpio set 55;setenv scriptfile ${script};run loadbootscript;echo Loaded script from ${scriptfile};gpio set 56; run bootscript;fi; echo Checking for: /boot/${script} ...;if test -e mmc ${bootpart} /boot/${script}; then gpio set 55;setenv scriptfile /boot/${script};run loadbootscript;echo Loaded script from ${scriptfile};gpio set 56; run bootscript;fi; echo Checking for: /boot/uEnv.txt ...;for i in 1 2 3 4 5 6 7 ; do setenv mmcpart ${i};setenv bootpart ${mmcdev}:${mmcpart};if test -e mmc ${bootpart} /boot/uEnv.txt; then gpio set 55;load mmc ${bootpart} ${loadaddr} /boot/uEnv.txt;env import -t ${loadaddr} ${filesize};echo Loaded environment from /boot/uEnv.txt;if test -n ${dtb}; then setenv fdtfile ${dtb};echo Using: dtb=${fdtfile} ...;fi;echo Checking if uname_r is set in /boot/uEnv.txt...;if test -n ${uname_r}; then gpio set 56; echo Running uname_boot ...;setenv mmcroot /dev/mmcblk${mmcdev}p${mmcpart} ro;run uname_boot;fi;fi;done;fi;
  mmc_root_fs_type=ext4 rootwait
+
mmcdev=0
  nand_args=run bootargs_defaults;setenv bootargs ${bootargs} root=${nand_root} noinitrd 
+
mmcloados=run mmcargs; if test ${boot_fdt} = yes || test ${boot_fdt} = try; then if run loadfdt; then bootz ${loadaddr} - ${fdtaddr}; else if test ${boot_fdt} = try; then bootz; else echo WARN: Cannot load the DT; fi; fi; else bootz; fi;
rootfstype=${nand_root_fs_type} ip=${ip_method}
+
  mmcpart=1
  nand_boot=echo Booting from nand ...; run nand_args; nandecc hw 2; nand read.i ${kloadaddr}
+
mmcroot=/dev/mmcblk0p2 ro
  ${nand_src_addr} ${nand_img_siz}; bootm ${kloadaddr}
+
  mmcrootfstype=ext4 rootwait fixrtc
  nand_img_siz=0x500000
+
mtdids=nand0=omap2-nand.0
nand_root=ubi0:rootfs rw ubi.mtd=7,2048
+
mtdparts=mtdparts=omap2-nand.0:128k(SPL),128k(SPL.backup1),128k(SPL.backup2),128k(SPL.backup3),1792k(u-boot),128k(u-boot-spl-os),128k(u-boot-env),5m(kernel),-(rootfs)
  nand_root_fs_type=ubifs rootwait=1
+
  nandargs=setenv bootargs console=${console} ${optargs} root=${nandroot} rootfstype=${nandrootfstype}
  nand_src_addr=0x280000
+
  nandboot=echo Booting from nand ...; run nandargs; nand read ${fdtaddr} u-boot-spl-os; nand read ${loadaddr} kernel; bootz ${loadaddr} - ${fdtaddr}
net_args=run bootargs_defaults;setenv bootargs ${bootargs} root=/dev/nfs
+
  nandroot=ubi0:rootfs rw ubi.mtd=7,2048
nfsroot=${serverip}:${rootpath},${nfsopts} rw ip=dhcp  
+
  nandrootfstype=ubifs rootwait=1
  net_boot=echo Booting from network ...; setenv autoload no; dhcp; tftp ${kloadaddr} ${bootfile}; run   
+
  netargs=setenv bootargs console=${console} ${optargs} root=/dev/nfs nfsroot=${serverip}:${rootpath},${nfsopts} rw ip=dhcp
  net_args; bootm ${kloadaddr}
+
netboot=echo Booting from network ...; setenv autoload no; dhcp; tftp ${loadaddr} ${bootfile}; tftp ${fdtaddr} ${fdtfile}; run netargs; bootz ${loadaddr} - ${fdtaddr}
 +
  netmask=255.255.255.0
 +
nfs_options=,vers=3
 +
nfsargs=setenv bootargs console=${console} ${optargs} ${cape_disable} ${cape_enable} root=/dev/nfs rw rootfstype=${nfsrootfstype} nfsroot=${nfsroot} ip=${ip} ${cmdline}
 +
nfsboot=echo Booting from ${server_ip} ...; setenv nfsroot ${server_ip}:${root_dir}${nfs_options}; setenv ip ${client_ip}:${server_ip}:${gw_ip}:${netmask}:${hostname}:${device}:${autoconf}; setenv autoload no; setenv serverip ${server_ip}; setenv ipaddr ${client_ip}; tftp ${loadaddr} ${bootfile}; tftp ${fdtaddr} dtbs/${fdtfile}; run nfsargs; bootz ${loadaddr} - ${fdtaddr}
 
  nfsopts=nolock
 
  nfsopts=nolock
  nor_args=run bootargs_defaults;setenv bootargs ${bootargs} root={nor_root} rootfstype=${nor_root_fs_type}
+
  nfsrootfstype=ext4 rootwait fixrtc
  ip=${ip_method}
+
partitions=uuid_disk=${uuid_gpt_disk};name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}
  nor_boot=echo Booting from NOR ...; run nor_args; cp.b ${0x08080000} ${kloadaddr} ${nor_img_siz}; bootm 
+
ramargs=setenv bootargs console=${console} ${optargs} root=${ramroot} rootfstype=${ramrootfstype}
  ${kloadaddr}
+
  ramboot=echo Booting from ramdisk ...; run ramargs; bootz ${loadaddr} ${rdaddr} ${fdtaddr}
  nor_img_siz=0x280000
+
  ramdisk_addr_r=0x88080000
  nor_root=/dev/mtdblock3 rw
+
  ramroot=/dev/ram0 rw
  nor_root_fs_type=jffs2
+
  ramrootfstype=ext2
  nor_src_addr=0x08080000
+
rdaddr=0x88080000
 +
  root_dir=/home/userid/targetNFS
 
  rootpath=/export/rootfs
 
  rootpath=/export/rootfs
  script_addr=0x81900000
+
  script=boot.scr
  spi_args=run bootargs_defaults;setenv bootargs ${bootargs} root=${spi_root} rootfstype=${spi_root_fs_type}
+
scriptfile=${script}
  ip=${ip_method}
+
  server_ip=192.168.1.100
  spi_boot=echo Booting from spi ...; run spi_args; sf probe ${spi_bus_no}:0; sf read ${kloadaddr}
+
soc=am33xx
  ${spi_src_addr} ${spi_img_siz}; bootm ${kloadaddr}
+
spiargs=setenv bootargs console=${console} ${optargs} root=${spiroot} rootfstype=${spirootfstype}
  spi_bus_no=0
+
  spiboot=echo Booting from spi ...; run spiargs; sf probe ${spibusno}:0; sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; bootz ${loadaddr}
  spi_img_siz=0x380000
+
  spibusno=0
  spi_root=/dev/mtdblock4 rw
+
  spiimgsize=0x362000
  spi_root_fs_type=jffs2
+
  spiroot=/dev/mtdblock4 rw
  spi_src_addr=0x62000
+
  spirootfstype=jffs2
 +
  spisrcaddr=0xe0000
 
  static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off
 
  static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off
 
  stderr=serial
 
  stderr=serial
 
  stdin=serial
 
  stdin=serial
 
  stdout=serial
 
  stdout=serial
 +
uname_boot=setenv bootdir /boot; setenv bootfile vmlinuz-${uname_r}; if test -e mmc ${bootpart} ${bootdir}/${bootfile}; then echo loading ${bootdir}/${bootfile} ...; run loadimage;setenv fdtdir /boot/dtbs/${uname_r}; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else setenv fdtdir /usr/lib/linux-image-${uname_r}; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else setenv fdtdir /lib/firmware/${uname_r}/device-tree; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else setenv fdtdir /boot/dtb-${uname_r}; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else setenv fdtdir /boot/dtbs; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else setenv fdtdir /boot/dtb; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else setenv fdtdir /boot; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else echo; echo unable to find ${fdtfile} ...; echo booting legacy ...;run mmcargs;bootz ${loadaddr}; fi;fi;fi;fi;fi;fi;fi; setenv rdfile initrd.img-${uname_r}; if test -e mmc ${bootpart} ${bootdir}/${rdfile}; then echo loading ${bootdir}/${rdfile} ...; run loadrd;if test -n ${uuid}; then setenv mmcroot UUID=${uuid} ro;fi;run mmcargs;bootz ${loadaddr} ${rdaddr}:${rdsize} ${fdtaddr}; else run mmcargs;bootz ${loadaddr} - ${fdtaddr}; fi;fi;
 +
usbnet_devaddr=d0:39:72:1a:5e:cc
 +
vendor=ti
 +
ver=U-Boot 2014.07-00016-g329fca9 (Jul 28 2014 - 12:35:02)
 +
 +
Environment size: 8540/131068 bytes
  
 
Based on your investigation above, predict what will happen at boot time, then boot and check yourself.
 
Based on your investigation above, predict what will happen at boot time, then boot and check yourself.
Line 244: Line 402:
 
== U-boot boot ==
 
== U-boot boot ==
 
  U-Boot# '''boot'''
 
  U-Boot# '''boot'''
 +
gpio: pin 53 (gpio 53) value is 1
 +
switch to partitions #0, OK
 +
mmc0 is current device
 +
gpio: pin 54 (gpio 54) value is 1
 
  SD/MMC found on device 0
 
  SD/MMC found on device 0
 +
Checking for: /uEnv.txt ...
 
  reading uEnv.txt
 
  reading uEnv.txt
   
+
  685 bytes read in 5 ms (133.8 KiB/s)
  33 bytes read
+
  gpio: pin 55 (gpio 55) value is 1
 
  Loaded environment from uEnv.txt
 
  Loaded environment from uEnv.txt
 
  Importing environment from mmc ...
 
  Importing environment from mmc ...
  Loading file "/boot/uImage" from mmc device 0:2 xxa2
+
  Checking if uenvcmd is set ...
  3319440 bytes read
+
  gpio: pin 56 (gpio 56) value is 1
  ## Booting kernel from Legacy Image at 80007fc0 ...
+
  Running uenvcmd ...
    Image Name:  Angstrom/3.2.25/beaglebone
+
789 bytes read in 25 ms (30.3 KiB/s)
    Image Type:  ARM Linux Kernel Image (uncompressed)
+
5605264 bytes read in 325 ms (16.4 MiB/s)
    Data Size:    3319376 Bytes = 3.2 MiB
+
2860737 bytes read in 174 ms (15.7 MiB/s)
    Load Address: 80008000
+
26098 bytes read in 45 ms (565.4 KiB/s)
     Entry Point:  80008000
+
Kernel image @ 0x82000000 [ 0x000000 - 0x558790 ]
     Verifying Checksum ... OK
+
## Flattened Device Tree blob at 88000000
     XIP Kernel Image ... OK
+
     Booting using the fdt blob at 0x88000000
OK
+
     Loading Ramdisk to 8fd45000, end 8ffff6c1 ... OK
 +
     Loading Device Tree to 8fd3b000, end 8fd445f1 ... OK
 
   
 
   
 
  Starting kernel ...
 
  Starting kernel ...
 
   
 
   
 
  Uncompressing Linux... done, booting the kernel.
 
  Uncompressing Linux... done, booting the kernel.
  systemd-fsck[56]: Angstrom-Cloud9: clean, 51868/218592 files, 304346/873534 blocks
+
[    0.372393] omap2_mbox_probe: platform not supported
 +
[    0.527193] tps65217-bl tps65217-bl: no platform data provided
 +
[    0.591002] bone-capemgr bone_capemgr.9: slot #0: No cape found
 +
[    0.628110] bone-capemgr bone_capemgr.9: slot #1: No cape found
 +
[    0.665218] bone-capemgr bone_capemgr.9: slot #2: No cape found
 +
[    0.702327] bone-capemgr bone_capemgr.9: slot #3: No cape found
 +
[    0.720999] omap_hsmmc mmc.5: of_parse_phandle_with_args of 'reset' failed
 +
[    0.782684] pinctrl-single 44e10800.pinmux: pin 44e10854 already requested by 44e10800.pinmux; cannot claim for gpio-leds.8
 +
[    0.794381] pinctrl-single 44e10800.pinmux: pin-21 (gpio-leds.8) status -22
 +
[    0.801664] pinctrl-single 44e10800.pinmux: could not request pin 21 on device pinctrl-single
 +
Loading, please wait...
 +
  systemd-fsck[206]: rootfs: clean, 150367/469168 files, 783572/1930752 blocks
 
   
 
   
  .---O---.                                         
+
  Debian GNU/Linux 7 yoder-debian-bone ttyO0
|      |                  .-.          o o       
 
|  |  |-----.-----.-----.| |  .----..-----.-----.
 
|      |    | __  |  ---'| '--.|  .-'|    |    |
 
|  |  |  |  |    |---  ||  --'|  |  |  '  | | | |
 
'---'---'--'--'--.  |-----''----''--'  '-----'-'-'-'
 
                -'  |
 
                '---'
 
 
   
 
   
  The Angstrom Distribution beaglebone ttyO0
+
  default username:password is [debian:temppwd]
 
   
 
   
  Angstrom v2012.05 - Kernel 3.2.25
+
  Support/FAQ: http://elinux.org/Beagleboard:BeagleBoneBlack_Debian
 
   
 
   
  beaglebone login: '''root'''
+
  The IP Address for usb0 is: 192.168.7.2
 +
yoder-debian-bone login: '''root'''
  
 
== Looking on the FAT partition ==
 
== Looking on the FAT partition ==
The SD card you have been using has 2 partitions on it.  Partition 1 is a small FAT partition. These are the files you see appear when you first boot the bone. This contains the boot loaders.  
+
The SD card you have been using has 2 partitions on it.  Partition 1 is a small FAT partition. These are the files you see appear when you first boot the bone. This used to contain the boot loaders.  
  
 
The second partition is ext4 and contains the root file system. These are all the other files.   
 
The second partition is ext4 and contains the root file system. These are all the other files.   
  
 
You can see the FAT partition with:
 
You can see the FAT partition with:
  beagle$ '''mkdir /media/fat'''
+
  bone$ '''mkdir /mnt/fat'''
  beagle$ '''ls /media/fat'''    # Hmm....  nothing there
+
  bone$ '''ls /mnt/fat'''    # Hmm....  nothing there
  beagle$ '''mount /dev/mmcblk0p1 /media/fat'''
+
  bone$ '''mount /dev/mmcblk0p1 /mnt/fat'''
  beagle$ '''ls /media/fat'''    # and now there is
+
  bone$ '''ls /mnt/fat'''    # and now there is
  MLO U-BOOT.BIN UIMAGE uEnv uEnv.txt
+
  App          Docs    ID.txt      nfs-uEnv.txt  README.md START.htm
 +
autorun.inf Drivers LICENSE.txt README.htm    scripts    uEnv.txt
  
; MLO
+
If you look in '''/boot''' you'll see the files used to boot.
: This is the x-loader that the ROM-based loader loads.
+
bone# '''cd /boot'''
; u-boot.bin
+
bone# '''ls -F'''
: This is is U-Boot!
+
config-3.8.13-bone64      SOC.sh                    uEnv.txt
; uImage
+
dtbs/                    System.map-3.8.13-bone64  vmlinuz-3.8.13-bone64*
: The kernel
+
initrd.img-3.8.13-bone64  uboot/
; uEnv.txt
 
: Kernel command line arguments
 
; uEnv
 
: a directory of uEnv.txt files for various screen sizes
 
  
 +
'''vmlinuz-3.8.13-bone64''' is the kernel.
  
 
Look in '''uEnv.txt'''
 
Look in '''uEnv.txt'''
 
  beagle$ '''cat uEnv.txt'''
 
  beagle$ '''cat uEnv.txt'''
  optargs=run_hardware_tests quiet
+
  #Docs: http://elinux.org/Beagleboard:U-boot_partitioning_layout_2.0
 +
 +
uname_r=3.8.13-bone64
 +
 +
#dtb=
 +
 +
cmdline=quiet init=/lib/systemd/systemd
 +
 
 +
##Example
 +
#cape_disable=capemgr.disable_partno=
 +
#cape_enable=capemgr.enable_partno=MAY-gpio-set
 +
 +
##Disable HDMI/eMMC
 +
cape_disable=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN,BB-BONE-EMMC-2G
 +
 +
##Disable HDMI
 +
cape_disable=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN
 +
 +
##Disable eMMC
 +
#cape_disable=capemgr.disable_partno=BB-BONE-EMMC-2G
 +
 +
##Audio Cape (needs HDMI Audio disabled)
 +
#cape_disable=capemgr.disable_partno=BB-BONELT-HDMI
 +
#cape_enable=capemgr.enable_partno=BB-BONE-AUDI-02
 +
 +
##enable BBB: eMMC Flasher:
 +
##make sure, these tools are installed: dosfstools rsync
 +
#cmdline=init=/opt/scripts/tools/eMMC/init-eMMC-flasher-v3.sh
  
 
These are the arguments that are passed to the kernel when it boots.  Try editing the file and removing '''quiet''', then reboot.  You should see many more boot messages.
 
These are the arguments that are passed to the kernel when it boots.  Try editing the file and removing '''quiet''', then reboot.  You should see many more boot messages.
Line 321: Line 515:
  
 
Uncompressing Linux... done, booting the kernel.
 
Uncompressing Linux... done, booting the kernel.
[    0.000000] Initializing cgroup subsys cpuset
+
[    0.000000] Booting Linux on physical CPU 0x0
 
[    0.000000] Initializing cgroup subsys cpu
 
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.25 (koen@Angstrom-F16-vm-rpm) (gcc version 4.5.4 20120305 (prerelease) (GCC) ) #1 Fri Aug 10 10:33:12 CEST 2012
+
[    0.000000] Linux version 3.8.13-bone64 (root@a5-imx6q-wandboard-2gb) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Thu Aug 21 21:24:58 UTC 2014
[    0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=50c53c7d
+
[    0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=50c5387d
 
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
 
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine: am335xevm
+
[    0.000000] Machine: Generic AM33XX (Flattened Device Tree), model: TI AM335x BeagleBone
 
[    0.000000] Memory policy: ECC disabled, Data cache writeback
 
[    0.000000] Memory policy: ECC disabled, Data cache writeback
[    0.000000] AM335X ES1.0 (sgx neon )
+
[    0.000000] AM335X ES2.1 (l2cache sgx neon )
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 65024
+
[    0.000000] PERCPU: Embedded 9 pages/cpu @c0d3f000 s14080 r8192 d14592 u36864
[    0.000000] Kernel command line: console=ttyO0,115200n8 run_hardware_tests root=/dev/mmcblk0p2 ro rootfstype=ext4 rootwait ip=none
+
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 129792
[    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)
+
[    0.000000] Kernel command line: console=tty0 console=ttyO0,115200n8 capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN root=/dev/mmcblk0p2 rootfstype=ext4 rootwait fixrtc init=/lib/systemd/systemd
[    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
+
[    0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
[    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
+
[    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
 +
[    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
 +
[    0.000000] __ex_table already sorted, skipping sort
 
[    0.000000] allocated 1048576 bytes of page_cgroup
 
[    0.000000] allocated 1048576 bytes of page_cgroup
 
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
 
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Memory: 256MB = 256MB total
+
[    0.000000] Memory: 511MB = 511MB total
[    0.000000] Memory: 253240k/253240k available, 8904k reserved, 0K highmem
+
[    0.000000] Memory: 505412k/505412k available, 18876k reserved, 0K highmem
 
[    0.000000] Virtual kernel memory layout:
 
[    0.000000] Virtual kernel memory layout:
 
[    0.000000]    vector  : 0xffff0000 - 0xffff1000  (  4 kB)
 
[    0.000000]    vector  : 0xffff0000 - 0xffff1000  (  4 kB)
 
[    0.000000]    fixmap  : 0xfff00000 - 0xfffe0000  ( 896 kB)
 
[    0.000000]    fixmap  : 0xfff00000 - 0xfffe0000  ( 896 kB)
[    0.000000]    vmalloc : 0xd0800000 - 0xff000000  ( 744 MB)
+
[    0.000000]    vmalloc : 0xe0800000 - 0xff000000  ( 488 MB)
[    0.000000]    lowmem  : 0xc0000000 - 0xd0000000   ( 256 MB)
+
[    0.000000]    lowmem  : 0xc0000000 - 0xe0000000   ( 512 MB)
[    0.000000]    modules : 0xbf800000 - 0xc0000000   (  8 MB)
+
[    0.000000]    pkmap  : 0xbfe00000 - 0xc0000000  (  2 MB)
[    0.000000]      .text : 0xc0008000 - 0xc047fa10   (4575 kB)
+
[    0.000000]    modules : 0xbf800000 - 0xbfe00000   (  6 MB)
[    0.000000]      .init : 0xc0480000 - 0xc04b8000   ( 224 kB)
+
[    0.000000]      .text : 0xc0008000 - 0xc07ee8e0   (8091 kB)
[    0.000000]      .data : 0xc04b8000 - 0xc050a168   ( 329 kB)
+
[    0.000000]      .init : 0xc07ef000 - 0xc082c700   ( 246 kB)
[    0.000000]        .bss : 0xc050a18c - 0xc0575894   ( 430 kB)
+
[    0.000000]      .data : 0xc082e000 - 0xc08b5740   ( 542 kB)
[    0.000000] NR_IRQS:410 nr_irqs:410 410
+
[    0.000000]        .bss : 0xc08b5740 - 0xc092ef00   ( 486 kB)
 +
[    0.000000] Hierarchical RCU implementation.
 +
[    0.000000] RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
 +
[    0.000000] NR_IRQS:0 nr_irqs:0 0
 
[    0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
 
[    0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
 
[    0.000000] Total of 128 interrupts on 1 active controller
 
[    0.000000] Total of 128 interrupts on 1 active controller
[    0.000000] OMAP clockevent source: GPTIMER2 at 24000000 Hz
+
[    0.000000] OMAP clockevent source: GPTIMER1 at 24000000 Hz
[    0.000000] OMAP clocksource: GPTIMER1 at 32768 Hz
+
[    0.000000] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956ms
[    0.000000] sched_clock: 32 bits at 32kHz, resolution 30517ns, wraps every 131071999ms
+
[    0.000000] OMAP clocksource: GPTIMER2 at 24000000 Hz
 
[    0.000000] Console: colour dummy device 80x30
 
[    0.000000] Console: colour dummy device 80x30
[    0.000183] Calibrating delay loop... 498.89 BogoMIPS (lpj=2494464)
+
[    0.000000] console [tty0] enabled
[    0.058563] pid_max: default: 32768 minimum: 301
+
[    0.000643] Calibrating delay loop... 993.47 BogoMIPS (lpj=969728)
[    0.058746] Security Framework initialized
+
[    0.029195] pid_max: default: 32768 minimum: 301
[    0.058807] Mount-cache hash table entries: 512
+
[    0.029341] Security Framework initialized
[    0.059234] Initializing cgroup subsys cpuacct
+
[    0.029405] Mount-cache hash table entries: 512
[    0.059295] Initializing cgroup subsys memory
+
[    0.035140] Initializing cgroup subsys cpuacct
[    0.059326] Initializing cgroup subsys devices
+
[    0.035185] Initializing cgroup subsys memory
[    0.059356] Initializing cgroup subsys freezer
+
[    0.035234] Initializing cgroup subsys blkio
[    0.059356] Initializing cgroup subsys blkio
+
[    0.035325] CPU: Testing write buffer coherency: ok
[    0.059387] Initializing cgroup subsys perf_event
+
[    0.035722] CPU0: thread -1, cpu 0, socket -1, mpidr 0
[    0.059478] CPU: Testing write buffer coherency: ok
+
[    0.035790] Setting up static identity map for 0x804d3508 - 0x804d3554
[    0.060729] devtmpfs: initialized
+
[    0.036723] Brought up 1 CPUs
[    0.081268] omap_hwmod: gfx: failed to hardreset
+
[    0.036754] SMP: Total of 1 processors activated (993.47 BogoMIPS).
[    0.097991] omap_hwmod: pruss: failed to hardreset
+
[    0.037547] devtmpfs: initialized
[    0.098571] print_constraints: dummy:  
+
[    0.045892] omap_hwmod: wd_timer2: _wait_target_disable failed
[    0.098876] NET: Registered protocol family 16
+
[    0.098042] pinctrl core: initialized pinctrl subsystem
[    0.100128] OMAP GPIO hardware version 0.1
+
[    0.098192] rstctl core: initialized rstctl subsystem
[    0.101409] omap_mux_init: Add partition: #1: core, flags: 0
+
[    0.098484] regulator-dummy: no parameters
[    0.102935] omap_i2c.1: alias fck already exists
+
[    0.098806] NET: Registered protocol family 16
[    0.103363] hw-breakpoint: debug architecture 0x4 unsupported.
+
[    0.099353] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.103546] omap2_mcspi.1: alias fck already exists
+
[    0.104973] pinctrl-single 44e10800.pinmux: 142 pins at pa f9e10800 size 568
[    0.103698] omap2_mcspi.2: alias fck already exists
+
[    0.105590] platform 49000000.edma: alias fck already exists
[    0.103881] edma.0: alias fck already exists
+
[    0.105622] platform 49000000.edma: alias fck already exists
[    0.103881] edma.0: alias fck already exists
+
[    0.105643] platform 49000000.edma: alias fck already exists
[    0.103912] edma.0: alias fck already exists
+
[    0.106356] OMAP GPIO hardware version 0.1
[    0.104003] cape: pcm register
+
[    0.108852] gpio-rctrl rstctl.4: loaded OK
[    0.114349] bio: create slab <bio-0> at 0
+
[    0.112141] No ATAGs?
[    0.115661] SCSI subsystem initialized
+
[    0.112166] hw-breakpoint: debug architecture 0x4 unsupported.
[    0.116607] usbcore: registered new interface driver usbfs
+
[    0.113472] cpsw.0: No hwaddr in dt. Using d0:39:72:1a:5e:ca from efuse
[    0.116760] usbcore: registered new interface driver hub
+
[    0.113510] cpsw.1: No hwaddr in dt. Using d0:39:72:1a:5e:cc from efuse
[    0.116943] usbcore: registered new device driver usb
+
[    0.121697] bio: create slab <bio-0> at 0
[    0.117095] musb-ti81xx musb-ti81xx: musb0, board_mode=0x13, plat_mode=0x3
+
[    0.128017] edma-dma-engine edma-dma-engine.0: TI EDMA DMA engine driver
[    0.117248] musb-ti81xx musb-ti81xx: musb1, board_mode=0x13, plat_mode=0x1
+
[    0.128318] vmmcsd_fixed: 3300 mV
[    0.117797] omap_i2c omap_i2c.1: bus 1 rev2.4.0 at 100 kHz
+
[    0.129911] SCSI subsystem initialized
[    0.119110] Advanced Linux Sound Architecture Driver Version 1.0.24.
+
[    0.130161] usbcore: registered new interface driver usbfs
[    0.119720] Switching to clocksource gp timer
+
[    0.130232] usbcore: registered new interface driver hub
[    0.147979] musb-hdrc: version 6.0, ?dma?, otg (peripheral+host)
+
[    0.130441] usbcore: registered new device driver usb
[    0.148193] musb-hdrc musb-hdrc.0: dma type: pio
+
[    0.131693] omap_i2c 44e0b000.i2c: bus 0 rev0.11 at 400 kHz
[    0.148406] MUSB0 controller's USBSS revision = 4ea20800
+
[    0.132617] input: tps65217_pwr_but as /devices/ocp.3/44e0b000.i2c/i2c-0/0-0024/input/input0
[    0.148895] musb-hdrc musb-hdrc.0: USB OTG mode controller at d081c000 using PIO, IRQ 18
+
[    0.133944] DCDC1: at 1500 mV
[    0.149230] musb-hdrc musb-hdrc.1: dma type: pio
+
[    0.134843] vdd_mpu: 925 <--> 1325 mV at 1325 mV
[    0.149383] MUSB1 controller's USBSS revision = 4ea20800
+
[    0.135664] vdd_core: 925 <--> 1150 mV at 1125 mV
[    0.149536] musb-hdrc musb-hdrc.1: MUSB HDRC host driver
+
[    0.136479] LDO1: at 1800 mV
[    0.149627] musb-hdrc musb-hdrc.1: new USB bus registered, assigned bus number 1
+
[    0.137299] LDO2: at 3300 mV
[    0.149871] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
+
[    0.138805] LDO3: 1800 mV
[    0.149871] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
+
[    0.139620] LDO4: at 3300 mV
[    0.149902] usb usb1: Product: MUSB HDRC host driver
+
[    0.140342] tps65217 0-0024: TPS65217 ID 0xe version 1.2
[    0.149932] usb usb1: Manufacturer: Linux 3.2.25 musb-hcd
+
[    0.140861] omap_i2c 44e0b000.i2c: unable to select pin group
[    0.149932] usb usb1: SerialNumber: musb-hdrc.1
+
[    0.141341] omap_i2c 4819c000.i2c: bus 1 rev0.11 at 100 kHz
[    0.150695] hub 1-0:1.0: USB hub found
+
[    0.142805] omap_i2c 4819c000.i2c: unable to select pin group
[    0.150726] hub 1-0:1.0: 1 port detected
+
[    0.142971] media: Linux media interface: v0.10
[    0.151275] musb-hdrc musb-hdrc.1: USB Host mode controller at d081e800 using PIO, IRQ 19
+
[    0.143044] Linux video capture interface: v2.00
[    0.151702] NET: Registered protocol family 2
+
[    0.143122] pps_core: LinuxPPS API ver. 1 registered
[    0.151947] IP route cache hash table entries: 2048 (order: 1, 8192 bytes)
+
[    0.143138] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.152404] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
+
[    0.143540] Advanced Linux Sound Architecture Driver Initialized.
[    0.152648] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
+
[    0.144136] NetLabel: Initializing
[    0.152770] TCP: Hash tables configured (established 8192 bind 8192)
+
[    0.144158] NetLabel: domain hash size = 128
[    0.152801] TCP reno registered
+
[    0.144171] NetLabel: protocols = UNLABELED CIPSOv4
[    0.152801] UDP hash table entries: 256 (order: 0, 4096 bytes)
+
[    0.144244] NetLabel:  unlabeled traffic allowed by default
[    0.152832] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
+
[    0.144552] Switching to clocksource gp_timer
[    0.153137] NET: Registered protocol family 1
+
[    0.176131] NET: Registered protocol family 2
[    0.153533] RPC: Registered named UNIX socket transport module.
+
[    0.176795] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
[    0.153533] RPC: Registered udp transport module.
+
[    0.176890] TCP bind hash table entries: 4096 (order: 4, 81920 bytes)
[    0.153564] RPC: Registered tcp transport module.
+
[    0.176981] TCP: Hash tables configured (established 4096 bind 4096)
[    0.153564] RPC: Registered tcp NFSv4.1 backchannel transport module.
+
[    0.177052] TCP: reno registered
[    0.155517] audit: initializing netlink socket (disabled)
+
[    0.177073] UDP hash table entries: 256 (order: 1, 12288 bytes)
[    0.155578] type=2000 audit(0.150:1): initialized
+
[    0.177105] UDP-Lite hash table entries: 256 (order: 1, 12288 bytes)
[    0.157165] VFS: Disk quotas dquot_6.5.2
+
[    0.177343] NET: Registered protocol family 1
[    0.157226] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
+
[    0.177745] RPC: Registered named UNIX socket transport module.
[    0.158416] msgmni has been set to 494
+
[    0.177771] RPC: Registered udp transport module.
[    0.159545] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
+
[    0.177785] RPC: Registered tcp transport module.
[    0.159667] io scheduler noop registered
+
[    0.177799] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.159667] io scheduler deadline registered
+
[    0.178093] Trying to unpack rootfs image as initramfs...
[    0.159759] io scheduler cfq registered (default)
+
[    0.372318] Freeing initrd memory: 2792K
[    0.160858] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
+
[    0.372664] hw perfevents: enabled with ARMv7 Cortex-A8 PMU driver, 5 counters available
[    0.162414] omap_uart.0: ttyO0 at MMIO 0x44e09000 (irq = 72) is a OMAP UART0
+
[    0.372946] CPU PMU: attempt to register multiple PMU devices!
[    0.792907] console [ttyO0] enabled
+
[    0.372976] arm-pmu: probe of arm-pmu failed with error -28
[    0.797210] omap_uart.1: ttyO1 at MMIO 0x48022000 (irq = 73) is a OMAP UART1
+
[    0.373366] omap2_mbox_probe: platform not supported
[    0.805175] omap_uart.2: ttyO2 at MMIO 0x48024000 (irq = 74) is a OMAP UART2
+
[    0.523424] VFS: Disk quotas dquot_6.5.2
[    0.813049] omap_uart.3: ttyO3 at MMIO 0x481a6000 (irq = 44) is a OMAP UART3
+
[    0.523684] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.820953] omap_uart.4: ttyO4 at MMIO 0x481a8000 (irq = 45) is a OMAP UART4
+
[    0.524446] NFS: Registering the id_resolver key type
[    0.828826] omap_uart.5: ttyO5 at MMIO 0x481aa000 (irq = 46) is a OMAP UART5
+
[    0.524531] Key type id_resolver registered
[    0.838073] brd: module loaded
+
[    0.524547] Key type id_legacy registered
[    0.846069] loop: module loaded
+
[    0.524823] fuse init (API version 7.20)
[    0.849487] at24 1-0051: 32768 byte 24c256 EEPROM, writable, 64 bytes/write
+
[    0.525236] Btrfs loaded
[    0.910339] No daughter card found
+
[    0.525345] msgmni has been set to 992
[    0.913970] at24 1-0050: 32768 byte 24c256 EEPROM, writable, 64 bytes/write
+
[    0.527060] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    0.929260] Board name: A335BONE
+
[    0.527101] io scheduler noop registered
[    0.932678] Board version: 00A3
+
[    0.527115] io scheduler deadline registered
[   0.936004] The board is a AM335x Beaglebone.
+
[    0.527144] io scheduler cfq registered (default)
[    0.941284] tps65217 1-0024: TPS65217 ID 0x7 version 1.0
+
[    0.528381] tps65217-bl tps65217-bl: no platform data provided
[    0.948760] print_constraints: DCDC1: 900 <--> 1800 mV at 1800 mV
+
[    0.528421] tps65217-bl: probe of tps65217-bl failed with error -22
[    0.957275] print_constraints: DCDC2: 900 <--> 3300 mV at 1275 mV
+
[    0.528948] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.965728] print_constraints: DCDC3: 900 <--> 1500 mV at 1100 mV
+
[    0.530348] omap_uart 44e09000.serial: did not get pins for uart0 error: -19
[    0.974151] print_constraints: LDO1: 1000 <--> 3300 mV at 1800 mV
+
[    0.530651] 44e09000.serial: ttyO0 at MMIO 0x44e09000 (irq = 72) is a OMAP UART0
[    0.982604] print_constraints: LDO2: 900 <--> 3300 mV at 3300 mV
+
[    1.290911] console [ttyO0] enabled
[    0.990936] print_constraints: LDO3: 1800 <--> 3300 mV at 3300 mV
+
[    1.295274] [drm] Initialized drm 1.1.0 20060810
[    0.999359] print_constraints: LDO4: 1800 <--> 3300 mV at 3300 mV
+
[    1.307447] brd: module loaded
[    1.006408] Maximum current provided by the USB port is 500mA which is not sufficient when operating @OPP120 and OPPTURBO. The current requirement for some use-cases using OPP100 might also exceed the maximum current that the USB port can provide. Unless you are fully confident that the current requirements for OPP100 use-case don't exceed the USB limits, switching to AC power is recommended.
+
[    1.314371] loop: module loaded
[    1.043487] omap_i2c.3: alias fck already exists
+
[    1.317773] at24 0-0050: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    1.048706] omap_i2c omap_i2c.3: bus 3 rev2.4.0 at 100 kHz
+
[    1.325008] at24 1-0054: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    1.059112] at24 3-0054: 32768 byte 24c256 EEPROM, writable, 64 bytes/write
+
[    1.332239] at24 1-0055: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    1.120361] BeagleBone cape EEPROM: could not read eeprom at address 0x54
+
[    1.339484] at24 1-0056: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    1.127563] at24 3-0055: 32768 byte 24c256 EEPROM, writable, 64 bytes/write
+
[    1.346712] at24 1-0057: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    1.190368] BeagleBone cape EEPROM: could not read eeprom at address 0x55
+
[    1.360596] bone-capemgr bone_capemgr.9: Baseboard: 'A335BNLT,000C,3114BBBK1969'
[    1.197570] at24 3-0056: 32768 byte 24c256 EEPROM, writable, 64 bytes/write
+
[    1.368402] bone-capemgr bone_capemgr.9: compatible-baseboard=ti,beaglebone-black
[    1.260375] BeagleBone cape EEPROM: could not read eeprom at address 0x56
+
[    1.376305] bone-capemgr bone_capemgr.9: Skipping disabled cape with part# BB-BONELT-HDMI
[    1.267578] at24 3-0057: 32768 byte 24c256 EEPROM, writable, 64 bytes/write
+
[    1.384904] bone-capemgr bone_capemgr.9: Skipping disabled cape with part# BB-BONELT-HDMIN
[    1.330383] BeagleBone cape EEPROM: could not read eeprom at address 0x57
+
[    1.423932] bone-capemgr bone_capemgr.9: slot #0: No cape found
[    1.337707] omap_hsmmc.0: alias fck already exists
+
[    1.461037] bone-capemgr bone_capemgr.9: slot #1: No cape found
[    1.343017] BeagleBone cape: exporting ADC pins to sysfs
+
[    1.498147] bone-capemgr bone_capemgr.9: slot #2: No cape found
[    1.348876] Beaglebone: initializing onboard LEDs
+
[    1.535256] bone-capemgr bone_capemgr.9: slot #3: No cape found
[    1.353881] BeagleBone cape: exporting SPI pins as spidev
+
[    1.541481] bone-capemgr bone_capemgr.9: slot #4: specific override
[    1.360107] BeagleBone cape: initializing w1-gpio
+
[    1.548053] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 4
[    1.365234] w1-gpio connected to P8_6
+
[    1.556055] bone-capemgr bone_capemgr.9: slot #4: 'Bone-LT-eMMC-2G,00A0,Texas Instrument,BB-BONE-EMMC-2G'
[    1.369781] SCSI Media Changer driver v0.25
+
[    1.566130] bone-capemgr bone_capemgr.9: slot #5: specific override
[    1.374694] CAN device driver interface
+
[    1.572698] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 5
[    1.378753] CAN bus driver for Bosch D_CAN controller 1.0
+
[    1.580749] bone-capemgr bone_capemgr.9: slot #5: 'Bone-Black-HDMI,00A0,Texas Instrument,BB-BONELT-HDMI'
[    1.430419] davinci_mdio davinci_mdio.0: davinci mdio revision 1.6
+
[    1.590777] bone-capemgr bone_capemgr.9: slot #6: specific override
[    1.436920] davinci_mdio davinci_mdio.0: detected phy mask fffffffe
+
[    1.597376] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 6
[    1.444580] davinci_mdio.0: probed
+
[    1.605427] bone-capemgr bone_capemgr.9: slot #6: 'Bone-Black-HDMIN,00A0,Texas Instrument,BB-BONELT-HDMIN'
[    1.448181] davinci_mdio davinci_mdio.0: phy[0]: device 0:00, driver SMSC LAN8710/LAN8720
+
[    1.615721] bone-capemgr bone_capemgr.9: Skipping loading of disabled cape with part# BB-BONELT-HDMI
[    1.457061] usbcore: registered new interface driver cdc_acm
+
[    1.625285] bone-capemgr bone_capemgr.9: Skipping loading of disabled cape with part# BB-BONELT-HDMIN
[    1.463073] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
+
[    1.635066] bone-capemgr bone_capemgr.9: initialized OK.
[    1.471618] usbcore: registered new interface driver usblp
+
[    1.640650] bone-capemgr bone_capemgr.9: loader: before slot-4 BB-BONE-EMMC-2G:00A0 (prio 1)
[    1.477478] usbcore: registered new interface driver cdc_wdm
+
[    1.649482] bone-capemgr bone_capemgr.9: loader: check slot-4 BB-BONE-EMMC-2G:00A0 (prio 1)
[    1.483520] usbcore: registered new interface driver uas
+
[    1.659652] OneNAND driver initializing
[    1.489135] Initializing USB Mass Storage driver...
+
[    1.664634] usbcore: registered new interface driver cdc_ether
[    1.494445] usbcore: registered new interface driver usb-storage
+
[    1.670811] usbcore: registered new interface driver rndis_host
[    1.500793] USB Mass Storage support registered.
+
[    1.677070] bone-capemgr bone_capemgr.9: loader: after slot-4 BB-BONE-EMMC-2G:00A0 (prio 1)
[    1.505767] usbcore: registered new interface driver libusual
+
[    1.685886] usbcore: registered new interface driver cdc_ncm
[    1.512329] mousedev: PS/2 mouse device common for all mice
+
[    1.691835] bone-capemgr bone_capemgr.9: slot #4: Requesting firmware 'cape-bone-2g-emmc1.dtbo' for board-name 'Bone-LT-eMMC-2G', version '00A0'
[    1.518829] dev addr = cfa08608
+
[    1.705844] usbcore: registered new interface driver cdc_acm
[    1.522186] pdev addr = cfa08600
+
[    1.711795] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    1.526397] omap_rtc omap_rtc: rtc core: registered omap_rtc as rtc0
+
[    1.720162] Initializing USB Mass Storage driver...
[    1.533142] omap_rtc: already running
+
[    1.725287] bone-capemgr bone_capemgr.9: slot #4: dtbo 'cape-bone-2g-emmc1.dtbo' loaded; converting to live tree
[    1.537170] i2c /dev entries driver
+
[    1.736004] usbcore: registered new interface driver usb-storage
[    1.541351] Linux media interface: v0.10
+
[    1.742292] USB Mass Storage support registered.
[    1.545593] Linux video capture interface: v2.00
+
[    1.747322] bone-capemgr bone_capemgr.9: slot #4: #2 overlays
[    1.550811] Driver for 1-wire Dallas network protocol.
+
[    1.753914] bone-capemgr bone_capemgr.9: slot #4: Applied #2 overlays.
[    1.557617] OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
+
[    1.760786] bone-capemgr bone_capemgr.9: loader: done slot-4 BB-BONE-EMMC-2G:00A0 (prio 1)
[    1.565521] cpuidle: using governor ladder
+
[    1.769566] musb-hdrc: version 6.0, ?dma?, otg (peripheral+host)
[    1.570037] cpuidle: using governor menu
+
[    1.776116] musb-hdrc musb-hdrc.0.auto: pdev->id = 0
[    1.577178] usbcore: registered new interface driver usbhid
+
[    1.781355] musb-hdrc musb-hdrc.0.auto: drivers/usb/musb/musb_dsps.c:468 dsps_musb_init: OK
[    1.583099] usbhid: USB HID core driver
+
[    1.790329] musb-hdrc musb-hdrc.0.auto: *** mode=3
[    1.588195] usbcore: registered new interface driver snd-usb-audio
+
[    1.795386] musb-hdrc musb-hdrc.0.auto: *** power=250
[    1.595794] ALSA device list:
+
[    1.801202] musb-hdrc musb-hdrc.1.auto: pdev->id = 1
[    1.598907]   No soundcards found.
+
[    1.806441] musb-hdrc musb-hdrc.1.auto: drivers/usb/musb/musb_dsps.c:468 dsps_musb_init: OK
[    1.602966] TCP cubic registered
+
[    1.815310] musb-hdrc musb-hdrc.1.auto: *** mode=1
[    1.606353] Initializing XFRM netlink socket
+
[    1.820356] musb-hdrc musb-hdrc.1.auto: *** power=250
[    1.610931] NET: Registered protocol family 17
+
[    1.825653] musb-hdrc musb-hdrc.1.auto: MUSB HDRC host driver
[    1.615661] NET: Registered protocol family 15
+
[    1.831891] musb-hdrc musb-hdrc.1.auto: new USB bus registered, assigned bus number 1
[    1.620361] can: controller area network core (rev 20090105 abi 8)
+
[    1.840241] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.626983] NET: Registered protocol family 29
+
[    1.847363] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.631713] can: raw protocol (rev 20090105)
+
[    1.854918] usb usb1: Product: MUSB HDRC host driver
[    1.636230] Registering the dns_resolver key type
+
[    1.860110] usb usb1: Manufacturer: Linux 3.8.13-bone64 musb-hcd
[    1.641296] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
+
[    1.866395] usb usb1: SerialNumber: musb-hdrc.1.auto
[    1.649383] ThumbEE CPU extension supported.
+
[    1.872173] hub 1-0:1.0: USB hub found
[    1.653961] mux: Failed to setup hwmod io irq -22
+
[    1.876157] hub 1-0:1.0: 1 port detected
[    1.659759] Power Management for AM33XX family
+
[    1.881065] mousedev: PS/2 mouse device common for all mice
[    1.664672] Trying to load am335x-pm-firmware.bin (60 secs timeout)
+
[    1.888365] omap_rtc 44e3e000.rtc: rtc core: registered 44e3e000.rtc as rtc0
[    1.671417] Copied the M3 firmware to UMEM
+
[    1.895838] 44e3e000.rtc: already running
[    1.681396] registered taskstats version 1
+
[    1.900203] i2c /dev entries driver
[    1.686035] Detected MACID=d4:94:a1:39:ed:c
+
[    1.904830] pps_ldisc: PPS line discipline registered
[    1.691589] omap_rtc omap_rtc: setting system clock to 2000-01-01 01:35:27 UTC (946690527)
+
[    1.910221] Driver for 1-wire Dallas network protocol.
[    1.701171] Waiting for root device /dev/mmcblk0p2...
+
[    1.916738] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
[    1.741912] mmc0: host does not support reading read-only switch. assuming write-enable.
+
[    1.924348] device-mapper: ioctl: 4.23.1-ioctl (2012-12-18) initialised: dm-devel@redhat.com
[    1.753051] mmc0: new high speed SDHC card at address 1234
+
[    1.933264] cpuidle: using governor ladder
[    1.759460] mmcblk0: mmc0:1234 SA04G 3.67 GiB
+
[    1.937596] cpuidle: using governor menu
[    1.766632] mmcblk0: p1 p2
+
[    1.941991] omap_hsmmc mmc.5: of_parse_phandle_with_args of 'reset' failed
[    1.830230] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
+
[    1.949203] omap_hsmmc mmc.5: Failed to get rstctl; not using any
[    1.838897] VFS: Mounted root (ext4 filesystem) readonly on device 179:2.
+
[    1.955883] edma-dma-engine edma-dma-engine.0: allocated channel for 0:25
[    1.856109] devtmpfs: mounted
+
[    1.963050] edma-dma-engine edma-dma-engine.0: allocated channel for 0:24
[    1.859680] Freeing init memory: 224K
+
[    1.970320] mmc.5 supply vmmc_aux not found, using dummy regulator
 +
[    1.977123] omap_hsmmc mmc.5: pins are not configured from the driver
 +
[    2.010290] gpio-rctrl rstctl.4: gpio_rctrl_request eMMC_RSTn
 +
[    2.016466] omap_hsmmc mmc.11: Got rstctl (gpio:#0 name eMMC_RSTn) label:eMMC_RSTn
 +
[    2.024436] gpio-rctrl rstctl.4: gpio_rctrl_deassert eMMC_RSTn
 +
[    2.030779] edma-dma-engine edma-dma-engine.0: allocated channel for 0:3
 +
[    2.037881] edma-dma-engine edma-dma-engine.0: allocated channel for 0:2
 +
[    2.045253] mmc.11 supply vmmc_aux not found, using dummy regulator
 +
[    2.051954] omap_hsmmc mmc.11: pins are not configured from the driver
 +
[    2.086377] pinctrl-single 44e10800.pinmux: pin 44e10854 already requested by 44e10800.pinmux; cannot claim for gpio-leds.8
 +
[    2.098048] pinctrl-single 44e10800.pinmux: pin-21 (gpio-leds.8) status -22
 +
[    2.105336] pinctrl-single 44e10800.pinmux: could not request pin 21 on device pinctrl-single
 +
[    2.114293] leds-gpio gpio-leds.8: pins are not configured from the driver
 +
[    2.122228] ledtrig-cpu: registered to indicate activity on CPUs
 +
[    2.128819] edma-dma-engine edma-dma-engine.0: allocated channel for 0:36
 +
[    2.136019] omap-sham 53100000.sham: hw accel on OMAP rev 4.3
 +
[    2.143483] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2
 +
[    2.149711] edma-dma-engine edma-dma-engine.0: allocated channel for 0:5
 +
[    2.156870] edma-dma-engine edma-dma-engine.0: allocated channel for 0:6
 +
[    2.165735] mmc0: host does not support reading read-only switch. assuming write-enable.
 +
[    2.175268] usbcore: registered new interface driver usbhid
 +
[    2.181137] usbhid: USB HID core driver
 +
[    2.186121] ashmem: initialized
 +
[    2.189636] mmc0: new high speed SDHC card at address b368
 +
[    2.195645] logger: created 256K log 'log_main'
 +
[    2.200888] mmcblk0: mmc0:b368 G5334 7.45 GiB
 +
[    2.205821] logger: created 256K log 'log_events'
 +
[    2.211586] logger: created 256K log 'log_radio'
 +
[    2.216583]  mmcblk0: p1 p2
 +
[    2.219975] logger: created 256K log 'log_system'
 +
[    2.227442] TCP: cubic registered
 +
[    2.231097] NET: Registered protocol family 10
 +
[    2.236629] NET: Registered protocol family 17
 +
[    2.241615] Key type dns_resolver registered
 +
[    2.246298] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
 +
[    2.254424] ThumbEE CPU extension supported.
 +
[    2.258929] Registering SWP/SWPB emulation handler
 +
[    2.264651] registered taskstats version 1
 +
[    2.318475] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6
 +
[    2.324914] davinci_mdio 4a101000.mdio: detected phy mask fffffffe
 +
[    2.331494] mmc1: BKOPS_EN bit is not set
 +
[    2.342763] libphy: 4a101000.mdio: probed
 +
[    2.347083] davinci_mdio 4a101000.mdio: phy[0]: device 4a101000.mdio:00, driver SMSC LAN8710/LAN8720
 +
[    2.356880] Detected MACID = d0:39:72:1a:5e:ca
 +
[    2.361525] cpsw 4a100000.ethernet: NAPI disabled
 +
[    2.368070] omap_rtc 44e3e000.rtc: setting system clock to 2014-09-06 20:49:08 UTC (1410036548)
 +
[    2.378052] mmc1: new high speed MMC card at address 0001
 +
[    2.388323] ALSA device list:
 +
[    2.391513]  No soundcards found.
 +
[    2.395153] mmcblk1: mmc1:0001 MMC04G 3.60 GiB
 +
[    2.400179] mmcblk1boot0: mmc1:0001 MMC04G partition 1 2.00 MiB
 +
[    2.406969] Freeing init memory: 244K
 +
[    2.412354] mmcblk1boot1: mmc1:0001 MMC04G partition 2 2.00 MiB
 +
Loading, please wait...
 +
[    2.423835]  mmcblk1: p1
 +
[    2.430941]  mmcblk1boot1: unknown partition table
 +
[    2.439899]  mmcblk1boot0: unknown partition table
 +
[    2.506167] udevd[95]: starting version 175
 +
Begin: Loading essential drivers ... done.
 +
Begin: Running /scripts/init-premount ... done.
 +
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
 +
Begin: Running /scripts/local-premount ... done.
 +
[    3.727257] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
 +
Begin: Running /scripts/local-bottom ... done.
 +
done.
 +
Begin: Running /scripts/init-bottom ... done.
  
Welcome to �[1;35mThe Ångström Distribution�[0m!
+
Welcome to �[1;31mDebian GNU/Linux 7 (wheezy)�[0m!
  
[    2.390228] NET: Registered protocol family 10
+
Starting udev Kernel Device Manager...                                        
Starting udev Coldplug all Devices...                                         
+
Starting Security File System...                                              
Starting Remount API VFS...                                                  
 
Starting Temporary Directory...                                              
 
Started Set Up Additional Binary Formats                              [�[1;32m  OK  �[0m]
 
 
Started Huge Pages File System                                        [�[1;32m  OK  �[0m]
 
Started Huge Pages File System                                        [�[1;32m  OK  �[0m]
 +
Starting Load Kernel Modules...                                               
 
Starting Debug File System...                                                   
 
Starting Debug File System...                                                   
 +
Started Set Up Additional Binary Formats                              [�[1;32m  OK  �[0m]
 +
Starting Apply Kernel Variables...                                           
 
Starting POSIX Message Queue File System...                                     
 
Starting POSIX Message Queue File System...                                     
Starting Apply Kernel Variables...                                             
+
Starting User Runtime Directory...                                             
 +
Starting Lock Directory...                                                   
 +
Starting File System Check on Root Device...                                 
 +
Starting udev Coldplug all Devices...                                         
 
Starting Journal Service...                                                     
 
Starting Journal Service...                                                     
 
Started Journal Service                                                [�[1;32m  OK  �[0m]
 
Started Journal Service                                                [�[1;32m  OK  �[0m]
Starting Load Kernel Modules...                                              
+
Starting Remount API VFS...                                                  
Starting udev Kernel Device Manager...                                          
+
Started Security File System                                          [�[1;32m  OK  �[0m]
Starting File System Check on Root Device...                                 
+
Started Debug File System                                              [�[1;32m  OK  �[0m]
 +
Started User Runtime Directory                                         [�[1;32m  OK  �[0m]
 +
Started POSIX Message Queue File System                               [�[1;32m  OK  �[0m]
 +
Started Apply Kernel Variables                                        [�[1;32m  OK  �[0m]
 
Started Remount API VFS                                                [�[1;32m  OK  �[0m]
 
Started Remount API VFS                                                [�[1;32m  OK  �[0m]
Started Temporary Directory                                           [�[1;32m  OK  �[0m]
+
Started Lock Directory                                                 [�[1;32m  OK  �[0m]
Started Debug File System                                      [    3.278259] udevd[64]: starting version 182
+
[    4.819492] rtusb init rt2870 --->
      [�[1;32m  OK  �[0m]
+
[    4.840185] usbcore: registered new interface driver rt2870
Started udev Kernel Device Manager                                    [�[1;32m  OK  �[0m]
 
Started POSIX Message Queue File System                                [�[1;32m  OK  �[0m]
 
Started Apply Kernel Variables          [    3.322021] Bluetooth: Core ver 2.16
 
                [    3.326080] NET: Registered protocol family 31
 
              [[    3.332092] Bluetooth: HCI device and connection manager initialized
 
�[1;32m  OK  �[0[    3.340179] Bluetooth: HCI socket layer initialized
 
m]
 
[    3.346710] Bluetooth: L2CAP socket layer initialized
 
[    3.352416] Bluetooth: SCO socket layer initialized
 
[    3.416198] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
 
Started udev Coldplug all Devices                                      [�[1;32m  OK  �[0m]
 
[    3.529388] NET: Registered protocol family 23
 
[    3.573181] IrCOMM protocol (Dag Brattli)
 
[    3.664764] Bluetooth: RFCOMM TTY layer initialized
 
[    3.669982] Bluetooth: RFCOMM socket layer initialized
 
[    3.675476] Bluetooth: RFCOMM ver 1.11
 
 
Started Load Kernel Modules                                            [�[1;32m  OK  �[0m]
 
Started Load Kernel Modules                                            [�[1;32m  OK  �[0m]
 
Started Configuration File System                                      [�[1;32m  OK  �[0m]
 
Started Configuration File System                                      [�[1;32m  OK  �[0m]
 +
Starting FUSE Control File System...                                         
 
Started FUSE Control File System                                      [�[1;32m  OK  �[0m]
 
Started FUSE Control File System                                      [�[1;32m  OK  �[0m]
systemd-fsck[65]: Angstrom-Cloud9: clean, 51905/218592 files, 304442/873534 blocks
+
Started udev Kernel Device Manager                                    [�[1;32m  OK  �[0m]
 +
Starting LSB: Set pr[    4.993624] udevd[225]: starting version 175
 +
eliminary keymap...                                       
 +
Starting LSB: Tune IDE hard disks...                                         
 +
systemd-fsck[208]: rootfs: clean, 150394/469168 files, 784886/1930752 blocks
 
Started File System Check on Root Device                              [�[1;32m  OK  �[0m]
 
Started File System Check on Root Device                              [�[1;32m  OK  �[0m]
 +
hdparm[231]: Setting parameters of disc: (none).
 +
Started LSB: Tune IDE hard disks                                      [�[1;32m  OK  �[0m]
 +
Started udev Coldplug all Devices                                      [�[1;32m  OK  �[0m]
 +
keyboard-setup[230]: Setting preliminary keymap...done.
 +
Started LSB: Set preliminary keymap                                    [�[1;32m  OK  �[0m]
 
Starting Remount Root FS...                                                     
 
Starting Remount Root FS...                                                     
[    4.846923] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
+
[    5.971806] EXT4-fs (mmcblk0p2): re-mounted. Opts: errors=remount-ro
 
Started Remount Root FS                                                [�[1;32m  OK  �[0m]
 
Started Remount Root FS                                                [�[1;32m  OK  �[0m]
Started Run pending postinsts                                          [�[1;32m  OK  �[0m]
+
Started Various fixups to make systemd work better on Debian          [�[1;32m  OK  �[0m]
 +
Started Lock Directory                                                [�[1;32m  OK  �[0m]
 +
Started Runtime Directory                                              [�[1;32m  OK  �[0m]
 +
Starting LSB: Restore resolv.conf if the system crashed....                   
 +
Starting Recreate Volatile Files and Directories...                           
 
Starting Load Random Seed...                                                   
 
Starting Load Random Seed...                                                   
Starting Recreate Volatile Files and Directories...                          
+
Starting LSB: Restore and store ALSA driver settings...                      
Started Machine ID first boot configure                                [�[1;32m  OK  �[0m]
+
Starting LSB: Prepare console...                                             
 +
Starting LSB: screen sessions cleaning...                                     
 +
Started LSB: Restore resolv.conf if the system crashed.                [�[1;32m  OK  �[0m]
 
Started Load Random Seed                                              [�[1;32m  OK  �[0m]
 
Started Load Random Seed                                              [�[1;32m  OK  �[0m]
 +
Starting LSB: Raise network interfaces....                                   
 
Started Recreate Volatile Files and Directories                        [�[1;32m  OK  �[0m]
 
Started Recreate Volatile Files and Directories                        [�[1;32m  OK  �[0m]
 +
kbd[295]: Setting console screen modes.
 +
Started LSB: screen sessions cleaning                                  [�[1;32m  OK  �[0m]
 +
kbd[295]: Skipping font and keymap setup (handled by console-setup).
 +
Started LSB: Prepare console                                          [�[1;32m  OK  �[0m]
 +
Starting LSB: Set console font and keymap...                                 
 +
alsa-utils[294]: Setting up ALSA...warning: 'alsactl restore' failed with error message 'alsactl: load_state:1686: No soundcards found...'...done.
 +
Started LSB: Restore and store ALSA driver settings                    [�[1;32m  OK  �[0m]
 +
[    7.450337] omap_rng 48310000.rng: base address of priv is -97452032
 +
networking[305]: Configuring network interfaces...done.
 +
Started LSB: Raise network interfaces.                                [�[1;32m  OK  �[0m]
 +
[    7.753353] omap_rng 48310000.rng: OMAP Random Number Generator ver. 20
 +
console-setup[343]: Setting up console font and keymap...done.
 +
Started LSB: Set console font and keymap                              [�[1;32m  OK  �[0m]
 +
Started Automatically Enable Systemd Units                            [�[1;32m  OK  �[0m]
 
Starting Console System Startup Logging...                                     
 
Starting Console System Startup Logging...                                     
Starting Restore Sound Card State...                                          
+
Starting LSB: Advanced IEEE 802.11 management daemon...                       
Starting xinetd.service...                                                    
+
Starting LSB: Start daemon at boot time...                                    
Starting Periodic Command Scheduler...                                        
+
Starting LSB: Start busybox udhcpd at boot time...                            
Started Periodic Command Scheduler                                     [�[1;32m  OK  �[0m]
+
Starting LSB: Log file handling to be done during bootup....                 
 +
Starting LSB: Start/stop apache2 web server...                               
 +
Starting LSB: Create dynamic part of /etc/motd...                             
 +
Starting LSB: Start daemon at boot time...                                      
 
Starting Avahi mDNS/DNS-SD Stack...                                             
 
Starting Avahi mDNS/DNS-SD Stack...                                             
Starting Connection service...                                                
+
Starting LSB: Start xrdp and sesman daemons...                                
Starting Timestamping service...                                              
+
Starting LSB: OpenBSD Secure Shell server...                                  
Started Timestamping service                                          [�[1;32m  OK  �[0m]
+
Started fast remote file copy program daemon                          [�[1;32m  OK  �[0m]
Starting Angstrom LED config...                                              
+
Starting LSB: Regular background program processing daemon...                
Started Angstrom LED config                                            [�[1;32m  OK  �[0m]
+
Starting ACPI event daemon...                                                 
Starting Beaglebone cape support...                                          
+
Started ACPI event daemon                                              [�[1;32m  OK  �[0m]
Starting Start usb mass storage gadget...                                    
+
Starting Provide limited super user privileges to specific users...          
Started Start usb mass storage gadget                                  [�[1;32m  OK  �[0m]
+
Starting LSB: Run /etc/rc.local if it exist...                                
Starting Beaglebone 101 presentation...                                      
+
Starting D-Bus System Message Bus...                                          
Started Beaglebone 101 presentation                                    [�[1;32m  OK  �[0m]
+
Started D-Bus System Message Bus                                      [�[1;32m  OK  �[0m]
Starting Cloud9 IDE...                                                        
+
Starting LSB: Starts and stops Wicd...                                        
Started Cloud9 IDE                                                    [�[1;32m  OK  �[0m]
+
Starting LSB: SANE network scanner server...                                  
Starting GateOne daemon...                                                    
+
Starting LSB: Light Display Manager...                                        
Started GateOne daemon                                                [�[1;32m  OK  �[0m]
+
Starting LSB: Load kernel modules needed to enable cpufreq scaling...        
[    5.884307]  gadget: Mass Storage Function, version: 2009/09/11
+
Starting Yoder's boneServer Demo...                                          
[    5.890625]  gadget: Number of LUNs=1
+
Started Yoder's boneServer Demo                                        [[1;32m  OK  �[0m]
[    5.894561]  lun0: LUN: removable file: /dev/mmcblk0p1
+
Starting Bonescript autorun...                                                
[    5.900024]  gadget: Mass Storage Gadget, version: 2009/09/11
+
Started Bonescript autorun                                             [�[1;32m  OK  �[0m]
[    5.906127]  gadget: userspace failed to provide iSerialNumber
+
Starting WPA supplicant...                                                   
[    5.912322]  gadget: g_mass_storage ready
+
Starting Permit User Sessions...                                             
[    5.916564] musb-hdrc musb-hdrc.0: MUSB HDRC host driver
 
[    5.922241] musb-hdrc musb-hdrc.0: new USB bus registered, assigned bus number 2
 
[   5.930175] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
 
[   5.937377] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
 
[   5.945007] usb usb2: Product: MUSB HDRC host driver
 
 
 
[    5.950256] usb usb2: Manufacturer: Linux 3.2.25 musb-hcd
 
 
 
[    5.955963] usb usb2: SerialNumber: musb-hdrc.0
 
[    5.979034] hub 2-0:1.0: USB hub found
 
[    5.983123] hub 2-0:1.0: 1 port detected
 
[    5.987304] musb_g_ep0_irq 720: SetupEnd came in a wrong ep0stage setup
 
Started SSH Key Generation                                             [�[1;32m  OK  �[0m]
 
 
Starting Login Service...                                                       
 
Starting Login Service...                                                       
Starting BeagleBone Tester...                                                
+
Starting Console Manager...                                                  
Started BeagleBone Tester                                              [�[1;32m  OK  �[0m]
+
Starting Daemon for power management...                                       
Starting Permit User Sessions...                                             
+
Starting System Logging Service...                                           
Starting D-Bus System Message Bus...                                         
+
Started System Logging Service                                        [�[1;32m  OK  �[0m]
 
Started Console System Startup Logging                                [�[1;32m  OK  �[0m]
 
Started Console System Startup Logging                                [�[1;32m  OK  �[0m]
Started Restore Sound Card State                                      [�[1;32m  OK  �[0m]
+
Started LSB: Advanced IEEE 802.11 management daemon                    [�[1;32m  OK  �[0m]
Started Permit User Sessions    [   6.350128] gadget: high-speed config #1: Linux File-Backed Storage
+
saned[528]: saned disabled; edit /etc/default/saned
                                      [�[1;32m  OK  �[0m]
+
Started LSB: SANE network scanner server                              [�[1;32m  OK  �[0m]
Starting Getty on tty1...                                                     
+
Started Permit User Sessions                                          [�[1;32m  OK  �[0m]
Started Getty on tty1                                                  [�[1;32m  OK  �[0m]
 
 
Starting Serial Getty on ttyO0...                                               
 
Starting Serial Getty on ttyO0...                                               
Started Serial Getty on ttyO0  Started D-Bus System Message Bus                                      [�[1;32m  OK  �[0m]
+
Started Serial Getty on ttyO0                                         [�[1;32m  OK  �[0m]
xinetd[215]: Starting internet superserver: xinetd.
+
Started LSB: Create dynamic part of /etc/motd                          [�[1;32m  OK  �[0m]
Started xinetd.service                                                [�[1;32m  OK  �[0m]
+
Started LSB: Start busybox udhcpd at boot time                        [�[1;32m  OK �[0m]
Starting pvr-init.service...                                                 
+
Started Provide limited super user privileges to specific users        [�[1;32m  OK  �[0m]
Started Beaglebone cape support                                        [�[1;32m  OK  �[0m]
+
udhcpd[506]: Starting very small Busybox based DHCP server: udhcpd.
Started pvr-init.service                                              [�[1;32m  OK  �[0m]
+
Started LSB: Run /etc/rc.local if it exist                            [�[1;32m  OK  �[0m]
 +
Started LSB: Start daemon at boot time                                [�[1;32m  OK  �[0m]
 +
Started LSB: Start daemon at boot time                                [�[1;32m  OK  �[0m]
 +
lightdm[532]: Starting Light Display Manager: lightdm.
 +
Started LSB: Light Display Manager                                    [�[1;32m  OK  �[0m]
 
Started Avahi mDNS/DNS-SD Stack                                        [�[1;32m  OK  �[0m]
 
Started Avahi mDNS/DNS-SD Stack                                        [�[1;32m  OK  �[0m]
Started Connection service                                            [�[1;32m  OK  �[0m]
+
Started Daemon for power management                                    [�[1;32m  OK  �[0m]
 
Started Login Service                                                  [�[1;32m  OK  �[0m]
 
Started Login Service                                                  [�[1;32m  OK  �[0m]
[   7.832397] ip_tables: (C) 2000-2006 Netfilter Core Team
+
Started WPA supplicant                                                [�[1;32m  OK  �[0m]
[   8.227478]  
+
 
[   8.227478] CPSW phy found : id is : 0x7c0f1
+
loadcpufreq[533]: Loading cpufreq kernel modules...done (none).
[   8.234436] PHY 0:01 not found
+
Started LSB: Load kernel modules needed to enable cpufreq scaling      [�[1;32m  OK  �[0m]
[   8.262908] ADDRCONF(NETDEV_UP): eth0: link is not ready
+
Starting LSB: set CPUFreq kernel parameters...                               
Starting Gnome Display Manager...                                             
+
Debian GNU/Linux 7 yoder-debian-bone ttyO0
Started Gnome Display Manager                                          [�[1;32m  OK  �[0m]
+
 
12.222229] PHY: 0:00 - Link is Up - 100/Full
+
default username:password is [debian:temppwd]
[  12.227050] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+
 
 +
Support/FAQ: http://elinux.org/Beagleboard:BeagleBoneBlack_Debian
 +
 
 +
The IP Address for usb0 is: 192.168.7.2
 +
yoder-debian-bone login:
 +
 
 +
Starting Authenticate and Authorize Users to Run Privileged Tasks...         
 +
Starting Getty on tty1...                                                     
 +
Started Getty on tty1                                                  [�[1;32m  OK  �[0m]
 +
cpufrequtils[754]: CPUFreq Utilities: Setting ondemand CPUFreq governor...CPU0...done.
 +
Started LSB: set CPUFreq kernel parameters                            [�[1;32m  OK  �[0m]
 +
Started LSB: Regular background program processing daemon              [�[1;32m  OK  �[0m]
 +
cron[515]: Starting periodic command scheduler: cron.
 +
[  11.882351]  gadget: using random self ethernet address
 +
[  11.938523] usb0: MAC 0e:d4:cc:fb:3d:db
 +
[  11.942648] usb0: HOST MAC d0:39:72:1a:5e:cc
 +
ssh[513]: Starting OpenBSD Secure Shell server: sshd.
 +
Started LSB: OpenBSD Secure Shell server        [  11.961314]  gadget: Mass Storage Function, version: 2009/09/11
 +
                [  11.967636]  gadget: Number of LUNs=1
 +
      [�[1;32m  OK  �[0m]
 +
[  12.023672]  lun0: LUN: removable file: /dev/mmcblk0p1
 +
xrdp[512]: Starting Remote Desktop Protocol server : xrdp sesman.
 +
Started LSB: Start xrdp and sesman daemons                            [�[1;32m  OK  �[0m]
 +
[  12.066678] gadget: Multifunction Composite Gadget
 +
[  12.095208]  gadget: g_multi ready
 +
[  12.103760] musb-hdrc musb-hdrc.0.auto: MUSB HDRC host driver
 +
[   12.117834] musb-hdrc musb-hdrc.0.auto: new USB bus registered, assigned bus number 2
 +
[   12.136458] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
 +
[  12.143665] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
 +
[  12.151242] usb usb2: Product: MUSB HDRC host driver
 +
[   12.156444] usb usb2: Manufacturer: Linux 3.8.13-bone64 musb-hcd
 +
[  12.162732] usb usb2: SerialNumber: musb-hdrc.0.auto
 +
[  12.178390] hub 2-0:1.0: USB hub found
 +
[   12.185743] hub 2-0:1.0: 1 port detected
 +
Starting Serial Getty on ttyGS0...                                           
 +
Started Serial Getty on ttyGS0                                        [�[1;32m  OK  �[0m]
 +
[  12.610136] CAUTION: musb: Babble Interrupt Occurred
 +
[  12.701744] CAUTION: musb: Babble Interrupt Occurred
 +
[  12.806049]  gadget: high-speed config #1: Multifunction with RNDIS
 +
Starting ifup for eth0...                                                     
 +
Started ifup for eth0                                                  [�[1;32m  OK  �[0m]
 +
Starting ifup for usb0...                                                     
 +
Started ifup for usb0                                                  [�[1;32m  OK  �[0m]
 +
Started LSB: Log file handling to be done during bootup.               [�[1;32m  OK  �[0m]
 +
apache2[508]: Starting web server: apache2apache2: apr_sockaddr_info_get() failed for yoder-debian-bone
 +
Started Authenticate and Authorize Users to Run Privileged Tasks      [�[1;32m  OK  �[0m]
 +
apache2[508]: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
 +
Started Console Manager                                               [�[1;32m  OK  �[0m]
 +
apache2[508]: .
 +
Started LSB: Start/stop apache2 web server                            [�[1;32m  OK  �[0m]
 +
wicd[524]: Starting Network connection manager: wicd.
 +
Started LSB: Starts and stops Wicd                                    [�[1;32m  OK  �[0m]
 +
Starting Notify Audit System and Update UTMP about System Runlevel Changes... 
 +
[  20.944204] bone-capemgr bone_capemgr.9: part_number 'bspm_P9_42_27', version 'N/A'
 +
[  20.965068] bone-capemgr bone_capemgr.9: slot #7: generic override
 +
[  20.971619] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 7
 +
[  20.979647] bone-capemgr bone_capemgr.9: slot #7: 'Override Board Name,00A0,Override Manuf,bspm_P9_42_27'
 +
[  20.996361] bone-capemgr bone_capemgr.9: slot #7: Requesting part number/version based 'bspm_P9_42_27-00A0.dtbo
 +
[  21.017611] bone-capemgr bone_capemgr.9: slot #7: Requesting firmware 'bspm_P9_42_27-00A0.dtbo' for board-name 'Override Board Name', version '00A0'
 +
[  21.048164] bone-capemgr bone_capemgr.9: slot #7: dtbo 'bspm_P9_42_27-00A0.dtbo' loaded; converting to live tree
 +
[  21.069410] bone-capemgr bone_capemgr.9: slot #7: #2 overlays
 +
[  21.088475] bone-capemgr bone_capemgr.9: slot #7: Applied #2 overlays.
 +
[  21.146382] bone-capemgr bone_capemgr.9: part_number 'bspm_P9_41_27', version 'N/A'
 +
[  21.166191] bone-capemgr bone_capemgr.9: slot #8: generic override
 +
[  21.172733] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 8
 +
[  21.180755] bone-capemgr bone_capemgr.9: slot #8: 'Override Board Name,00A0,Override Manuf,bspm_P9_41_27'
 +
[  21.197026] bone-capemgr bone_capemgr.9: slot #8: Requesting part number/version based 'bspm_P9_41_27-00A0.dtbo
 +
[  21.217151] bone-capemgr bone_capemgr.9: slot #8: Requesting firmware 'bspm_P9_41_27-00A0.dtbo' for board-name 'Override Board Name', version '00A0'
 +
[  21.246158] bone-capemgr bone_capemgr.9: slot #8: dtbo 'bspm_P9_41_27-00A0.dtbo' loaded; converting to live tree
 +
[  21.258574] bone-capemgr bone_capemgr.9: slot #8: #2 overlays
 +
[  21.275693] bone-capemgr bone_capemgr.9: slot #8: Applied #2 overlays.
 +
[  21.311947] bone-capemgr bone_capemgr.9: part_number 'am33xx_pwm', version 'N/A'
 +
[  21.325518] bone-capemgr bone_capemgr.9: slot #9: generic override
 +
21.332152] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 9
 +
[  21.340184] bone-capemgr bone_capemgr.9: slot #9: 'Override Board Name,00A0,Override Manuf,am33xx_pwm'
 +
[  21.352023] bone-capemgr bone_capemgr.9: slot #9: Requesting part number/version based 'am33xx_pwm-00A0.dtbo
 +
[  21.362807] bone-capemgr bone_capemgr.9: slot #9: Requesting firmware 'am33xx_pwm-00A0.dtbo' for board-name 'Override Board Name', version '00A0'
 +
[  21.377065] bone-capemgr bone_capemgr.9: slot #9: dtbo 'am33xx_pwm-00A0.dtbo' loaded; converting to live tree
 +
[  21.390620] bone-capemgr bone_capemgr.9: slot #9: #8 overlays
 +
[  21.407332] ehrpwm 48300200.ehrpwm: unable to select pin group
 +
[  21.432227] ecap 48300100.ecap: unable to select pin group
 +
[  21.452760] ehrpwm 48302200.ehrpwm: unable to select pin group
 +
[  21.479268] ehrpwm 48304200.ehrpwm: unable to select pin group
 +
[  21.504492] ecap 48304100.ecap: unable to select pin group
 +
[  21.523700] bone-capemgr bone_capemgr.9: slot #9: Applied #8 overlays.
 +
[  21.553653] bone-capemgr bone_capemgr.9: part_number 'bspwm_P9_21_b', version 'N/A'
 +
[  21.580363] bone-capemgr bone_capemgr.9: slot #10: generic override
 +
[  21.587023] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 10
 +
[  21.595154] bone-capemgr bone_capemgr.9: slot #10: 'Override Board Name,00A0,Override Manuf,bspwm_P9_21_b'
 +
[  21.619153] bone-capemgr bone_capemgr.9: slot #10: Requesting part number/version based 'bspwm_P9_21_b-00A0.dtbo
 +
[  21.653918] bone-capemgr bone_capemgr.9: slot #10: Requesting firmware 'bspwm_P9_21_b-00A0.dtbo' for board-name 'Override Board Name', version '00A0'
 +
[  21.698505] bone-capemgr bone_capemgr.9: slot #10: dtbo 'bspwm_P9_21_b-00A0.dtbo' loaded; converting to live tree
 +
[  21.732154] bone-capemgr bone_capemgr.9: slot #10: #2 overlays
 +
[  21.755005] bone-capemgr bone_capemgr.9: slot #10: Applied #2 overlays.
 +
26.070714] net eth0: initializing cpsw version 1.12 (0)
 +
[  26.079190] net eth0: phy found : id is : 0x7c0f1
 +
[  26.084494] libphy: PHY 4a101000.mdio:01 not found
 +
[  26.089552] net eth0: phy 4a101000.mdio:01 not found on slave 1
 +
[  26.102037] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
  
.---O---.                                         
+
Debian GNU/Linux 7 yoder-debian-bone ttyO0
|      |                  .-.          o o       
 
|  |  |-----.-----.-----.| |  .----..-----.-----.
 
|      |    | __  |  ---'| '--.|  .-'|    |    |
 
|  |  |  |  |    |---  ||  --'|  |  |  '  | | | |
 
'---'---'--'--'--.  |-----''----''--'  '-----'-'-'-'
 
                -'  |
 
                '---'
 
  
The Angstrom Distribution beaglebone ttyO0
+
default username:password is [debian:temppwd]
  
Angstrom v2012.05 - Kernel 3.2.25
+
Support/FAQ: http://elinux.org/Beagleboard:BeagleBoneBlack_Debian
  
beaglebone login: root
+
The IP Address for usb0 is: 192.168.7.2
Last login: Tue Aug 14 10:24:19 UTC 2012 on ttyO0
+
yoder-debian-bone login: root
root@beaglebone:~#  
+
Last login: Thu Oct  2 12:46:54 EDT 2014 from yoder-linux.local on pts/2
 +
Linux yoder-debian-bone 3.8.13-bone64 #1 SMP Thu Aug 21 21:24:58 UTC 2014 armv7l
 +
 
 +
The programs included with the Debian GNU/Linux system are free software;
 +
the exact distribution terms for each program are described in the
 +
individual files in /usr/share/doc/*/copyright.
 +
 
 +
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
 +
permitted by applicable law.
 +
�[01;32mroot@yoder-debian-bone�[00m:�[01;34m~�[00m#  
 
</pre>
 
</pre>
  
Line 671: Line 1,049:
  
 
<pre>
 
<pre>
shutdown -r now
+
bone# reboot
beagle$
+
Stopping /etc/machine-id...                                                  
+
Broadcast message from root@yoder-debian-bone (ttyO0) (Thu Oct  2 12:47:28 20
Stopping Timestamping service...                                              
+
The system is going down for reboot NOW!
Stopping Angstrom LED config...                                              
+
 
Stopping Beaglebone cape support...                                          
+
�[01;32mroot@yoder-debian-bone�[00m:�[01;34m~�[00m#
Stopping Start usb mass storage gadget...                                    
+
 
Stopping Gnome Display Manager...                                            
+
Stopping ifup for usb0...                                                     
Stopping Periodic Command Scheduler...                                        
+
Stopping ifup for eth0...                                                     
 +
Stopping Authenticate and Authorize Users to Run Privileged Tasks...         
 +
Stopping Cloud9 IDE...                                                       
 +
Stopping LSB: Starts and stops Wicd...                                       
 +
Stopping LSB: SANE network scanner server...                                 
 +
Stopping LSB: Start daemon at boot time...                                   
 +
Stopping LSB: Advanced IEEE 802.11 management daemon...                       
 +
Stopping LSB: Create dynamic part of /etc/motd...                            
 +
Stopping LSB: Run /etc/rc.local if it exist...                               
 +
Stopping LSB: Start daemon at boot time...                                    
 +
Stopping LSB: Start/stop apache2 web server...                                
 +
Stopping LSB: Start xrdp and sesman daemons...                                
 +
Stopping LSB: Log file handling to be done during bootup....                 
 +
Stopping LSB: Light Display Manager...                                        
 +
Stopping LSB: Regular background program processing daemon...                 
 +
Stopping LSB: set CPUFreq kernel parameters...                               
 +
Stopping LSB: Start busybox udhcpd at boot time...                           
 +
Stopping LSB: OpenBSD Secure Shell server...                                  
 
Stopping Avahi mDNS/DNS-SD Stack...                                             
 
Stopping Avahi mDNS/DNS-SD Stack...                                             
Stopping Connection service...                                                 
+
Stopping Yoder's boneServer Demo...                                           
Stopping BeagleStopping pvr-init.service...                                                  
+
Stopping Bonescript autorun...                                                 
Starting Store Sound Card State...                                            
+
Stopping WPA supplicant...                                                    
Starting Save Random Seed...                                                  
+
Stopping Serial Getty on ttyGS0...                                            
Stopped Periodic Command Scheduler                                    [�[1;32m  OK  �[0m]
+
Stopping Getty on tty1...                                                    
Stopped Cloud9 IDE                                                    [�[1;32m  OK  �[0m]
+
Stopping Serial Getty on ttyO0...                                             
 +
Stopping Login Service...                                                     
 +
Stopping Console Manager...                                                  
 +
Stopping Daemon for power management...                              Stopped WPA supplicant                                                [�[1;32m  OK  �[0m]
 +
Stopped Bonescript autorun                                            [�[1;32m  OK  �[0m]
 
Stopped Login Service                                                  [�[1;32m  OK  �[0m]
 
Stopped Login Service                                                  [�[1;32m  OK  �[0m]
 +
Stopped System Logging Service                                        [�[1;32m  OK  �[0m]
 
Stopped Serial Getty on ttyO0                                          [�[1;32m  OK  �[0m]
 
Stopped Serial Getty on ttyO0                                          [�[1;32m  OK  �[0m]
 +
Stopped Authenticate and Authorize Users to Run Privileged Tasks      [�[1;32m  OK  �[0m]
 
Stopped Getty on tty1                                                  [�[1;32m  OK  �[0m]
 
Stopped Getty on tty1                                                  [�[1;32m  OK  �[0m]
Stopped GateOne daemon                                                [�[1;32m  OK  �[0m]
+
Stopped Daemon for power management                                   [�[1;32m  OK  �[0m]
Stopped Beaglebone 101 presentation                                   [�[1;32m  OK  �[0m]
+
Stopped Serial Getty on ttyGS0                                        [�[1;32m  OK  �[0m]
Stopped Gnome Display Manager                                          [�[1;32m  OK  �[0m]
+
Stopped Yoder's boneServer Demo                                       [�[1;32m  OK  �[0m]
Stopped /etc/mac[  832.455993] musb-hdrc musb-hdrc.0: remove, state 1
 
hine-id        [  832.461822] usb usb2: USB disconnect, device number 1
 
                                       [�[1;32m  OK  �[0m]
 
 
Stopping Permit User Sessions...                                               
 
Stopping Permit User Sessions...                                               
 +
Stopped Avahi mDNS/DNS-SD Stack                                        [�[1;32m  OK  �[0m]
 +
Stopped LSB: SANE network scanner server                              [�[1;32m  OK  �[0m]
 +
Stopped LSB: Advanced IEEE 802.11 management daemon                    [�[1;32m  OK  �[0m]
 +
Stopped Console Manager                                                [�[1;32m  OK  �[0m]
 +
Stopped LSB: Start daemon at boot time                                [�[1;32m  OK  �[0m]
 
Started Save Random Seed                                              [�[1;32m  OK  �[0m]
 
Started Save Random Seed                                              [�[1;32m  OK  �[0m]
Stopped D-Bus Sy[  832.563262] musb-hdrc musb-hdrc.0: USB bus 2 deregistered
+
Stopped LSB: Start busybox udhcpd at boot time                         [�[1;32m  OK  �[0m]
stem Message Bus                                      [�[1;32m  OK  �[0m]
 
Failed to start Store Sound Card State                                [�[1;31mFAILED�[0m]
 
See 'systemctl status alsa-store.service' for details.                          
 
Stopped Start usb mass storage gadget                                  [�[1;32m  OK  �[0m]
 
Stopped pvr-init.service                                              [�[1;32m  OK  �[0m]
 
 
Stopped Permit User Sessions                                          [�[1;32m  OK  �[0m]
 
Stopped Permit User Sessions                                          [�[1;32m  OK  �[0m]
Stopping xinetd.service...                                                    
+
Stopped ifup for usb0                                                  [�[1;32m  OK  �[0m]
Stopped Avahi mDNS/DNS-SD Stack                                        [�[1;32m  OK  �[0m]
+
Stopped ifup for eth0                                                  [�[1;32m  OK  �[0m]
Stopped xinetd.service                                                [�[1;32m  OK  �[0m]
+
Stopped LSB: Log file handling to be done during bootup.              [�[1;32m  OK  �[0m]
Stopped Timestamping service                                          [�[1;32m  OK  �[0m]
+
Stopped LSB: Create dynamic part of /etc/motd                          [�[1;32m  OK  �[0m]
Stopped Beaglebone cape support                                        [�[1;32m  OK  �[0m]
+
saned[1152]: saned disabled; edit /etc/default/saned
Stopped Angstrom LED config                                            [�[1;32m  OK  �[0m]
+
Stopped LSB: Run /etc/rc.local if it exist                            [�[1;32m  OK  �[0m]
xinetd[360]: Stopping internet superserver: xinetd.
+
udhcpd[1165]: Stopping very small Busybox based DHCP server: Stopped /usr/sbin/udhcpd (pid 911).
833.796325] Bridge firewalling registered
+
Stopped LSB: Light Display Manager                                    [�[1;32m  OK  �[0m]
Stopped Connection service                                            [�[1;32m  OK  �[0m]
+
Stopped Cloud9 IDE                                                    [�[1;32m  OK  �[0m]
 +
Stopping ACPI event daemon...                                                
 +
Stopped ACPI event daemon                                              [�[1;32m  OK  �[0m]
 +
udhcpd[1165]: udhcpd.
 +
Stopped LSB: set CPUFreq kernel parameters                            [�[1;32m  OK  �[0m]
 +
Stopping LSB: Load kernel modules needed to enable cpufreq scaling...        
 +
Stopped LSB: Start daemon at boot time                                [�[1;32m  OK  �[0m]
 +
lightdm[1162]: Stopping Light Display Manager: lightdm.
 +
Stopped LSB: Load kernel modules needed to enable cpufreq scaling      [�[1;32m  OK  �[0m]
 +
ssh[1166]: Stopping OpenBSD Secure Shell server: sshd.
 +
Stopped LSB: OpenBSD Secure Shell server                              [�[1;32m  OK  �[0m]
 +
xrdp[1160]: Stopping RDP Session manager : sesman xrdp.
 +
Stopped LSB: Start xrdp and sesman daemons                            [�[1;32m  OK  �[0m]
 +
wicd[1151]: Stopping Network connection manager: wicd.
 +
Stopped LSB: Starts and stops Wicd                                    [�[1;32m  OK  �[0m]
 +
Stopping D-Bus System Message Bus...                                         
 +
Stopped D-Bus System Message Bus                                      [�[1;32m  OK �[0m]
 +
cron[1163]: Stopping periodic command scheduler: cron.
 +
Stopped LSB: Regular background program processing daemon              [�[1;32m  OK  �[0m]
 +
apache2[1159]: Stopping web server: apache2 ... waiting .
 +
Stopped LSB: Start/stop apache2 web server                            [�[1;32m  OK  �[0m]
 
Starting Console System Reboot Logging...                                       
 
Starting Console System Reboot Logging...                                       
 +
Stopping LSB: Restore and store ALSA driver settings...                       
 +
Stopping LSB: Raise network interfaces....                                   
 +
Stopping Load Kernel Modules...                                               
 +
Stopped Load Kernel Modules                                            [�[1;32m  OK  �[0m]
 
Stopping Apply Kernel Variables...                                             
 
Stopping Apply Kernel Variables...                                             
 
Stopped Apply Kernel Variables                                        [�[1;32m  OK  �[0m]
 
Stopped Apply Kernel Variables                                        [�[1;32m  OK  �[0m]
Stopping Load Kernel Modules...                                              
+
Started Console System Reboot Logging                                  [�[1;32m  OK  �[0m]
Stopped Load Kernel Modules                                            [�[1;32m  OK  �[0m]
+
alsa-utils[1297]: Shutting down ALSA...warning: 'alsactl store' failed with error message 'alsactl: save_state:1580: No soundcards found...'...failed.
 +
Stopped LSB: Restore and store ALSA driver settings                    [�[1;32m  OK  �[0m]
 +
networking[1298]: Deconfiguring network interfaces...done.
 +
Stopped LSB: Raise network interfaces.                                [�[1;32m  OK  �[0m]
 
Starting Notify Audit System and Update UTMP about System Shutdown...           
 
Starting Notify Audit System and Update UTMP about System Shutdown...           
 
Stopping Remount API VFS...                                                     
 
Stopping Remount API VFS...                                                     
 
Stopped Remount API VFS                                                [�[1;32m  OK  �[0m]
 
Stopped Remount API VFS                                                [�[1;32m  OK  �[0m]
Stopping Temporary Directory...                                              
+
Stopping User Runtime Directory...                                            
 
Stopping Remount Root FS...                                                     
 
Stopping Remount Root FS...                                                     
 
Stopped Remount Root FS                                                [�[1;32m  OK  �[0m]
 
Stopped Remount Root FS                                                [�[1;32m  OK  �[0m]
Started Console System Reboot Logging                                  [�[1;32m  OK  �[0m]
 
Stopped Temporary Directory                                            [�[1;32m  OK  �[0m]
 
 
Sending SIGTERM to remaining processes...
 
Sending SIGTERM to remaining processes...
 
Sending SIGKILL to remaining processes...
 
Sending SIGKILL to remaining processes...
 
Unmounting file systems.
 
Unmounting file systems.
 +
Unmounted /sys/fs/fuse/connections.
 
Unmounted /dev/mqueue.
 
Unmounted /dev/mqueue.
 
Unmounted /sys/kernel/debug.
 
Unmounted /sys/kernel/debug.
[ 873.316955] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
+
Unmounted /sys/kernel/security.
 +
[   97.540104] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
 
Disabling swaps.
 
Disabling swaps.
 
Detaching loop devices.
 
Detaching loop devices.
 
Detaching DM devices.
 
Detaching DM devices.
[ 873.362060] musb-hdrc musb-hdrc.1: remove, state 1
+
[   97.627336] (NULL device *): gadget not registered.
[ 873.367248] usb usb1: USB disconnect, device number 1
+
[  97.646808] musb-hdrc musb-hdrc.0.auto: remove, state 4
[ 873.373565] musb-hdrc musb-hdrc.1: USB bus 1 deregistered
+
[   97.652659] usb usb2: USB disconnect, device number 1
[ 873.379669] Restarting system.
+
[   97.661085] musb-hdrc musb-hdrc.0.auto: USB bus 2 deregistered
 +
[   97.669953] Disabling non-boot CPUs ...
 +
[  97.674256] Restarting system.
 
</pre>
 
</pre>
  
 
== systemd ==
 
== systemd ==
 
<pre>
 
<pre>
beagle$ systemctl
+
bone$ systemctl
 +
 
 
UNIT                      LOAD  ACTIVE SUB      JOB DESCRIPTION
 
UNIT                      LOAD  ACTIVE SUB      JOB DESCRIPTION
proc-sys...misc.automount loaded active running       Arbitrary Executable File Formats File System Automount Point
+
proc-sys...misc.automount loaded active waiting       Arbitrary Executable File  
sys-devi...et-eth0.device loaded active plugged      /sys/devices/platform/cpsw.0/net/eth0
+
sys-devi...y-ttyO0.device loaded active plugged      /sys/devices/ocp.3/44e0900
sys-devi...et-usb0.device loaded active plugged      /sys/devices/platform/omap/musb-ti81xx/musb-hdrc.0/gadget/net/usb0
+
sys-devi...et-usb0.device loaded active plugged      /sys/devices/ocp.3/4740000
sys-devi...cblk0p1.device loaded active plugged      /sys/devices/platform/omap/omap_hsmmc.0/mmc_host/mmc0/mmc0:1234/block/mmcblk0/mmcblk0p
+
sys-devi...-ttyGS0.device loaded active plugged      /sys/devices/ocp.3/4740000
sys-devi...cblk0p2.device loaded active plugged      /sys/devices/platform/omap/omap_hsmmc.0/mmc_host/mmc0/mmc0:1234/block/mmcblk0/mmcblk0p
+
sys-devi...et-eth0.device loaded active plugged      /sys/devices/ocp.3/4a10000
sys-devi...mmcblk0.device loaded active plugged      /sys/devices/platform/omap/omap_hsmmc.0/mmc_host/mmc0/mmc0:1234/block/mmcblk0
+
sys-devi...k1boot0.device loaded active plugged      /sys/devices/ocp.3/mmc.11/
sys-devi...y-ttyO0.device loaded active plugged      /sys/devices/platform/omap/omap_uart.0/tty/ttyO0
+
sys-devi...k1boot1.device loaded active plugged      /sys/devices/ocp.3/mmc.11/
sys-devi...y-ttyO1.device loaded active plugged      /sys/devices/platform/omap/omap_uart.1/tty/ttyO1
+
sys-devi...cblk1p1.device loaded active plugged      /sys/devices/ocp.3/mmc.11/
sys-devi...y-ttyO2.device loaded active plugged      /sys/devices/platform/omap/omap_uart.2/tty/ttyO2
+
sys-devi...mmcblk1.device loaded active plugged      /sys/devices/ocp.3/mmc.11/
sys-devi...y-ttyO3.device loaded active plugged      /sys/devices/platform/omap/omap_uart.3/tty/ttyO3
+
sys-devi...cblk0p1.device loaded active plugged      /sys/devices/ocp.3/mmc.5/m
sys-devi...y-ttyO4.device loaded active plugged      /sys/devices/platform/omap/omap_uart.4/tty/ttyO4
+
sys-devi...cblk0p2.device loaded active plugged      /sys/devices/ocp.3/mmc.5/m
sys-devi...y-ttyO5.device loaded active plugged      /sys/devices/platform/omap/omap_uart.5/tty/ttyO5
+
sys-devi...mmcblk0.device loaded active plugged      /sys/devices/ocp.3/mmc.5/m
sys-devi...y-ttyS0.device loaded active plugged      /sys/devices/platform/serial8250/tty/ttyS0
+
sys-devi...y-ttyS0.device loaded active plugged      /sys/devices/platform/seri
sys-devi...y-ttyS1.device loaded active plugged      /sys/devices/platform/serial8250/tty/ttyS1
+
sys-devi...y-ttyS1.device loaded active plugged      /sys/devices/platform/seri
sys-devi...y-ttyS2.device loaded active plugged      /sys/devices/platform/serial8250/tty/ttyS2
+
sys-devi...y-ttyS2.device loaded active plugged      /sys/devices/platform/seri
sys-devi...y-ttyS3.device loaded active plugged      /sys/devices/platform/serial8250/tty/ttyS3
+
sys-devi...y-ttyS3.device loaded active plugged      /sys/devices/platform/seri
sys-devi...et-sit0.device loaded active plugged      /sys/devices/virtual/net/sit0
+
sys-devi...ty-tty0.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...ty-tty0.device loaded active plugged      /sys/devices/virtual/tty/tty0
+
sys-devi...ty-tty1.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...ty-tty1.device loaded active plugged      /sys/devices/virtual/tty/tty1
+
sys-devi...y-tty10.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...y-tty10.device loaded active plugged      /sys/devices/virtual/tty/tty10
+
sys-devi...y-tty11.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...y-tty11.device loaded active plugged      /sys/devices/virtual/tty/tty11
+
sys-devi...y-tty12.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...y-tty12.device loaded active plugged      /sys/devices/virtual/tty/tty12
+
sys-devi...ty-tty2.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...ty-tty2.device loaded active plugged      /sys/devices/virtual/tty/tty2
+
sys-devi...ty-tty3.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...ty-tty3.device loaded active plugged      /sys/devices/virtual/tty/tty3
+
sys-devi...ty-tty4.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...ty-tty4.device loaded active plugged      /sys/devices/virtual/tty/tty4
+
sys-devi...ty-tty5.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...ty-tty5.device loaded active plugged      /sys/devices/virtual/tty/tty5
+
sys-devi...ty-tty6.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...ty-tty6.device loaded active plugged      /sys/devices/virtual/tty/tty6
+
sys-devi...ty-tty7.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...ty-tty7.device loaded active plugged      /sys/devices/virtual/tty/tty7
+
sys-devi...ty-tty8.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...ty-tty8.device loaded active plugged      /sys/devices/virtual/tty/tty8
+
sys-devi...ty-tty9.device loaded active plugged      /sys/devices/virtual/tty/t
sys-devi...ty-tty9.device loaded active plugged      /sys/devices/virtual/tty/tty9
+
sys-module-fuse.device    loaded active plugged      /sys/module/fuse
 
-.mount                  loaded active mounted      /
 
-.mount                  loaded active mounted      /
dev-mqueue.mount          loaded active mounted      POSIX Message Queue File System
+
dev-mqueue.mount          loaded active mounted      POSIX Message Queue File S
etc-machine\x2did.mount   loaded active mounted      /etc/machine-id
+
run-lock.mount           loaded active mounted      Lock Directory
proc-sys...fmt_misc.mount loaded active mounted      Arbitrary Executable File Formats File System
+
run-user.mount            loaded active mounted      User Runtime Directory
 +
sys-fs-f...nections.mount loaded active mounted      FUSE Control File System
 
sys-kernel-debug.mount    loaded active mounted      Debug File System
 
sys-kernel-debug.mount    loaded active mounted      Debug File System
tmp.mount                 loaded active mounted      Temporary Directory
+
sys-kernel-security.mount loaded active mounted      Security File System
systemd-...d-console.path loaded active waiting      Dispatch Password Requests to Console Directory Watch
+
systemd-...d-console.path loaded active waiting      Dispatch Password Requests
systemd-...word-wall.path loaded active waiting      Forward Password Requests to Wall Directory Watch
+
systemd-...word-wall.path loaded active waiting      Forward Password Requests  
 +
acpid.service            loaded active running      ACPI event daemon
 +
alsa-utils.service        loaded active exited        LSB: Restore and store ALS
 +
apache2.service          loaded active running      LSB: Start/stop apache2 we
 
avahi-daemon.service      loaded active running      Avahi mDNS/DNS-SD Stack
 
avahi-daemon.service      loaded active running      Avahi mDNS/DNS-SD Stack
bone101.service           loaded active running      Beaglebone 101 presentation
+
bonescri...utorun.service loaded active running      Bonescript autorun
cape.service             loaded active exited        Beaglebone cape support
+
boneServer.service       loaded active running      Yoder's boneServer Demo
 +
bootlogs.service          loaded active exited        LSB: Log file handling to
 +
capemgr.service           loaded active exited        LSB: Start daemon at boot
 
cloud9.service            loaded active running      Cloud9 IDE
 
cloud9.service            loaded active running      Cloud9 IDE
connman.service           loaded active running      Connection service
+
console-...daemon.service loaded active running      Console Manager
console-...-start.service loaded active exited        Console System Startup Logging
+
console-...-start.service loaded active exited        Console System Startup Log
crond.service             loaded active running      Periodic Command Scheduler
+
console-setup.service    loaded active exited        LSB: Set console font and
 +
cpufrequtils.service      loaded active exited        LSB: set CPUFreq kernel pa
 +
cron.service             loaded active running      LSB: Regular background pr
 
dbus.service              loaded active running      D-Bus System Message Bus
 
dbus.service              loaded active running      D-Bus System Message Bus
dropbear...:59238.service loaded active running      SSH Per-Connection Server
+
generic-...script.service loaded active running      LSB: Start daemon at boot
gateone.service          loaded active running      GateOne daemon
 
gdm.service              loaded active running      Gnome Display Manager
 
 
getty@tty1.service        loaded active running      Getty on tty1
 
getty@tty1.service        loaded active running      Getty on tty1
leds.service             loaded active exited        Angstrom LED config
+
hdparm.service           loaded active exited        LSB: Tune IDE hard disks
network-...t-init.service loaded active exited        Start USB Ethernet gadget
+
hostapd.service          loaded active exited        LSB: Advanced IEEE 802.11
pvr-init.service          loaded active exited        pvr-init.service
+
ifup@eth0.service        loaded active exited        ifup for eth0
 +
ifup@usb0.service        loaded active exited        ifup for usb0
 +
kbd.service              loaded active exited        LSB: Prepare console
 +
keyboard-setup.service    loaded active exited        LSB: Set preliminary keyma
 +
lightdm.service          loaded active exited        LSB: Light Display Manager
 +
loadcpufreq.service      loaded active exited        LSB: Load kernel modules n
 +
motd.service              loaded active exited        LSB: Create dynamic part o
 +
networking.service       loaded active exited        LSB: Raise network interfa
 +
polkitd.service          loaded active running      Authenticate and Authorize
 +
pppd-dns.service          loaded active exited        LSB: Restore resolv.conf i
 +
rc.local.service         loaded active exited        LSB: Run /etc/rc.local if
 
remount-rootfs.service    loaded active exited        Remount Root FS
 
remount-rootfs.service    loaded active exited        Remount Root FS
 +
rsyslog.service          loaded active running      System Logging Service
 +
saned.service            loaded active exited        LSB: SANE network scanner
 +
screen-cleanup.service    loaded active exited        LSB: screen sessions clean
 +
serial-g...ttyGS0.service loaded active running      Serial Getty on ttyGS0
 
serial-g...@ttyO0.service loaded active running      Serial Getty on ttyO0
 
serial-g...@ttyO0.service loaded active running      Serial Getty on ttyO0
 +
ssh.service              loaded active running      LSB: OpenBSD Secure Shell
 
systemd-journald.service  loaded active running      Journal Service
 
systemd-journald.service  loaded active running      Journal Service
 
systemd-logind.service    loaded active running      Login Service
 
systemd-logind.service    loaded active running      Login Service
Line 806: Line 1,255:
 
systemd-...pi-vfs.service loaded active exited        Remount API VFS
 
systemd-...pi-vfs.service loaded active exited        Remount API VFS
 
systemd-sysctl.service    loaded active exited        Apply Kernel Variables
 
systemd-sysctl.service    loaded active exited        Apply Kernel Variables
systemd-...-setup.service loaded active exited        Recreate Volatile Files and Directories
+
systemd-...-setup.service loaded active exited        Recreate Volatile Files an
 
systemd-...ssions.service loaded active exited        Permit User Sessions
 
systemd-...ssions.service loaded active exited        Permit User Sessions
timestamp.service        loaded active exited        Timestamping service
 
 
udev-trigger.service      loaded active exited        udev Coldplug all Devices
 
udev-trigger.service      loaded active exited        udev Coldplug all Devices
 
udev.service              loaded active running      udev Kernel Device Manager
 
udev.service              loaded active running      udev Kernel Device Manager
udhcpd.service            loaded active running      DHCP server for USB0 network gadget
+
udhcpd.service            loaded active exited        LSB: Start busybox udhcpd
xinetd.service           loaded active exited        xinetd.service
+
upower.service            loaded active running      Daemon for power managemen
avahi-daemon.socket      loaded active listening    Avahi mDNS/DNS-SD Stack Activation Socket
+
wicd.service             loaded active running      LSB: Starts and stops Wicd
dbus.socket              loaded active running      D-Bus System Message Bus Socket
+
wpa_supplicant.service    loaded active running      WPA supplicant
dropbear.socket           loaded active listening    dropbear.socket
+
xrdp.service             loaded active running      LSB: Start xrdp and sesman
systemd-initctl.socket    loaded active listening    /dev/initctl Compatibility Named Pipe
+
acpid.socket              loaded active listening    ACPID Listen Socket
 +
avahi-daemon.socket      loaded active running      Avahi mDNS/DNS-SD Stack Ac
 +
bonescript.socket        loaded active listening    bonescript.socket
 +
cloud9.socket            loaded active running      cloud9.socket
 +
dbus.socket              loaded active running      D-Bus System Message Bus S
 +
syslog.socket             loaded active running      Syslog Socket
 +
systemd-initctl.socket    loaded active listening    /dev/initctl Compatibility
 
systemd-journald.socket  loaded active running      Journal Socket
 
systemd-journald.socket  loaded active running      Journal Socket
 
systemd-shutdownd.socket  loaded active listening    Delayed Shutdown Socket
 
systemd-shutdownd.socket  loaded active listening    Delayed Shutdown Socket
Line 822: Line 1,276:
 
udev-kernel.socket        loaded active running      udev Kernel Socket
 
udev-kernel.socket        loaded active running      udev Kernel Socket
 
basic.target              loaded active active        Basic System
 
basic.target              loaded active active        Basic System
 +
cryptsetup.target        loaded active active        Encrypted Volumes
 
getty.target              loaded active active        Login Prompts
 
getty.target              loaded active active        Login Prompts
 
graphical.target          loaded active active        Graphical Interface
 
graphical.target          loaded active active        Graphical Interface
Line 831: Line 1,286:
 
swap.target              loaded active active        Swap
 
swap.target              loaded active active        Swap
 
sysinit.target            loaded active active        System Initialization
 
sysinit.target            loaded active active        System Initialization
systemd-...es-clean.timer loaded active waiting      Daily Cleanup of Temporary Directories
+
syslog.target            loaded active active        Syslog
 +
systemd-...es-clean.timer loaded active waiting      Daily Cleanup of Temporary
  
 
LOAD  = Reflects whether the unit definition was properly loaded.
 
LOAD  = Reflects whether the unit definition was properly loaded.
Line 838: Line 1,294:
 
JOB    = Pending job for the unit.
 
JOB    = Pending job for the unit.
  
86 units listed. Pass --all to see inactive units, too.
+
114 units listed. Pass --all to see inactive units, too.
 
</pre>
 
</pre>
  
 
{{YoderFoot}}
 
{{YoderFoot}}

Latest revision as of 10:22, 2 October 2014

thumb‎ Embedded Linux Class by Mark A. Yoder

Openlogo-50.png


Up to this point we've always booted the Beagle into Linux and worked from there. Now it's time to learn what has to happen before we can run Linux. To do this you need to look at the output of the serial port so see the boot sequence.

Booting Up

Bootloader.jpg

You need to attach a 3.3V FTDI cable to see the boot sequence.

FTDI cable
FTDI connector
FTDI connector

Look for the black lead which is marked with a little triangle. This connects to the pin with the white dot next to it.

Boot up your bone and connect to the serial port using the screen command. Hit return and log in. You may need to make yourself owner of /dev/ttyUSB0 before running screen.

host$ sudo chown $USER:$USER /dev/ttyUSB0
host$ screen /dev/ttyUSB0 115200
Debian GNU/Linux 7 yoder-debian-bone ttyO0

default username:password is [debian:temppwd]

Support/FAQ: http://elinux.org/Beagleboard:BeagleBoneBlack_Debian

The IP Address for usb0 is: 192.168.7.2 
yoder-debian-bone login: root
Last login: Mon Sep 29 11:30:24 EDT 2014 on ttyO0
Linux yoder-debian-bone 3.8.13-bone64 #1 SMP Thu Aug 21 21:24:58 UTC 2014 armv7l
 
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
 
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
root@yoder-debian-bone:~# 

While in screen hit Ctrl-a ? to learn how to log data with screen. Turn on logging and capture the boot and shutdown data that is presented on this page. Keep it in a file where you can refer to it later.

Shutdown

Now shutdown and be ready to hit return when you get the u-boot prompt.

bone$ reboot
Sending SIGTERM to remaining processes...
Sending SIGKILL to remaining processes...
Unmounting file systems.
Unmounted /sys/fs/fuse/connections.
Unmounted /sys/kernel/security.
Unmounted /sys/kernel/debug.
Unmounted /dev/mqueue.
Disabling swaps.
Detaching loop devices.
Detaching DM devices.
[60419.344032] (NULL device *): gadget not registered.
[60419.367449] Restarting system.

These first messages are from the kernel shutting down.

U-Boot Starting

The following messages are the boot sequence.

U-Boot SPL 2014.07-00016-g329fca9 (Jul 28 2014 - 12:35:02)

U-Boot 2014.07-00016-g329fca9 (Jul 28 2014 - 12:35:02), Build: jenkins-github_Bootloader-Builder-375

I2C:   ready
DRAM:  512 MiB
NAND:  0 MiB
MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1
*** Warning - readenv() failed, using default environment

Net:   <ethaddr> not set. Validating first E-fuse MAC
cpsw, usb_ether
Hit any key to stop autoboot:  0 
U-Boot#

U-Boot help

You are now in the u-boot boot loader. Try help

U-Boot# help
?       - alias for 'help'
askenv  - get environment variables from stdin
base    - print or set address offset
bdinfo  - print Board Info structure
boot    - boot default, i.e., run 'bootcmd'
bootd   - boot default, i.e., run 'bootcmd'
bootm   - boot application image from memory
bootp   - boot image via network using BOOTP/TFTP protocol
bootz   - boot Linux zImage image from memory
chpart  - change active partition
cmp     - memory compare
coninfo - print console devices and information
cp      - memory copy
crc32   - checksum calculation
dfu     - Device Firmware Upgrade
dhcp    - boot image via network using DHCP/TFTP protocol
echo    - echo args to console
editenv - edit environment variable
eeprom  - EEPROM sub-system
env     - environment handling commands
exit    - exit script
ext2load- load binary file from a Ext2 filesystem
ext2ls  - list files in a directory (default /)
ext4load- load binary file from a Ext4 filesystem
ext4ls  - list files in a directory (default /)
false   - do nothing, unsuccessfully
fatinfo - print information about filesystem
fatload - load binary file from a dos filesystem
fatls   - list files in a directory (default /)
fatwrite- write file into a dos filesystem
fdt     - flattened device tree utility commands
go      - start application at address 'addr'
gpio    - query and control gpio pins
gpt     - GUID Partition Table
help    - print command description/usage
i2c     - I2C sub-system
iminfo  - print header information for application image
imxtract- extract a part of a multi-image
itest   - return true/false on integer compare
load    - load binary file from a filesystem
loadb   - load binary file over serial line (kermit mode)
loads   - load S-Record file over serial line
loadx   - load binary file over serial line (xmodem mode)
loady   - load binary file over serial line (ymodem mode)
loop    - infinite loop on address range
ls      - list files in a directory (default /)
md      - memory display
mdio    - MDIO utility commands
mii     - MII utility commands
mm      - memory modify (auto-incrementing address)
mmc     - MMC sub system
mmcinfo - display MMC info
mtdparts- define flash/nand partitions
mw      - memory write (fill)
nand    - NAND sub-system
nboot   - boot from NAND device
nfs     - boot image via network using NFS protocol
nm      - memory modify (constant address)
part    - disk partition related commands
ping    - send ICMP ECHO_REQUEST to network host
printenv- print environment variables
reset   - Perform RESET of the CPU
run     - run commands in an environment variable
saveenv - save environment variables to persistent storage
setenv  - set environment variables
sf      - SPI flash sub-system
showvar - print local hushshell variables
sleep   - delay execution for some time
source  - run script from memory
spl     - SPL configuration
sspi    - SPI utility command
test    - minimal test like /bin/sh
tftpboot- boot image via network using TFTP protocol
true    - do nothing, successfully
usb     - USB sub-system
usbboot - boot from USB device
version - print monitor, compiler and linker version

Discovering what boot does

Your goal is to discover what happens when the boot command is run.

U-Boot# help boot
boot - boot default, i.e., run 'bootcmd'

Usage:
boot 
U-Boot# print bootcmd
bootcmd=gpio set 53; i2c mw 0x24 1 0x3e; run findfdt; setenv mmcdev 0; setenv bootpart 0:1;
run mmcboot;gpio clear 56; gpio clear 55; gpio clear 54; setenv mmcdev 1; setenv bootpart 1:1;
run mmcboot;run nandboot;

Figure out what's happening above by 'pretty printing' bootcmd. That is, properly format the code so you can follow the flow.

gpio set 53;
i2c mw 0x24 1 0x3e;
run findfdt; 

setenv mmcdev 0;
setenv bootpart 0:1;
run mmcboot;

gpio clear 56;
gpio clear 55;
gpio clear 54;
setenv mmcdev 1;
setenv bootpart 1:1;
run mmcboot;
run nandboot;

You can dig further by printing the scripts being run. For example the findfdt script.

U-Boot# print findfdt
findfdt=
if test $board_name = A335BONE;
   then 
   setenv fdtfile am335x-bone.dtb;
   setenv fdtbase am335x-bone;
   fi;
if test $board_name = A335BNLT;
   then 
   setenv fdtfile am335x-boneblack.dtb;
   setenv fdtbase am335x-boneblack;
   fi;
if test $board_name = A33515BB;
   then 
   setenv fdtfile am335x-evm.dtb;
   fi;
if test $board_name = A335X_SK;
   then 
   setenv fdtfile am335x-evmsk.dtb;
   fi;
if test $fdtfile = undefined;
   then echo WARNING: Could not determine device tree to use;
   fi;

Or take a look at mmcboot

mmcboot=
mmc dev ${mmcdev};
if mmc rescan;
  then 
  gpio set 54;
  echo SD/MMC found on device ${mmcdev};
  setenv bootpart ${mmcdev}:1;
  echo Checking for: /uEnv.txt ...;
  if test -e mmc ${bootpart} /uEnv.txt;
     then 
     if run loadbootenv;
        then 
        gpio set 55;
        echo Loaded environment from ${bootenv};
        run importbootenv;
        fi;
     if test -n ${cape};
        then 
        if test -e mmc ${bootpart} ${fdtdir}/${fdtbase}-${cape}.dtb;
           then 
           setenv fdtfile ${fdtbase}-${cape}.dtb;
           fi;
        echo using: $fdtfile...;
        fi;
     echo Checking if uenvcmd is set ...;
     if test -n ${uenvcmd};
        then 
        gpio set 56;
        echo Running uenvcmd ...;
        run uenvcmd;
        fi;
     echo Checking if client_ip is set ...;
     if test -n ${client_ip};
        then 
        if test -n ${dtb};
           then 
           setenv fdtfile ${dtb};
           echo using ${fdtfile} ...;
           fi;
        gpio set 56;
        echo Running nfsboot ...;
        run nfsboot;
        fi;
     fi;
  echo Checking for: /${script} ...;
  if test -e mmc ${bootpart} /${script};
     then 
     gpio set 55;
     setenv scriptfile ${script};
     run loadbootscript;
     echo Loaded script from ${scriptfile};
     gpio set 56;
     run bootscript;
     fi;
  echo Checking for: /boot/${script} ...;
  if test -e mmc ${bootpart} /boot/${script};
     then 
     gpio set 55;
     setenv scriptfile /boot/${script};
     run loadbootscript;
     echo Loaded script from ${scriptfile};
     gpio set 56;
     run bootscript;
     fi;
  echo Checking for: /boot/uEnv.txt ...;
  for i in 1 2 3 4 5 6 7 ;
     do setenv mmcpart ${i};
     setenv bootpart ${mmcdev}:${mmcpart};
     if test -e mmc ${bootpart} /boot/uEnv.txt;
        then 
        gpio set 55;
        load mmc ${bootpart} ${loadaddr} /boot/uEnv.txt;
        env import -t ${loadaddr} ${filesize};
        echo Loaded environment from /boot/uEnv.txt;
        if test -n ${dtb};
           then 
           setenv fdtfile ${dtb};
           echo Using: dtb=${fdtfile} ...;
           fi;
        echo Checking if uname_r is set in /boot/uEnv.txt...;
        if test -n ${uname_r};
           then 
           gpio set 56;
           echo Running uname_boot ...;
           setenv mmcroot /dev/mmcblk${mmcdev}p${mmcpart} ro;
           run uname_boot;
           fi;
        fi;
     done;
  fi;

U-Boot print

It might be helpful to print the contents of all the variables and save it for future reference.

U-boot# print
arch=arm
autoconf=off
baudrate=115200
board=am335x
board_name=A335BNLT
board_rev=000C
boot_fdt=try
bootcmd=gpio set 53; i2c mw 0x24 1 0x3e; run findfdt; setenv mmcdev 0; setenv bootpart 0:1; run mmcboot;gpio clear 56; gpio clear 55; gpio clear 54; setenv mmcdev 1; setenv bootpart 1:1; run mmcboot;run nandboot;
bootcount=7
bootdelay=1
bootenv=uEnv.txt
bootfile=zImage
bootm_size=0x10000000
bootpart=0:2
bootscript=echo Running bootscript from mmc ...; source ${loadaddr}
console=ttyO0,115200n8
cpu=armv7
device=eth0
dfu_alt_info_emmc=rawemmc mmc 0 3751936
dfu_alt_info_mmc=boot part 0 1;rootfs part 0 2;MLO fat 0 1;MLO.raw mmc 0x100 0x100;u-boot.img.raw mmc 0x300 0x400;spl-os-args.raw mmc 0x80 0x80;spl-os-image.raw mmc 0x900 0x2000;spl-os-args fat 0 1;spl-os-image fat 0 1;u-boot.img fat 0 1;uEnv.txt fat 0 1
dfu_alt_info_nand=SPL part 0 1;SPL.backup1 part 0 2;SPL.backup2 part 0 3;SPL.backup3 part 0 4;u-boot part 0 5;u-boot-spl-os part 0 6;kernel part 0 8;rootfs part 0 9
dfu_alt_info_ram=kernel ram 0x80200000 0xD80000;fdt ram 0x80F80000 0x80000;ramdisk ram 0x81000000 0x4000000
eth1addr=d0:39:72:1a:5e:cc
ethact=cpsw
ethaddr=d0:39:72:1a:5e:ca
fdt_addr_r=0x88000000
fdtaddr=0x88000000
fdtdir=/dtbs
fdtfile=undefined
findfdt=if test $board_name = A335BONE; then setenv fdtfile am335x-bone.dtb; setenv fdtbase am335x-bone; fi; if test $board_name = A335BNLT; then setenv fdtfile am335x-boneblack.dtb; setenv fdtbase am335x-boneblack; fi; if test $board_name = A33515BB; then setenv fdtfile am335x-evm.dtb; fi; if test $board_name = A335X_SK; then setenv fdtfile am335x-evmsk.dtb; fi; if test $fdtfile = undefined; then echo WARNING: Could not determine device tree to use; fi; 
gw_ip=192.168.1.1
importbootenv=echo Importing environment from mmc ...; env import -t -r $loadaddr $filesize
kernel_addr_r=0x82000000
loadaddr=0x82000000
loadbootenv=load mmc ${bootpart} ${loadaddr} ${bootenv}
loadbootscript=load mmc ${bootpart} ${loadaddr} ${scriptfile};
loadfdt=echo loading ${fdtdir}/${fdtfile} ...; load mmc ${bootpart} ${fdtaddr} ${fdtdir}/${fdtfile}
loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}
loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz
loadrd=load mmc ${bootpart} ${rdaddr} ${bootdir}/${rdfile}; setenv rdsize ${filesize}
mmcargs=setenv bootargs console=${console} ${optargs} ${cape_disable} ${cape_enable} root=${mmcroot} rootfstype=${mmcrootfstype} ${cmdline}
mmcboot=mmc dev ${mmcdev}; if mmc rescan; then gpio set 54;echo SD/MMC found on device ${mmcdev};setenv bootpart ${mmcdev}:1; echo Checking for: /uEnv.txt ...;if test -e mmc ${bootpart} /uEnv.txt; then if run loadbootenv; then gpio set 55;echo Loaded environment from ${bootenv};run importbootenv;fi;if test -n ${cape}; then if test -e mmc ${bootpart} ${fdtdir}/${fdtbase}-${cape}.dtb; then setenv fdtfile ${fdtbase}-${cape}.dtb; fi; echo using: $fdtfile...; fi; echo Checking if uenvcmd is set ...;if test -n ${uenvcmd}; then gpio set 56; echo Running uenvcmd ...;run uenvcmd;fi;echo Checking if client_ip is set ...;if test -n ${client_ip}; then if test -n ${dtb}; then setenv fdtfile ${dtb};echo using ${fdtfile} ...;fi;gpio set 56; echo Running nfsboot ...;run nfsboot;fi;fi; echo Checking for: /${script} ...;if test -e mmc ${bootpart} /${script}; then gpio set 55;setenv scriptfile ${script};run loadbootscript;echo Loaded script from ${scriptfile};gpio set 56; run bootscript;fi; echo Checking for: /boot/${script} ...;if test -e mmc ${bootpart} /boot/${script}; then gpio set 55;setenv scriptfile /boot/${script};run loadbootscript;echo Loaded script from ${scriptfile};gpio set 56; run bootscript;fi; echo Checking for: /boot/uEnv.txt ...;for i in 1 2 3 4 5 6 7 ; do setenv mmcpart ${i};setenv bootpart ${mmcdev}:${mmcpart};if test -e mmc ${bootpart} /boot/uEnv.txt; then gpio set 55;load mmc ${bootpart} ${loadaddr} /boot/uEnv.txt;env import -t ${loadaddr} ${filesize};echo Loaded environment from /boot/uEnv.txt;if test -n ${dtb}; then setenv fdtfile ${dtb};echo Using: dtb=${fdtfile} ...;fi;echo Checking if uname_r is set in /boot/uEnv.txt...;if test -n ${uname_r}; then gpio set 56; echo Running uname_boot ...;setenv mmcroot /dev/mmcblk${mmcdev}p${mmcpart} ro;run uname_boot;fi;fi;done;fi;
mmcdev=0
mmcloados=run mmcargs; if test ${boot_fdt} = yes || test ${boot_fdt} = try; then if run loadfdt; then bootz ${loadaddr} - ${fdtaddr}; else if test ${boot_fdt} = try; then bootz; else echo WARN: Cannot load the DT; fi; fi; else bootz; fi;
mmcpart=1
mmcroot=/dev/mmcblk0p2 ro
mmcrootfstype=ext4 rootwait fixrtc
mtdids=nand0=omap2-nand.0
mtdparts=mtdparts=omap2-nand.0:128k(SPL),128k(SPL.backup1),128k(SPL.backup2),128k(SPL.backup3),1792k(u-boot),128k(u-boot-spl-os),128k(u-boot-env),5m(kernel),-(rootfs)
nandargs=setenv bootargs console=${console} ${optargs} root=${nandroot} rootfstype=${nandrootfstype}
nandboot=echo Booting from nand ...; run nandargs; nand read ${fdtaddr} u-boot-spl-os; nand read ${loadaddr} kernel; bootz ${loadaddr} - ${fdtaddr}
nandroot=ubi0:rootfs rw ubi.mtd=7,2048
nandrootfstype=ubifs rootwait=1
netargs=setenv bootargs console=${console} ${optargs} root=/dev/nfs nfsroot=${serverip}:${rootpath},${nfsopts} rw ip=dhcp
netboot=echo Booting from network ...; setenv autoload no; dhcp; tftp ${loadaddr} ${bootfile}; tftp ${fdtaddr} ${fdtfile}; run netargs; bootz ${loadaddr} - ${fdtaddr}
netmask=255.255.255.0
nfs_options=,vers=3
nfsargs=setenv bootargs console=${console} ${optargs} ${cape_disable} ${cape_enable} root=/dev/nfs rw rootfstype=${nfsrootfstype} nfsroot=${nfsroot} ip=${ip} ${cmdline}
nfsboot=echo Booting from ${server_ip} ...; setenv nfsroot ${server_ip}:${root_dir}${nfs_options}; setenv ip ${client_ip}:${server_ip}:${gw_ip}:${netmask}:${hostname}:${device}:${autoconf}; setenv autoload no; setenv serverip ${server_ip}; setenv ipaddr ${client_ip}; tftp ${loadaddr} ${bootfile}; tftp ${fdtaddr} dtbs/${fdtfile}; run nfsargs; bootz ${loadaddr} - ${fdtaddr}
nfsopts=nolock
nfsrootfstype=ext4 rootwait fixrtc
partitions=uuid_disk=${uuid_gpt_disk};name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}
ramargs=setenv bootargs console=${console} ${optargs} root=${ramroot} rootfstype=${ramrootfstype}
ramboot=echo Booting from ramdisk ...; run ramargs; bootz ${loadaddr} ${rdaddr} ${fdtaddr}
ramdisk_addr_r=0x88080000
ramroot=/dev/ram0 rw
ramrootfstype=ext2
rdaddr=0x88080000
root_dir=/home/userid/targetNFS
rootpath=/export/rootfs
script=boot.scr
scriptfile=${script}
server_ip=192.168.1.100
soc=am33xx
spiargs=setenv bootargs console=${console} ${optargs} root=${spiroot} rootfstype=${spirootfstype}
spiboot=echo Booting from spi ...; run spiargs; sf probe ${spibusno}:0; sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; bootz ${loadaddr}
spibusno=0
spiimgsize=0x362000
spiroot=/dev/mtdblock4 rw
spirootfstype=jffs2
spisrcaddr=0xe0000
static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off
stderr=serial
stdin=serial
stdout=serial
uname_boot=setenv bootdir /boot; setenv bootfile vmlinuz-${uname_r}; if test -e mmc ${bootpart} ${bootdir}/${bootfile}; then echo loading ${bootdir}/${bootfile} ...; run loadimage;setenv fdtdir /boot/dtbs/${uname_r}; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else setenv fdtdir /usr/lib/linux-image-${uname_r}; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else setenv fdtdir /lib/firmware/${uname_r}/device-tree; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else setenv fdtdir /boot/dtb-${uname_r}; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else setenv fdtdir /boot/dtbs; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else setenv fdtdir /boot/dtb; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else setenv fdtdir /boot; if test -e mmc ${bootpart} ${fdtdir}/${fdtfile}; then run loadfdt;else echo; echo unable to find ${fdtfile} ...; echo booting legacy ...;run mmcargs;bootz ${loadaddr}; fi;fi;fi;fi;fi;fi;fi; setenv rdfile initrd.img-${uname_r}; if test -e mmc ${bootpart} ${bootdir}/${rdfile}; then echo loading ${bootdir}/${rdfile} ...; run loadrd;if test -n ${uuid}; then setenv mmcroot UUID=${uuid} ro;fi;run mmcargs;bootz ${loadaddr} ${rdaddr}:${rdsize} ${fdtaddr}; else run mmcargs;bootz ${loadaddr} - ${fdtaddr}; fi;fi;
usbnet_devaddr=d0:39:72:1a:5e:cc
vendor=ti
ver=U-Boot 2014.07-00016-g329fca9 (Jul 28 2014 - 12:35:02)

Environment size: 8540/131068 bytes

Based on your investigation above, predict what will happen at boot time, then boot and check yourself.

U-boot boot

U-Boot# boot
gpio: pin 53 (gpio 53) value is 1
switch to partitions #0, OK
mmc0 is current device
gpio: pin 54 (gpio 54) value is 1
SD/MMC found on device 0
Checking for: /uEnv.txt ...
reading uEnv.txt
685 bytes read in 5 ms (133.8 KiB/s)
gpio: pin 55 (gpio 55) value is 1
Loaded environment from uEnv.txt
Importing environment from mmc ...
Checking if uenvcmd is set ...
gpio: pin 56 (gpio 56) value is 1
Running uenvcmd ...
789 bytes read in 25 ms (30.3 KiB/s)
5605264 bytes read in 325 ms (16.4 MiB/s)
2860737 bytes read in 174 ms (15.7 MiB/s)
26098 bytes read in 45 ms (565.4 KiB/s)
Kernel image @ 0x82000000 [ 0x000000 - 0x558790 ]
## Flattened Device Tree blob at 88000000
   Booting using the fdt blob at 0x88000000
   Loading Ramdisk to 8fd45000, end 8ffff6c1 ... OK
   Loading Device Tree to 8fd3b000, end 8fd445f1 ... OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
[    0.372393] omap2_mbox_probe: platform not supported
[    0.527193] tps65217-bl tps65217-bl: no platform data provided
[    0.591002] bone-capemgr bone_capemgr.9: slot #0: No cape found
[    0.628110] bone-capemgr bone_capemgr.9: slot #1: No cape found
[    0.665218] bone-capemgr bone_capemgr.9: slot #2: No cape found
[    0.702327] bone-capemgr bone_capemgr.9: slot #3: No cape found
[    0.720999] omap_hsmmc mmc.5: of_parse_phandle_with_args of 'reset' failed
[    0.782684] pinctrl-single 44e10800.pinmux: pin 44e10854 already requested by 44e10800.pinmux; cannot claim for gpio-leds.8
[    0.794381] pinctrl-single 44e10800.pinmux: pin-21 (gpio-leds.8) status -22
[    0.801664] pinctrl-single 44e10800.pinmux: could not request pin 21 on device pinctrl-single
Loading, please wait...
systemd-fsck[206]: rootfs: clean, 150367/469168 files, 783572/1930752 blocks

Debian GNU/Linux 7 yoder-debian-bone ttyO0

default username:password is [debian:temppwd]

Support/FAQ: http://elinux.org/Beagleboard:BeagleBoneBlack_Debian

The IP Address for usb0 is: 192.168.7.2
yoder-debian-bone login:  root

Looking on the FAT partition

The SD card you have been using has 2 partitions on it. Partition 1 is a small FAT partition. These are the files you see appear when you first boot the bone. This used to contain the boot loaders.

The second partition is ext4 and contains the root file system. These are all the other files.

You can see the FAT partition with:

bone$ mkdir /mnt/fat
bone$ ls /mnt/fat    # Hmm....  nothing there
bone$ mount /dev/mmcblk0p1 /mnt/fat
bone$ ls /mnt/fat    # and now there is
App          Docs     ID.txt       nfs-uEnv.txt  README.md  START.htm
autorun.inf  Drivers  LICENSE.txt  README.htm    scripts    uEnv.txt

If you look in /boot you'll see the files used to boot.

bone# cd /boot
bone# ls -F
config-3.8.13-bone64      SOC.sh                    uEnv.txt
dtbs/                     System.map-3.8.13-bone64  vmlinuz-3.8.13-bone64*
initrd.img-3.8.13-bone64  uboot/

vmlinuz-3.8.13-bone64 is the kernel.

Look in uEnv.txt

beagle$ cat uEnv.txt
#Docs: http://elinux.org/Beagleboard:U-boot_partitioning_layout_2.0

uname_r=3.8.13-bone64

#dtb=

cmdline=quiet init=/lib/systemd/systemd 
 
##Example
#cape_disable=capemgr.disable_partno=
#cape_enable=capemgr.enable_partno=MAY-gpio-set

##Disable HDMI/eMMC
cape_disable=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN,BB-BONE-EMMC-2G

##Disable HDMI
cape_disable=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN

##Disable eMMC
#cape_disable=capemgr.disable_partno=BB-BONE-EMMC-2G

##Audio Cape (needs HDMI Audio disabled)
#cape_disable=capemgr.disable_partno=BB-BONELT-HDMI
#cape_enable=capemgr.enable_partno=BB-BONE-AUDI-02

##enable BBB: eMMC Flasher:
##make sure, these tools are installed: dosfstools rsync
#cmdline=init=/opt/scripts/tools/eMMC/init-eMMC-flasher-v3.sh

These are the arguments that are passed to the kernel when it boots. Try editing the file and removing quiet, then reboot. You should see many more boot messages.

Kernel boot messages

Here's what I got with quiet removed.

Starting kernel

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.8.13-bone64 (root@a5-imx6q-wandboard-2gb) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Thu Aug 21 21:24:58 UTC 2014
[    0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=50c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine: Generic AM33XX (Flattened Device Tree), model: TI AM335x BeagleBone
[    0.000000] Memory policy: ECC disabled, Data cache writeback
[    0.000000] AM335X ES2.1 (l2cache sgx neon )
[    0.000000] PERCPU: Embedded 9 pages/cpu @c0d3f000 s14080 r8192 d14592 u36864
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 129792
[    0.000000] Kernel command line: console=tty0 console=ttyO0,115200n8 capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN root=/dev/mmcblk0p2 rootfstype=ext4 rootwait fixrtc init=/lib/systemd/systemd
[    0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
[    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] allocated 1048576 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Memory: 511MB = 511MB total
[    0.000000] Memory: 505412k/505412k available, 18876k reserved, 0K highmem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     vmalloc : 0xe0800000 - 0xff000000   ( 488 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xe0000000   ( 512 MB)
[    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
[    0.000000]     modules : 0xbf800000 - 0xbfe00000   (   6 MB)
[    0.000000]       .text : 0xc0008000 - 0xc07ee8e0   (8091 kB)
[    0.000000]       .init : 0xc07ef000 - 0xc082c700   ( 246 kB)
[    0.000000]       .data : 0xc082e000 - 0xc08b5740   ( 542 kB)
[    0.000000]        .bss : 0xc08b5740 - 0xc092ef00   ( 486 kB)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
[    0.000000] NR_IRQS:0 nr_irqs:0 0
[    0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
[    0.000000] Total of 128 interrupts on 1 active controller
[    0.000000] OMAP clockevent source: GPTIMER1 at 24000000 Hz
[    0.000000] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956ms
[    0.000000] OMAP clocksource: GPTIMER2 at 24000000 Hz
[    0.000000] Console: colour dummy device 80x30
[    0.000000] console [tty0] enabled
[    0.000643] Calibrating delay loop... 993.47 BogoMIPS (lpj=969728)
[    0.029195] pid_max: default: 32768 minimum: 301
[    0.029341] Security Framework initialized
[    0.029405] Mount-cache hash table entries: 512
[    0.035140] Initializing cgroup subsys cpuacct
[    0.035185] Initializing cgroup subsys memory
[    0.035234] Initializing cgroup subsys blkio
[    0.035325] CPU: Testing write buffer coherency: ok
[    0.035722] CPU0: thread -1, cpu 0, socket -1, mpidr 0
[    0.035790] Setting up static identity map for 0x804d3508 - 0x804d3554
[    0.036723] Brought up 1 CPUs
[    0.036754] SMP: Total of 1 processors activated (993.47 BogoMIPS).
[    0.037547] devtmpfs: initialized
[    0.045892] omap_hwmod: wd_timer2: _wait_target_disable failed
[    0.098042] pinctrl core: initialized pinctrl subsystem
[    0.098192] rstctl core: initialized rstctl subsystem
[    0.098484] regulator-dummy: no parameters
[    0.098806] NET: Registered protocol family 16
[    0.099353] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.104973] pinctrl-single 44e10800.pinmux: 142 pins at pa f9e10800 size 568
[    0.105590] platform 49000000.edma: alias fck already exists
[    0.105622] platform 49000000.edma: alias fck already exists
[    0.105643] platform 49000000.edma: alias fck already exists
[    0.106356] OMAP GPIO hardware version 0.1
[    0.108852] gpio-rctrl rstctl.4: loaded OK
[    0.112141] No ATAGs?
[    0.112166] hw-breakpoint: debug architecture 0x4 unsupported.
[    0.113472] cpsw.0: No hwaddr in dt. Using d0:39:72:1a:5e:ca from efuse
[    0.113510] cpsw.1: No hwaddr in dt. Using d0:39:72:1a:5e:cc from efuse
[    0.121697] bio: create slab <bio-0> at 0
[    0.128017] edma-dma-engine edma-dma-engine.0: TI EDMA DMA engine driver
[    0.128318] vmmcsd_fixed: 3300 mV 
[    0.129911] SCSI subsystem initialized
[    0.130161] usbcore: registered new interface driver usbfs
[    0.130232] usbcore: registered new interface driver hub
[    0.130441] usbcore: registered new device driver usb
[    0.131693] omap_i2c 44e0b000.i2c: bus 0 rev0.11 at 400 kHz
[    0.132617] input: tps65217_pwr_but as /devices/ocp.3/44e0b000.i2c/i2c-0/0-0024/input/input0
[    0.133944] DCDC1: at 1500 mV 
[    0.134843] vdd_mpu: 925 <--> 1325 mV at 1325 mV 
[    0.135664] vdd_core: 925 <--> 1150 mV at 1125 mV 
[    0.136479] LDO1: at 1800 mV 
[    0.137299] LDO2: at 3300 mV 
[    0.138805] LDO3: 1800 mV 
[    0.139620] LDO4: at 3300 mV 
[    0.140342] tps65217 0-0024: TPS65217 ID 0xe version 1.2
[    0.140861] omap_i2c 44e0b000.i2c: unable to select pin group
[    0.141341] omap_i2c 4819c000.i2c: bus 1 rev0.11 at 100 kHz
[    0.142805] omap_i2c 4819c000.i2c: unable to select pin group
[    0.142971] media: Linux media interface: v0.10
[    0.143044] Linux video capture interface: v2.00
[    0.143122] pps_core: LinuxPPS API ver. 1 registered
[    0.143138] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.143540] Advanced Linux Sound Architecture Driver Initialized.
[    0.144136] NetLabel: Initializing
[    0.144158] NetLabel:  domain hash size = 128
[    0.144171] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.144244] NetLabel:  unlabeled traffic allowed by default
[    0.144552] Switching to clocksource gp_timer
[    0.176131] NET: Registered protocol family 2
[    0.176795] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
[    0.176890] TCP bind hash table entries: 4096 (order: 4, 81920 bytes)
[    0.176981] TCP: Hash tables configured (established 4096 bind 4096)
[    0.177052] TCP: reno registered
[    0.177073] UDP hash table entries: 256 (order: 1, 12288 bytes)
[    0.177105] UDP-Lite hash table entries: 256 (order: 1, 12288 bytes)
[    0.177343] NET: Registered protocol family 1
[    0.177745] RPC: Registered named UNIX socket transport module.
[    0.177771] RPC: Registered udp transport module.
[    0.177785] RPC: Registered tcp transport module.
[    0.177799] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.178093] Trying to unpack rootfs image as initramfs...
[    0.372318] Freeing initrd memory: 2792K
[    0.372664] hw perfevents: enabled with ARMv7 Cortex-A8 PMU driver, 5 counters available
[    0.372946] CPU PMU: attempt to register multiple PMU devices!
[    0.372976] arm-pmu: probe of arm-pmu failed with error -28
[    0.373366] omap2_mbox_probe: platform not supported
[    0.523424] VFS: Disk quotas dquot_6.5.2
[    0.523684] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.524446] NFS: Registering the id_resolver key type
[    0.524531] Key type id_resolver registered
[    0.524547] Key type id_legacy registered
[    0.524823] fuse init (API version 7.20)
[    0.525236] Btrfs loaded
[    0.525345] msgmni has been set to 992
[    0.527060] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    0.527101] io scheduler noop registered
[    0.527115] io scheduler deadline registered
[    0.527144] io scheduler cfq registered (default)
[    0.528381] tps65217-bl tps65217-bl: no platform data provided
[    0.528421] tps65217-bl: probe of tps65217-bl failed with error -22
[    0.528948] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.530348] omap_uart 44e09000.serial: did not get pins for uart0 error: -19
[    0.530651] 44e09000.serial: ttyO0 at MMIO 0x44e09000 (irq = 72) is a OMAP UART0
[    1.290911] console [ttyO0] enabled
[    1.295274] [drm] Initialized drm 1.1.0 20060810
[    1.307447] brd: module loaded
[    1.314371] loop: module loaded
[    1.317773] at24 0-0050: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    1.325008] at24 1-0054: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    1.332239] at24 1-0055: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    1.339484] at24 1-0056: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    1.346712] at24 1-0057: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    1.360596] bone-capemgr bone_capemgr.9: Baseboard: 'A335BNLT,000C,3114BBBK1969'
[    1.368402] bone-capemgr bone_capemgr.9: compatible-baseboard=ti,beaglebone-black
[    1.376305] bone-capemgr bone_capemgr.9: Skipping disabled cape with part# BB-BONELT-HDMI
[    1.384904] bone-capemgr bone_capemgr.9: Skipping disabled cape with part# BB-BONELT-HDMIN
[    1.423932] bone-capemgr bone_capemgr.9: slot #0: No cape found
[    1.461037] bone-capemgr bone_capemgr.9: slot #1: No cape found
[    1.498147] bone-capemgr bone_capemgr.9: slot #2: No cape found
[    1.535256] bone-capemgr bone_capemgr.9: slot #3: No cape found
[    1.541481] bone-capemgr bone_capemgr.9: slot #4: specific override
[    1.548053] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 4
[    1.556055] bone-capemgr bone_capemgr.9: slot #4: 'Bone-LT-eMMC-2G,00A0,Texas Instrument,BB-BONE-EMMC-2G'
[    1.566130] bone-capemgr bone_capemgr.9: slot #5: specific override
[    1.572698] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 5
[    1.580749] bone-capemgr bone_capemgr.9: slot #5: 'Bone-Black-HDMI,00A0,Texas Instrument,BB-BONELT-HDMI'
[    1.590777] bone-capemgr bone_capemgr.9: slot #6: specific override
[    1.597376] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 6
[    1.605427] bone-capemgr bone_capemgr.9: slot #6: 'Bone-Black-HDMIN,00A0,Texas Instrument,BB-BONELT-HDMIN'
[    1.615721] bone-capemgr bone_capemgr.9: Skipping loading of disabled cape with part# BB-BONELT-HDMI
[    1.625285] bone-capemgr bone_capemgr.9: Skipping loading of disabled cape with part# BB-BONELT-HDMIN
[    1.635066] bone-capemgr bone_capemgr.9: initialized OK.
[    1.640650] bone-capemgr bone_capemgr.9: loader: before slot-4 BB-BONE-EMMC-2G:00A0 (prio 1)
[    1.649482] bone-capemgr bone_capemgr.9: loader: check slot-4 BB-BONE-EMMC-2G:00A0 (prio 1)
[    1.659652] OneNAND driver initializing
[    1.664634] usbcore: registered new interface driver cdc_ether
[    1.670811] usbcore: registered new interface driver rndis_host
[    1.677070] bone-capemgr bone_capemgr.9: loader: after slot-4 BB-BONE-EMMC-2G:00A0 (prio 1)
[    1.685886] usbcore: registered new interface driver cdc_ncm
[    1.691835] bone-capemgr bone_capemgr.9: slot #4: Requesting firmware 'cape-bone-2g-emmc1.dtbo' for board-name 'Bone-LT-eMMC-2G', version '00A0'
[    1.705844] usbcore: registered new interface driver cdc_acm
[    1.711795] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    1.720162] Initializing USB Mass Storage driver...
[    1.725287] bone-capemgr bone_capemgr.9: slot #4: dtbo 'cape-bone-2g-emmc1.dtbo' loaded; converting to live tree
[    1.736004] usbcore: registered new interface driver usb-storage
[    1.742292] USB Mass Storage support registered.
[    1.747322] bone-capemgr bone_capemgr.9: slot #4: #2 overlays
[    1.753914] bone-capemgr bone_capemgr.9: slot #4: Applied #2 overlays.
[    1.760786] bone-capemgr bone_capemgr.9: loader: done slot-4 BB-BONE-EMMC-2G:00A0 (prio 1)
[    1.769566] musb-hdrc: version 6.0, ?dma?, otg (peripheral+host)
[    1.776116] musb-hdrc musb-hdrc.0.auto: pdev->id = 0
[    1.781355] musb-hdrc musb-hdrc.0.auto: drivers/usb/musb/musb_dsps.c:468 dsps_musb_init: OK
[    1.790329] musb-hdrc musb-hdrc.0.auto: *** mode=3
[    1.795386] musb-hdrc musb-hdrc.0.auto: *** power=250
[    1.801202] musb-hdrc musb-hdrc.1.auto: pdev->id = 1
[    1.806441] musb-hdrc musb-hdrc.1.auto: drivers/usb/musb/musb_dsps.c:468 dsps_musb_init: OK
[    1.815310] musb-hdrc musb-hdrc.1.auto: *** mode=1
[    1.820356] musb-hdrc musb-hdrc.1.auto: *** power=250
[    1.825653] musb-hdrc musb-hdrc.1.auto: MUSB HDRC host driver
[    1.831891] musb-hdrc musb-hdrc.1.auto: new USB bus registered, assigned bus number 1
[    1.840241] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.847363] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.854918] usb usb1: Product: MUSB HDRC host driver
[    1.860110] usb usb1: Manufacturer: Linux 3.8.13-bone64 musb-hcd
[    1.866395] usb usb1: SerialNumber: musb-hdrc.1.auto
[    1.872173] hub 1-0:1.0: USB hub found
[    1.876157] hub 1-0:1.0: 1 port detected
[    1.881065] mousedev: PS/2 mouse device common for all mice
[    1.888365] omap_rtc 44e3e000.rtc: rtc core: registered 44e3e000.rtc as rtc0
[    1.895838] 44e3e000.rtc: already running
[    1.900203] i2c /dev entries driver
[    1.904830] pps_ldisc: PPS line discipline registered
[    1.910221] Driver for 1-wire Dallas network protocol.
[    1.916738] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
[    1.924348] device-mapper: ioctl: 4.23.1-ioctl (2012-12-18) initialised: dm-devel@redhat.com
[    1.933264] cpuidle: using governor ladder
[    1.937596] cpuidle: using governor menu
[    1.941991] omap_hsmmc mmc.5: of_parse_phandle_with_args of 'reset' failed
[    1.949203] omap_hsmmc mmc.5: Failed to get rstctl; not using any
[    1.955883] edma-dma-engine edma-dma-engine.0: allocated channel for 0:25
[    1.963050] edma-dma-engine edma-dma-engine.0: allocated channel for 0:24
[    1.970320] mmc.5 supply vmmc_aux not found, using dummy regulator
[    1.977123] omap_hsmmc mmc.5: pins are not configured from the driver
[    2.010290] gpio-rctrl rstctl.4: gpio_rctrl_request eMMC_RSTn
[    2.016466] omap_hsmmc mmc.11: Got rstctl (gpio:#0 name eMMC_RSTn) label:eMMC_RSTn
[    2.024436] gpio-rctrl rstctl.4: gpio_rctrl_deassert eMMC_RSTn
[    2.030779] edma-dma-engine edma-dma-engine.0: allocated channel for 0:3
[    2.037881] edma-dma-engine edma-dma-engine.0: allocated channel for 0:2
[    2.045253] mmc.11 supply vmmc_aux not found, using dummy regulator
[    2.051954] omap_hsmmc mmc.11: pins are not configured from the driver
[    2.086377] pinctrl-single 44e10800.pinmux: pin 44e10854 already requested by 44e10800.pinmux; cannot claim for gpio-leds.8
[    2.098048] pinctrl-single 44e10800.pinmux: pin-21 (gpio-leds.8) status -22
[    2.105336] pinctrl-single 44e10800.pinmux: could not request pin 21 on device pinctrl-single
[    2.114293] leds-gpio gpio-leds.8: pins are not configured from the driver
[    2.122228] ledtrig-cpu: registered to indicate activity on CPUs
[    2.128819] edma-dma-engine edma-dma-engine.0: allocated channel for 0:36
[    2.136019] omap-sham 53100000.sham: hw accel on OMAP rev 4.3
[    2.143483] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2
[    2.149711] edma-dma-engine edma-dma-engine.0: allocated channel for 0:5
[    2.156870] edma-dma-engine edma-dma-engine.0: allocated channel for 0:6
[    2.165735] mmc0: host does not support reading read-only switch. assuming write-enable.
[    2.175268] usbcore: registered new interface driver usbhid
[    2.181137] usbhid: USB HID core driver
[    2.186121] ashmem: initialized
[    2.189636] mmc0: new high speed SDHC card at address b368
[    2.195645] logger: created 256K log 'log_main'
[    2.200888] mmcblk0: mmc0:b368 G5334 7.45 GiB 
[    2.205821] logger: created 256K log 'log_events'
[    2.211586] logger: created 256K log 'log_radio'
[    2.216583]  mmcblk0: p1 p2
[    2.219975] logger: created 256K log 'log_system'
[    2.227442] TCP: cubic registered
[    2.231097] NET: Registered protocol family 10
[    2.236629] NET: Registered protocol family 17
[    2.241615] Key type dns_resolver registered
[    2.246298] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
[    2.254424] ThumbEE CPU extension supported.
[    2.258929] Registering SWP/SWPB emulation handler
[    2.264651] registered taskstats version 1
[    2.318475] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6
[    2.324914] davinci_mdio 4a101000.mdio: detected phy mask fffffffe
[    2.331494] mmc1: BKOPS_EN bit is not set
[    2.342763] libphy: 4a101000.mdio: probed
[    2.347083] davinci_mdio 4a101000.mdio: phy[0]: device 4a101000.mdio:00, driver SMSC LAN8710/LAN8720
[    2.356880] Detected MACID = d0:39:72:1a:5e:ca
[    2.361525] cpsw 4a100000.ethernet: NAPI disabled
[    2.368070] omap_rtc 44e3e000.rtc: setting system clock to 2014-09-06 20:49:08 UTC (1410036548)
[    2.378052] mmc1: new high speed MMC card at address 0001
[    2.388323] ALSA device list:
[    2.391513]   No soundcards found.
[    2.395153] mmcblk1: mmc1:0001 MMC04G 3.60 GiB 
[    2.400179] mmcblk1boot0: mmc1:0001 MMC04G partition 1 2.00 MiB
[    2.406969] Freeing init memory: 244K
[    2.412354] mmcblk1boot1: mmc1:0001 MMC04G partition 2 2.00 MiB
Loading, please wait...
[    2.423835]  mmcblk1: p1
[    2.430941]  mmcblk1boot1: unknown partition table
[    2.439899]  mmcblk1boot0: unknown partition table
[    2.506167] udevd[95]: starting version 175
Begin: Loading essential drivers ... done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... done.
[    3.727257] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
Begin: Running /scripts/local-bottom ... done.
done.
Begin: Running /scripts/init-bottom ... done.

Welcome to �[1;31mDebian GNU/Linux 7 (wheezy)�[0m!

Starting udev Kernel Device Manager...                                         
Starting Security File System...                                               
Started Huge Pages File System                                         [�[1;32m  OK  �[0m]
Starting Load Kernel Modules...                                                
Starting Debug File System...                                                  
Started Set Up Additional Binary Formats                               [�[1;32m  OK  �[0m]
Starting Apply Kernel Variables...                                             
Starting POSIX Message Queue File System...                                    
Starting User Runtime Directory...                                             
Starting Lock Directory...                                                     
Starting File System Check on Root Device...                                   
 Starting udev Coldplug all Devices...                                          
Starting Journal Service...                                                    
Started Journal Service                                                [�[1;32m  OK  �[0m]
Starting Remount API VFS...                                                    
Started Security File System                                           [�[1;32m  OK  �[0m]
Started Debug File System                                              [�[1;32m  OK  �[0m]
Started User Runtime Directory                                         [�[1;32m  OK  �[0m]
Started POSIX Message Queue File System                                [�[1;32m  OK  �[0m]
Started Apply Kernel Variables                                         [�[1;32m  OK  �[0m]
Started Remount API VFS                                                [�[1;32m  OK  �[0m]
Started Lock Directory                                                 [�[1;32m  OK  �[0m]
[    4.819492] rtusb init rt2870 --->
[    4.840185] usbcore: registered new interface driver rt2870
Started Load Kernel Modules                                            [�[1;32m  OK  �[0m]
Started Configuration File System                                      [�[1;32m  OK  �[0m]
Starting FUSE Control File System...                                           
Started FUSE Control File System                                       [�[1;32m  OK  �[0m]
Started udev Kernel Device Manager                                     [�[1;32m  OK  �[0m]
Starting LSB: Set pr[    4.993624] udevd[225]: starting version 175
eliminary keymap...                                        
Starting LSB: Tune IDE hard disks...                                           
systemd-fsck[208]: rootfs: clean, 150394/469168 files, 784886/1930752 blocks
Started File System Check on Root Device                               [�[1;32m  OK  �[0m]
hdparm[231]: Setting parameters of disc: (none).
Started LSB: Tune IDE hard disks                                       [�[1;32m  OK  �[0m]
Started udev Coldplug all Devices                                      [�[1;32m  OK  �[0m]
keyboard-setup[230]: Setting preliminary keymap...done.
Started LSB: Set preliminary keymap                                    [�[1;32m  OK  �[0m]
Starting Remount Root FS...                                                    
[    5.971806] EXT4-fs (mmcblk0p2): re-mounted. Opts: errors=remount-ro
Started Remount Root FS                                                [�[1;32m  OK  �[0m]
Started Various fixups to make systemd work better on Debian           [�[1;32m  OK  �[0m]
Started Lock Directory                                                 [�[1;32m  OK  �[0m]
Started Runtime Directory                                              [�[1;32m  OK  �[0m]
Starting LSB: Restore resolv.conf if the system crashed....                    
Starting Recreate Volatile Files and Directories...                            
Starting Load Random Seed...                                                   
Starting LSB: Restore and store ALSA driver settings...                        
Starting LSB: Prepare console...                                               
Starting LSB: screen sessions cleaning...                                      
Started LSB: Restore resolv.conf if the system crashed.                [�[1;32m  OK  �[0m]
Started Load Random Seed                                               [�[1;32m  OK  �[0m]
Starting LSB: Raise network interfaces....                                     
Started Recreate Volatile Files and Directories                        [�[1;32m  OK  �[0m]
kbd[295]: Setting console screen modes.
Started LSB: screen sessions cleaning                                  [�[1;32m  OK  �[0m]
kbd[295]: Skipping font and keymap setup (handled by console-setup).
Started LSB: Prepare console                                           [�[1;32m  OK  �[0m]
Starting LSB: Set console font and keymap...                                   
alsa-utils[294]: Setting up ALSA...warning: 'alsactl restore' failed with error message 'alsactl: load_state:1686: No soundcards found...'...done.
Started LSB: Restore and store ALSA driver settings                    [�[1;32m  OK  �[0m]
[    7.450337] omap_rng 48310000.rng: base address of priv is -97452032
networking[305]: Configuring network interfaces...done.
Started LSB: Raise network interfaces.                                 [�[1;32m  OK  �[0m]
[    7.753353] omap_rng 48310000.rng: OMAP Random Number Generator ver. 20
console-setup[343]: Setting up console font and keymap...done.
Started LSB: Set console font and keymap                               [�[1;32m  OK  �[0m]
Started Automatically Enable Systemd Units                             [�[1;32m  OK  �[0m]
Starting Console System Startup Logging...                                     
Starting LSB: Advanced IEEE 802.11 management daemon...                        
Starting LSB: Start daemon at boot time...                                     
Starting LSB: Start busybox udhcpd at boot time...                             
Starting LSB: Log file handling to be done during bootup....                   
Starting LSB: Start/stop apache2 web server...                                 
Starting LSB: Create dynamic part of /etc/motd...                              
Starting LSB: Start daemon at boot time...                                     
Starting Avahi mDNS/DNS-SD Stack...                                            
Starting LSB: Start xrdp and sesman daemons...                                 
Starting LSB: OpenBSD Secure Shell server...                                   
Started fast remote file copy program daemon                           [�[1;32m  OK  �[0m]
Starting LSB: Regular background program processing daemon...                  
Starting ACPI event daemon...                                                  
Started ACPI event daemon                                              [�[1;32m  OK  �[0m]
Starting Provide limited super user privileges to specific users...            
Starting LSB: Run /etc/rc.local if it exist...                                 
Starting D-Bus System Message Bus...                                           
Started D-Bus System Message Bus                                       [�[1;32m  OK  �[0m]
Starting LSB: Starts and stops Wicd...                                         
Starting LSB: SANE network scanner server...                                   
Starting LSB: Light Display Manager...                                         
Starting LSB: Load kernel modules needed to enable cpufreq scaling...          
Starting Yoder's boneServer Demo...                                            
Started Yoder's boneServer Demo                                        [�[1;32m  OK  �[0m]
Starting Bonescript autorun...                                                 
Started Bonescript autorun                                             [�[1;32m  OK  �[0m]
Starting WPA supplicant...                                                     
Starting Permit User Sessions...                                               
Starting Login Service...                                                      
Starting Console Manager...                                                    
Starting Daemon for power management...                                        
Starting System Logging Service...                                             
Started System Logging Service                                         [�[1;32m  OK  �[0m]
Started Console System Startup Logging                                 [�[1;32m  OK  �[0m]
Started LSB: Advanced IEEE 802.11 management daemon                    [�[1;32m  OK  �[0m]
saned[528]: saned disabled; edit /etc/default/saned
Started LSB: SANE network scanner server                               [�[1;32m  OK  �[0m]
Started Permit User Sessions                                           [�[1;32m  OK  �[0m]
Starting Serial Getty on ttyO0...                                              
Started Serial Getty on ttyO0                                          [�[1;32m  OK  �[0m]
Started LSB: Create dynamic part of /etc/motd                          [�[1;32m  OK  �[0m]
Started LSB: Start busybox udhcpd at boot time                         [�[1;32m  OK  �[0m]
Started Provide limited super user privileges to specific users        [�[1;32m  OK  �[0m]
udhcpd[506]: Starting very small Busybox based DHCP server: udhcpd.
Started LSB: Run /etc/rc.local if it exist                             [�[1;32m  OK  �[0m]
Started LSB: Start daemon at boot time                                 [�[1;32m  OK  �[0m]
Started LSB: Start daemon at boot time                                 [�[1;32m  OK  �[0m]
lightdm[532]: Starting Light Display Manager: lightdm.
Started LSB: Light Display Manager                                     [�[1;32m  OK  �[0m]
Started Avahi mDNS/DNS-SD Stack                                        [�[1;32m  OK  �[0m]
Started Daemon for power management                                    [�[1;32m  OK  �[0m]
Started Login Service                                                  [�[1;32m  OK  �[0m]
Started WPA supplicant                                                 [�[1;32m  OK  �[0m]

loadcpufreq[533]: Loading cpufreq kernel modules...done (none).
Started LSB: Load kernel modules needed to enable cpufreq scaling      [�[1;32m  OK  �[0m]
Starting LSB: set CPUFreq kernel parameters...                                 
Debian GNU/Linux 7 yoder-debian-bone ttyO0

default username:password is [debian:temppwd]

Support/FAQ: http://elinux.org/Beagleboard:BeagleBoneBlack_Debian

The IP Address for usb0 is: 192.168.7.2
yoder-debian-bone login: 

Starting Authenticate and Authorize Users to Run Privileged Tasks...           
Starting Getty on tty1...                                                      
Started Getty on tty1                                                  [�[1;32m  OK  �[0m]
cpufrequtils[754]: CPUFreq Utilities: Setting ondemand CPUFreq governor...CPU0...done.
Started LSB: set CPUFreq kernel parameters                             [�[1;32m  OK  �[0m]
Started LSB: Regular background program processing daemon              [�[1;32m  OK  �[0m]
cron[515]: Starting periodic command scheduler: cron.
[   11.882351]  gadget: using random self ethernet address
[   11.938523] usb0: MAC 0e:d4:cc:fb:3d:db
[   11.942648] usb0: HOST MAC d0:39:72:1a:5e:cc
ssh[513]: Starting OpenBSD Secure Shell server: sshd.
Started LSB: OpenBSD Secure Shell server        [   11.961314]  gadget: Mass Storage Function, version: 2009/09/11
                [   11.967636]  gadget: Number of LUNs=1
       [�[1;32m  OK  �[0m]
[   12.023672]  lun0: LUN: removable file: /dev/mmcblk0p1
xrdp[512]: Starting Remote Desktop Protocol server : xrdp sesman.
Started LSB: Start xrdp and sesman daemons                             [�[1;32m  OK  �[0m]
[   12.066678]  gadget: Multifunction Composite Gadget
[   12.095208]  gadget: g_multi ready
[   12.103760] musb-hdrc musb-hdrc.0.auto: MUSB HDRC host driver
[   12.117834] musb-hdrc musb-hdrc.0.auto: new USB bus registered, assigned bus number 2
[   12.136458] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[   12.143665] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   12.151242] usb usb2: Product: MUSB HDRC host driver
[   12.156444] usb usb2: Manufacturer: Linux 3.8.13-bone64 musb-hcd
[   12.162732] usb usb2: SerialNumber: musb-hdrc.0.auto
[   12.178390] hub 2-0:1.0: USB hub found
[   12.185743] hub 2-0:1.0: 1 port detected
Starting Serial Getty on ttyGS0...                                             
Started Serial Getty on ttyGS0                                         [�[1;32m  OK  �[0m]
[   12.610136] CAUTION: musb: Babble Interrupt Occurred
[   12.701744] CAUTION: musb: Babble Interrupt Occurred
[   12.806049]  gadget: high-speed config #1: Multifunction with RNDIS
Starting ifup for eth0...                                                      
Started ifup for eth0                                                  [�[1;32m  OK  �[0m]
Starting ifup for usb0...                                                      
Started ifup for usb0                                                  [�[1;32m  OK  �[0m]
Started LSB: Log file handling to be done during bootup.               [�[1;32m  OK  �[0m]
apache2[508]: Starting web server: apache2apache2: apr_sockaddr_info_get() failed for yoder-debian-bone
Started Authenticate and Authorize Users to Run Privileged Tasks       [�[1;32m  OK  �[0m]
apache2[508]: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
Started Console Manager                                                [�[1;32m  OK  �[0m]
apache2[508]: .
Started LSB: Start/stop apache2 web server                             [�[1;32m  OK  �[0m]
wicd[524]: Starting Network connection manager: wicd.
Started LSB: Starts and stops Wicd                                     [�[1;32m  OK  �[0m]
Starting Notify Audit System and Update UTMP about System Runlevel Changes...  
[   20.944204] bone-capemgr bone_capemgr.9: part_number 'bspm_P9_42_27', version 'N/A'
[   20.965068] bone-capemgr bone_capemgr.9: slot #7: generic override
[   20.971619] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 7
[   20.979647] bone-capemgr bone_capemgr.9: slot #7: 'Override Board Name,00A0,Override Manuf,bspm_P9_42_27'
[   20.996361] bone-capemgr bone_capemgr.9: slot #7: Requesting part number/version based 'bspm_P9_42_27-00A0.dtbo
[   21.017611] bone-capemgr bone_capemgr.9: slot #7: Requesting firmware 'bspm_P9_42_27-00A0.dtbo' for board-name 'Override Board Name', version '00A0'
[   21.048164] bone-capemgr bone_capemgr.9: slot #7: dtbo 'bspm_P9_42_27-00A0.dtbo' loaded; converting to live tree
[   21.069410] bone-capemgr bone_capemgr.9: slot #7: #2 overlays
[   21.088475] bone-capemgr bone_capemgr.9: slot #7: Applied #2 overlays.
[   21.146382] bone-capemgr bone_capemgr.9: part_number 'bspm_P9_41_27', version 'N/A'
[   21.166191] bone-capemgr bone_capemgr.9: slot #8: generic override
[   21.172733] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 8
[   21.180755] bone-capemgr bone_capemgr.9: slot #8: 'Override Board Name,00A0,Override Manuf,bspm_P9_41_27'
[   21.197026] bone-capemgr bone_capemgr.9: slot #8: Requesting part number/version based 'bspm_P9_41_27-00A0.dtbo
[   21.217151] bone-capemgr bone_capemgr.9: slot #8: Requesting firmware 'bspm_P9_41_27-00A0.dtbo' for board-name 'Override Board Name', version '00A0'
[   21.246158] bone-capemgr bone_capemgr.9: slot #8: dtbo 'bspm_P9_41_27-00A0.dtbo' loaded; converting to live tree
[   21.258574] bone-capemgr bone_capemgr.9: slot #8: #2 overlays
[   21.275693] bone-capemgr bone_capemgr.9: slot #8: Applied #2 overlays.
[   21.311947] bone-capemgr bone_capemgr.9: part_number 'am33xx_pwm', version 'N/A'
[   21.325518] bone-capemgr bone_capemgr.9: slot #9: generic override
[   21.332152] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 9
[   21.340184] bone-capemgr bone_capemgr.9: slot #9: 'Override Board Name,00A0,Override Manuf,am33xx_pwm'
[   21.352023] bone-capemgr bone_capemgr.9: slot #9: Requesting part number/version based 'am33xx_pwm-00A0.dtbo
[   21.362807] bone-capemgr bone_capemgr.9: slot #9: Requesting firmware 'am33xx_pwm-00A0.dtbo' for board-name 'Override Board Name', version '00A0'
[   21.377065] bone-capemgr bone_capemgr.9: slot #9: dtbo 'am33xx_pwm-00A0.dtbo' loaded; converting to live tree
[   21.390620] bone-capemgr bone_capemgr.9: slot #9: #8 overlays
[   21.407332] ehrpwm 48300200.ehrpwm: unable to select pin group
[   21.432227] ecap 48300100.ecap: unable to select pin group
[   21.452760] ehrpwm 48302200.ehrpwm: unable to select pin group
[   21.479268] ehrpwm 48304200.ehrpwm: unable to select pin group
[   21.504492] ecap 48304100.ecap: unable to select pin group
[   21.523700] bone-capemgr bone_capemgr.9: slot #9: Applied #8 overlays.
[   21.553653] bone-capemgr bone_capemgr.9: part_number 'bspwm_P9_21_b', version 'N/A'
[   21.580363] bone-capemgr bone_capemgr.9: slot #10: generic override
[   21.587023] bone-capemgr bone_capemgr.9: bone: Using override eeprom data at slot 10
[   21.595154] bone-capemgr bone_capemgr.9: slot #10: 'Override Board Name,00A0,Override Manuf,bspwm_P9_21_b'
[   21.619153] bone-capemgr bone_capemgr.9: slot #10: Requesting part number/version based 'bspwm_P9_21_b-00A0.dtbo
[   21.653918] bone-capemgr bone_capemgr.9: slot #10: Requesting firmware 'bspwm_P9_21_b-00A0.dtbo' for board-name 'Override Board Name', version '00A0'
[   21.698505] bone-capemgr bone_capemgr.9: slot #10: dtbo 'bspwm_P9_21_b-00A0.dtbo' loaded; converting to live tree
[   21.732154] bone-capemgr bone_capemgr.9: slot #10: #2 overlays
[   21.755005] bone-capemgr bone_capemgr.9: slot #10: Applied #2 overlays.
[   26.070714] net eth0: initializing cpsw version 1.12 (0)
[   26.079190] net eth0: phy found : id is : 0x7c0f1
[   26.084494] libphy: PHY 4a101000.mdio:01 not found
[   26.089552] net eth0: phy 4a101000.mdio:01 not found on slave 1
[   26.102037] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready

Debian GNU/Linux 7 yoder-debian-bone ttyO0

default username:password is [debian:temppwd]

Support/FAQ: http://elinux.org/Beagleboard:BeagleBoneBlack_Debian

The IP Address for usb0 is: 192.168.7.2
yoder-debian-bone login: root
Last login: Thu Oct  2 12:46:54 EDT 2014 from yoder-linux.local on pts/2
Linux yoder-debian-bone 3.8.13-bone64 #1 SMP Thu Aug 21 21:24:58 UTC 2014 armv7l

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
�[01;32mroot@yoder-debian-bone�[00m:�[01;34m~�[00m# 

Stopping kernel

 bone# reboot
�
Broadcast message from root@yoder-debian-bone (ttyO0) (Thu Oct  2 12:47:28 20
The system is going down for reboot NOW!

�[01;32mroot@yoder-debian-bone�[00m:�[01;34m~�[00m# 

Stopping ifup for usb0...                                                      
Stopping ifup for eth0...                                                      
Stopping Authenticate and Authorize Users to Run Privileged Tasks...           
Stopping Cloud9 IDE...                                                         
Stopping LSB: Starts and stops Wicd...                                         
Stopping LSB: SANE network scanner server...                                   
Stopping LSB: Start daemon at boot time...                                     
Stopping LSB: Advanced IEEE 802.11 management daemon...                        
Stopping LSB: Create dynamic part of /etc/motd...                              
Stopping LSB: Run /etc/rc.local if it exist...                                 
Stopping LSB: Start daemon at boot time...                                     
Stopping LSB: Start/stop apache2 web server...                                 
Stopping LSB: Start xrdp and sesman daemons...                                 
Stopping LSB: Log file handling to be done during bootup....                   
Stopping LSB: Light Display Manager...                                         
Stopping LSB: Regular background program processing daemon...                  
Stopping LSB: set CPUFreq kernel parameters...                                 
Stopping LSB: Start busybox udhcpd at boot time...                             
Stopping LSB: OpenBSD Secure Shell server...                                   
Stopping Avahi mDNS/DNS-SD Stack...                                            
Stopping Yoder's boneServer Demo...                                            
Stopping Bonescript autorun...                                                 
Stopping WPA supplicant...                                                     
Stopping Serial Getty on ttyGS0...                                             
Stopping Getty on tty1...                                                      
Stopping Serial Getty on ttyO0...                                              
Stopping Login Service...                                                      
Stopping Console Manager...                                                    
Stopping Daemon for power management...                               Stopped WPA supplicant                                                 [�[1;32m  OK  �[0m]
Stopped Bonescript autorun                                             [�[1;32m  OK  �[0m]
Stopped Login Service                                                  [�[1;32m  OK  �[0m]
Stopped System Logging Service                                         [�[1;32m  OK  �[0m]
Stopped Serial Getty on ttyO0                                          [�[1;32m  OK  �[0m]
Stopped Authenticate and Authorize Users to Run Privileged Tasks       [�[1;32m  OK  �[0m]
Stopped Getty on tty1                                                  [�[1;32m  OK  �[0m]
Stopped Daemon for power management                                    [�[1;32m  OK  �[0m]
Stopped Serial Getty on ttyGS0                                         [�[1;32m  OK  �[0m]
Stopped Yoder's boneServer Demo                                        [�[1;32m  OK  �[0m]
Stopping Permit User Sessions...                                               
Stopped Avahi mDNS/DNS-SD Stack                                        [�[1;32m  OK  �[0m]
Stopped LSB: SANE network scanner server                               [�[1;32m  OK  �[0m]
Stopped LSB: Advanced IEEE 802.11 management daemon                    [�[1;32m  OK  �[0m]
Stopped Console Manager                                                [�[1;32m  OK  �[0m]
Stopped LSB: Start daemon at boot time                                 [�[1;32m  OK  �[0m]
Started Save Random Seed                                               [�[1;32m  OK  �[0m]
Stopped LSB: Start busybox udhcpd at boot time                         [�[1;32m  OK  �[0m]
Stopped Permit User Sessions                                           [�[1;32m  OK  �[0m]
Stopped ifup for usb0                                                  [�[1;32m  OK  �[0m]
Stopped ifup for eth0                                                  [�[1;32m  OK  �[0m]
Stopped LSB: Log file handling to be done during bootup.               [�[1;32m  OK  �[0m]
Stopped LSB: Create dynamic part of /etc/motd                          [�[1;32m  OK  �[0m]
saned[1152]: saned disabled; edit /etc/default/saned
Stopped LSB: Run /etc/rc.local if it exist                             [�[1;32m  OK  �[0m]
udhcpd[1165]: Stopping very small Busybox based DHCP server: Stopped /usr/sbin/udhcpd (pid 911).
Stopped LSB: Light Display Manager                                     [�[1;32m  OK  �[0m]
Stopped Cloud9 IDE                                                     [�[1;32m  OK  �[0m]
Stopping ACPI event daemon...                                                  
Stopped ACPI event daemon                                              [�[1;32m  OK  �[0m]
udhcpd[1165]: udhcpd.
Stopped LSB: set CPUFreq kernel parameters                             [�[1;32m  OK  �[0m]
Stopping LSB: Load kernel modules needed to enable cpufreq scaling...          
Stopped LSB: Start daemon at boot time                                 [�[1;32m  OK  �[0m]
lightdm[1162]: Stopping Light Display Manager: lightdm.
Stopped LSB: Load kernel modules needed to enable cpufreq scaling      [�[1;32m  OK  �[0m]
ssh[1166]: Stopping OpenBSD Secure Shell server: sshd.
Stopped LSB: OpenBSD Secure Shell server                               [�[1;32m  OK  �[0m]
xrdp[1160]: Stopping RDP Session manager : sesman xrdp.
Stopped LSB: Start xrdp and sesman daemons                             [�[1;32m  OK  �[0m]
wicd[1151]: Stopping Network connection manager: wicd.
Stopped LSB: Starts and stops Wicd                                     [�[1;32m  OK  �[0m]
Stopping D-Bus System Message Bus...                                           
Stopped D-Bus System Message Bus                                       [�[1;32m  OK  �[0m]
cron[1163]: Stopping periodic command scheduler: cron.
Stopped LSB: Regular background program processing daemon              [�[1;32m  OK  �[0m]
apache2[1159]: Stopping web server: apache2 ... waiting .
Stopped LSB: Start/stop apache2 web server                             [�[1;32m  OK  �[0m]
Starting Console System Reboot Logging...                                      
Stopping LSB: Restore and store ALSA driver settings...                        
Stopping LSB: Raise network interfaces....                                     
Stopping Load Kernel Modules...                                                
Stopped Load Kernel Modules                                            [�[1;32m  OK  �[0m]
Stopping Apply Kernel Variables...                                             
Stopped Apply Kernel Variables                                         [�[1;32m  OK  �[0m]
Started Console System Reboot Logging                                  [�[1;32m  OK  �[0m]
alsa-utils[1297]: Shutting down ALSA...warning: 'alsactl store' failed with error message 'alsactl: save_state:1580: No soundcards found...'...failed.
Stopped LSB: Restore and store ALSA driver settings                    [�[1;32m  OK  �[0m]
networking[1298]: Deconfiguring network interfaces...done.
Stopped LSB: Raise network interfaces.                                 [�[1;32m  OK  �[0m]
Starting Notify Audit System and Update UTMP about System Shutdown...          
Stopping Remount API VFS...                                                    
Stopped Remount API VFS                                                [�[1;32m  OK  �[0m]
Stopping User Runtime Directory...                                             
Stopping Remount Root FS...                                                    
Stopped Remount Root FS                                                [�[1;32m  OK  �[0m]
Sending SIGTERM to remaining processes...
Sending SIGKILL to remaining processes...
Unmounting file systems.
Unmounted /sys/fs/fuse/connections.
Unmounted /dev/mqueue.
Unmounted /sys/kernel/debug.
Unmounted /sys/kernel/security.
[   97.540104] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
Disabling swaps.
Detaching loop devices.
Detaching DM devices.
[   97.627336] (NULL device *): gadget not registered.
[   97.646808] musb-hdrc musb-hdrc.0.auto: remove, state 4
[   97.652659] usb usb2: USB disconnect, device number 1
[   97.661085] musb-hdrc musb-hdrc.0.auto: USB bus 2 deregistered
[   97.669953] Disabling non-boot CPUs ...
[   97.674256] Restarting system.

systemd

bone$ systemctl

UNIT                      LOAD   ACTIVE SUB       JOB DESCRIPTION
proc-sys...misc.automount loaded active waiting       Arbitrary Executable File 
sys-devi...y-ttyO0.device loaded active plugged       /sys/devices/ocp.3/44e0900
sys-devi...et-usb0.device loaded active plugged       /sys/devices/ocp.3/4740000
sys-devi...-ttyGS0.device loaded active plugged       /sys/devices/ocp.3/4740000
sys-devi...et-eth0.device loaded active plugged       /sys/devices/ocp.3/4a10000
sys-devi...k1boot0.device loaded active plugged       /sys/devices/ocp.3/mmc.11/
sys-devi...k1boot1.device loaded active plugged       /sys/devices/ocp.3/mmc.11/
sys-devi...cblk1p1.device loaded active plugged       /sys/devices/ocp.3/mmc.11/
sys-devi...mmcblk1.device loaded active plugged       /sys/devices/ocp.3/mmc.11/
sys-devi...cblk0p1.device loaded active plugged       /sys/devices/ocp.3/mmc.5/m
sys-devi...cblk0p2.device loaded active plugged       /sys/devices/ocp.3/mmc.5/m
sys-devi...mmcblk0.device loaded active plugged       /sys/devices/ocp.3/mmc.5/m
sys-devi...y-ttyS0.device loaded active plugged       /sys/devices/platform/seri
sys-devi...y-ttyS1.device loaded active plugged       /sys/devices/platform/seri
sys-devi...y-ttyS2.device loaded active plugged       /sys/devices/platform/seri
sys-devi...y-ttyS3.device loaded active plugged       /sys/devices/platform/seri
sys-devi...ty-tty0.device loaded active plugged       /sys/devices/virtual/tty/t
sys-devi...ty-tty1.device loaded active plugged       /sys/devices/virtual/tty/t
sys-devi...y-tty10.device loaded active plugged       /sys/devices/virtual/tty/t
sys-devi...y-tty11.device loaded active plugged       /sys/devices/virtual/tty/t
sys-devi...y-tty12.device loaded active plugged       /sys/devices/virtual/tty/t
sys-devi...ty-tty2.device loaded active plugged       /sys/devices/virtual/tty/t
sys-devi...ty-tty3.device loaded active plugged       /sys/devices/virtual/tty/t
sys-devi...ty-tty4.device loaded active plugged       /sys/devices/virtual/tty/t
sys-devi...ty-tty5.device loaded active plugged       /sys/devices/virtual/tty/t
sys-devi...ty-tty6.device loaded active plugged       /sys/devices/virtual/tty/t
sys-devi...ty-tty7.device loaded active plugged       /sys/devices/virtual/tty/t
sys-devi...ty-tty8.device loaded active plugged       /sys/devices/virtual/tty/t
sys-devi...ty-tty9.device loaded active plugged       /sys/devices/virtual/tty/t
sys-module-fuse.device    loaded active plugged       /sys/module/fuse
-.mount                   loaded active mounted       /
dev-mqueue.mount          loaded active mounted       POSIX Message Queue File S
run-lock.mount            loaded active mounted       Lock Directory
run-user.mount            loaded active mounted       User Runtime Directory
sys-fs-f...nections.mount loaded active mounted       FUSE Control File System
sys-kernel-debug.mount    loaded active mounted       Debug File System
sys-kernel-security.mount loaded active mounted       Security File System
systemd-...d-console.path loaded active waiting       Dispatch Password Requests
systemd-...word-wall.path loaded active waiting       Forward Password Requests 
acpid.service             loaded active running       ACPI event daemon
alsa-utils.service        loaded active exited        LSB: Restore and store ALS
apache2.service           loaded active running       LSB: Start/stop apache2 we
avahi-daemon.service      loaded active running       Avahi mDNS/DNS-SD Stack
bonescri...utorun.service loaded active running       Bonescript autorun
boneServer.service        loaded active running       Yoder's boneServer Demo
bootlogs.service          loaded active exited        LSB: Log file handling to 
capemgr.service           loaded active exited        LSB: Start daemon at boot 
cloud9.service            loaded active running       Cloud9 IDE
console-...daemon.service loaded active running       Console Manager
console-...-start.service loaded active exited        Console System Startup Log
console-setup.service     loaded active exited        LSB: Set console font and 
cpufrequtils.service      loaded active exited        LSB: set CPUFreq kernel pa
cron.service              loaded active running       LSB: Regular background pr
dbus.service              loaded active running       D-Bus System Message Bus
generic-...script.service loaded active running       LSB: Start daemon at boot 
getty@tty1.service        loaded active running       Getty on tty1
hdparm.service            loaded active exited        LSB: Tune IDE hard disks
hostapd.service           loaded active exited        LSB: Advanced IEEE 802.11 
ifup@eth0.service         loaded active exited        ifup for eth0
ifup@usb0.service         loaded active exited        ifup for usb0
kbd.service               loaded active exited        LSB: Prepare console
keyboard-setup.service    loaded active exited        LSB: Set preliminary keyma
lightdm.service           loaded active exited        LSB: Light Display Manager
loadcpufreq.service       loaded active exited        LSB: Load kernel modules n
motd.service              loaded active exited        LSB: Create dynamic part o
networking.service        loaded active exited        LSB: Raise network interfa
polkitd.service           loaded active running       Authenticate and Authorize
pppd-dns.service          loaded active exited        LSB: Restore resolv.conf i
rc.local.service          loaded active exited        LSB: Run /etc/rc.local if 
remount-rootfs.service    loaded active exited        Remount Root FS
rsyslog.service           loaded active running       System Logging Service
saned.service             loaded active exited        LSB: SANE network scanner 
screen-cleanup.service    loaded active exited        LSB: screen sessions clean
serial-g...ttyGS0.service loaded active running       Serial Getty on ttyGS0
serial-g...@ttyO0.service loaded active running       Serial Getty on ttyO0
ssh.service               loaded active running       LSB: OpenBSD Secure Shell 
systemd-journald.service  loaded active running       Journal Service
systemd-logind.service    loaded active running       Login Service
systemd-...s-load.service loaded active exited        Load Kernel Modules
systemd-...pi-vfs.service loaded active exited        Remount API VFS
systemd-sysctl.service    loaded active exited        Apply Kernel Variables
systemd-...-setup.service loaded active exited        Recreate Volatile Files an
systemd-...ssions.service loaded active exited        Permit User Sessions
udev-trigger.service      loaded active exited        udev Coldplug all Devices
udev.service              loaded active running       udev Kernel Device Manager
udhcpd.service            loaded active exited        LSB: Start busybox udhcpd 
upower.service            loaded active running       Daemon for power managemen
wicd.service              loaded active running       LSB: Starts and stops Wicd
wpa_supplicant.service    loaded active running       WPA supplicant
xrdp.service              loaded active running       LSB: Start xrdp and sesman
acpid.socket              loaded active listening     ACPID Listen Socket
avahi-daemon.socket       loaded active running       Avahi mDNS/DNS-SD Stack Ac
bonescript.socket         loaded active listening     bonescript.socket
cloud9.socket             loaded active running       cloud9.socket
dbus.socket               loaded active running       D-Bus System Message Bus S
syslog.socket             loaded active running       Syslog Socket
systemd-initctl.socket    loaded active listening     /dev/initctl Compatibility
systemd-journald.socket   loaded active running       Journal Socket
systemd-shutdownd.socket  loaded active listening     Delayed Shutdown Socket
udev-control.socket       loaded active listening     udev Control Socket
udev-kernel.socket        loaded active running       udev Kernel Socket
basic.target              loaded active active        Basic System
cryptsetup.target         loaded active active        Encrypted Volumes
getty.target              loaded active active        Login Prompts
graphical.target          loaded active active        Graphical Interface
local-fs-pre.target       loaded active active        Local File Systems (Pre)
local-fs.target           loaded active active        Local File Systems
multi-user.target         loaded active active        Multi-User
remote-fs.target          loaded active active        Remote File Systems
sockets.target            loaded active active        Sockets
swap.target               loaded active active        Swap
sysinit.target            loaded active active        System Initialization
syslog.target             loaded active active        Syslog
systemd-...es-clean.timer loaded active waiting       Daily Cleanup of Temporary

LOAD   = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB    = The low-level unit activation state, values depend on unit type.
JOB    = Pending job for the unit.

114 units listed. Pass --all to see inactive units, too.




thumb‎ Embedded Linux Class by Mark A. Yoder