Advertisement
Andrew_ww

Untitled

May 5th, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. ubuntu@arm:/boot/uboot_old$ cat uEnv.txt
  2. kernel_file=zImage
  3. initrd_file=initrd.img
  4. initrd_high=0xffffffff
  5. fdt_high=0xffffffff
  6.  
  7. ##Video: [ls /sys/class/drm/]
  8. ##Docs: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/Documentation/fb/modedb.txt
  9. ##Uncomment to override:
  10. #kms_force_mode=video=HDMI-A-1:1024x768@60e
  11.  
  12. ##Enable systemd
  13. #systemd=quiet init=/lib/systemd/systemd
  14.  
  15. ##BeagleBone Cape Overrides
  16. ##Note: On the BeagleBone Black, there is also an uEnv.txt in the eMMC, so if these changes do not seem to be makeing a difference...
  17.  
  18. ##BeagleBone Black:
  19. ##Disable HDMI/eMMC
  20. #optargs=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN,BB-BONE-EMMC-2G
  21.  
  22. console=ttyO0,115200n8
  23.  
  24. mmcroot=UUID=c024c34d-f4a9-433b-8976-4e158d914251 ro
  25. mmcrootfstype=ext4 rootwait fixrtc
  26.  
  27. loadkernel=load mmc ${mmcdev}:${mmcpart} 0x80300000 ${kernel_file}
  28. loadinitrd=load mmc ${mmcdev}:${mmcpart} 0x81600000 ${initrd_file}; setenv initrd_size ${filesize}
  29. loadfdt=load mmc ${mmcdev}:${mmcpart} 0x815f0000 /dtbs/${fdtfile}
  30.  
  31. boot_ftd=run loadkernel; run loadinitrd; run loadfdt
  32.  
  33. device_args=run expansion_args; run mmcargs
  34. mmcargs=setenv bootargs console=${console} ${optargs} ${kms_force_mode} root=${mmcroot} rootfstype=${mmcrootfstype} ${expansion} ${systemd}
  35.  
  36. expansion_args=setenv expansion ip=${ip_method}
  37. uenvcmd=run boot_ftd; run device_args; bootz 0x80300000 0x81600000:${initrd_size} 0x815f0000
  38. #
  39. ubuntu@arm:/boot/uboot_old$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement