2016-08-20 20:32:53 +00:00
|
|
|
# After modifying, run ./mkscr
|
2014-08-23 06:18:37 +00:00
|
|
|
|
2016-08-20 20:32:53 +00:00
|
|
|
# MAC address configuration
|
|
|
|
# setenv macaddr "00:1e:ee:61:7a:39"
|
2014-08-23 06:18:37 +00:00
|
|
|
|
2016-08-20 20:32:53 +00:00
|
|
|
# --- Screen Configuration for HDMI on linux-odroid-xu3 ---
|
|
|
|
# ---------------------------------------------------------
|
2014-08-23 06:18:37 +00:00
|
|
|
# Uncomment only ONE line! Leave all commented for automatic selection.
|
|
|
|
# Uncomment only the setenv line!
|
2016-08-20 20:32:53 +00:00
|
|
|
# ---------------------------------------------------------
|
2014-08-23 06:18:37 +00:00
|
|
|
# ODROID-VU forced resolution
|
|
|
|
# setenv videoconfig "video=HDMI-A-1:1280x800@60"
|
|
|
|
# -----------------------------------------------
|
|
|
|
# 1920x1080 (1080P) with monitor provided EDID information. (1080p-edid)
|
|
|
|
# setenv videoconfig "video=HDMI-A-1:1920x1080@60"
|
|
|
|
# -----------------------------------------------
|
|
|
|
# 1920x1080 (1080P) without monitor data using generic information (1080p-noedid)
|
|
|
|
# setenv videoconfig "drm_kms_helper.edid_firmware=edid/1920x1080.bin"
|
|
|
|
# -----------------------------------------------
|
|
|
|
# 1280x720 (720P) with monitor provided EDID information. (720p-edid)
|
|
|
|
# setenv videoconfig "video=HDMI-A-1:1280x720@60"
|
|
|
|
# -----------------------------------------------
|
|
|
|
# 1280x720 (720P) without monitor data using generic information (720p-noedid)
|
|
|
|
# setenv videoconfig "drm_kms_helper.edid_firmware=edid/1280x720.bin"
|
|
|
|
# -----------------------------------------------
|
|
|
|
# 1024x768 without monitor data using generic information
|
|
|
|
# setenv videoconfig "drm_kms_helper.edid_firmware=edid/1024x768.bin"
|
|
|
|
|
2016-08-20 20:32:53 +00:00
|
|
|
part uuid ${devtype} ${devnum}:${bootpart} uuid
|
|
|
|
setenv bootargs "console=tty1 console=ttySAC2,115200n8 root=PARTUUID=${uuid} rw rootwait smsc95xx.macaddr=${macaddr} ${videoconfig}"
|
2014-08-23 06:18:37 +00:00
|
|
|
|
2016-08-20 20:32:53 +00:00
|
|
|
if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /boot/zImage; then
|
|
|
|
if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /boot/dtbs/${fdtfile}; then
|
|
|
|
if load ${devtype} ${devnum}:${bootpart} ${ramdisk_addr_r} /boot/initramfs-linux.img; then
|
|
|
|
bootz ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r};
|
|
|
|
else
|
|
|
|
bootz ${kernel_addr_r} - ${fdt_addr_r};
|
|
|
|
fi;
|
|
|
|
fi;
|
|
|
|
fi
|