Advertisement
Guest User

uEnv

a guest
Aug 16th, 2015
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. ##Video: Uncomment to override:
  2. ##see: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/Documentation/fb/modedb.txt
  3. #kms_force_mode=video=HDMI-A-1:1024x768@60e
  4.  
  5. ##Enable systemd
  6. systemd=quiet init=/lib/systemd/systemd
  7.  
  8. ##BeagleBone Cape Overrides
  9.  
  10. ##BeagleBone Black:
  11. ##Disable HDMI/eMMC
  12. #optargs=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN,BB-BONE-EMMC-2G
  13.  
  14. ##Disable HDMI
  15. optargs=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN
  16. cmdline=init=/opt/scripts/tools/eMMC/init-eMMC-flasher-v3.sh
  17. cmdline=init=/opt/scripts/tools/eMMC/init-eMMC-flasher-v3.sh
  18.  
  19. ##WIP: v3.13+ capes..
  20. #cape=lcd4-01
  21. #cape=
  22.  
  23. ##note: the eMMC flasher script relies on the next line
  24. mmcroot=UUID=12b65ed8-43b8-47c6-86d1-a6468eea9d4f ro
  25. mmcrootfstype=ext4 rootwait fixrtc
  26.  
  27. ##These are needed to be compliant with Angstrom's 2013.06.20 u-boot.
  28. console=ttyO0,115200n8
  29.  
  30. kernel_file=zImage
  31. initrd_file=initrd.img
  32.  
  33. loadaddr=0x82000000
  34. initrd_addr=0x88080000
  35. fdtaddr=0x88000000
  36.  
  37. initrd_high=0xffffffff
  38. fdt_high=0xffffffff
  39.  
  40. loadkernel=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${kernel_file}
  41. loadinitrd=load mmc ${mmcdev}:${mmcpart} ${initrd_addr} ${initrd_file}; setenv initrd_size ${filesize}
  42. loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdtaddr} /dtbs/${fdtfile}
  43.  
  44. loadfiles=run loadkernel; run loadinitrd; run loadfdt
  45. mmcargs=setenv bootargs console=tty0 console=${console} ${optargs} ${kms_force_mode} root=${mmcroot} rootfstype=${mmcrootfstype} ${systemd}
  46.  
  47. uenvcmd=run loadfiles; run mmcargs; bootz ${loadaddr} ${initrd_addr}:${initrd_size} ${fdtaddr}
  48. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement