Table of Contents
Release Note of Android (v1.9)
Summary
Release Date | May/27/2015 (TBD) |
Release Type | Regular release |
Release Files | update.zip (MD5SUM:7f4509ca55cd51c2639592a072ce6ece) |
New updates
- Fix the malfunction of NO-EDID option
- Supports RTL8153 Gbit Ethernet controller
- Fix the HDMI input channel switching issue on the ViewSonic monitors.
Known issue
- The boot-animation is not correctly working in the portrait mode
Check version
shell@odroidxu3:/ $ uname -a Linux localhost 3.10.9-gefae4c9 #163 SMP PREEMPT Wed May 27 18:11:06 KST 2015 armv7l GNU/Linux shell@odroidxu3:/ $ getprop | grep ro.build.display.id [ro.build.display.id]: [odroidxu3-eng 4.4.4 KTU84Q eng.jenkins.20150527.170546 test-keys] shell@odroidxu3:/ $
How to checkout
$ repo init -u https://github.com/hardkernel/android.git -b 5422_4.4.4_master $ repo sync $ repo start 5422_4.4.4_master --all
Linux Kernel
We've merged the Kernel source into the Android repo. Android build-script also includes the Kernel compile.
Android Source
$ ./build.sh odroidxu3
Reference boot.ini
NO-EDID 1080P
- boot.ini
ODROIDXU-UBOOT-CONFIG setenv fb_x_res "1920" setenv fb_y_res "1080" setenv vout "hdmi" setenv left "56" setenv right "24" setenv upper "3" setenv lower "3" setenv hsync "14" setenv vsync "3" setenv hdmi_phy_res "1080p60hz" setenv edid "0" setenv led_blink "1" setenv bootcmd "movi read kernel 0 40008000;bootz 40008000" setenv bootargs "fb_x_res=${fb_x_res} fb_y_res=${fb_y_res} vout=${vout} hdmi_phy_res=${hdmi_phy_res} edid=${edid} left=${left} right=${right} upper=${upper} lower=${lower} vsync=${vsync} hsync=${hsync} led_blink=${led_blink}" boot
EDID 1080P
- boot.ini
ODROIDXU-UBOOT-CONFIG setenv fb_x_res "1920" setenv fb_y_res "1080" setenv vout "hdmi" setenv left "56" setenv right "24" setenv upper "3" setenv lower "3" setenv hsync "14" setenv vsync "3" setenv hdmi_phy_res "1080p60hz" setenv edid "1" setenv led_blink "1" setenv bootcmd "movi read kernel 0 40008000;bootz 40008000" setenv bootargs "fb_x_res=${fb_x_res} fb_y_res=${fb_y_res} vout=${vout} hdmi_phy_res=${hdmi_phy_res} edid=${edid} left=${left} right=${right} upper=${upper} lower=${lower} vsync=${vsync} hsync=${hsync} led_blink=${led_blink}" boot