Table of Contents

Release Note of Android (v1.2)


Summary

Release Date Feb/08/2014 KST
Release Type Regular release
Release Files selfinstall-odroidc-eng-s805_4.4.2_dev_master-195-v1.2.img.xz (MD5SUM:e7e3b5572230fd434fdeb47f3b085448)

New updates

Known issues

How to checkout

The current version only provide Linux kernel and U-boot source code. Here are the instructions to checkout the source code and build. For more detail information, please visit U-boot and Kernel.

U-boot

$ git clone --depth 1 https://github.com/hardkernel/u-boot.git -b odroidc-v2011.03
$ cd u-boot
$ make odroidc_config
$ make

Linux Kernel

$ git clone --depth 1 https://github.com/hardkernel/linux -b odroidc-3.10.y-android
$ cd linux
$ make odroidc_defconfig
$ make
$ make uImage

ODROID Utility

$ git clone --depth 1 https://github.com/codewalkerster/android_packages_apps_Utility.git -b s805_4.4.2_dev_master

Android Source

Still not scheduled due to license review

Registering USB WiFi Dongle

We have been reported various WiFi dongles are not supported even though they have same chipset with Hardkernel's WiFi dongle #3 and #4, so we have enhanced to load its driver while registering VID&PID to use.By default, the current Android have two different WiFi dongles which are based Ralink 5572 and Realtek 8188CUS are supported. This is the file maintain the WiFi driver as per VID&PID, you can add your WiFi dongle to here and can be affected on next WiFi turn on.

# cat wifi_id_list.txt                                     
148f 5572 rt5572sta /system/lib/modules/rt5572sta.ko
0bda 8176 8192cu /system/lib/modules/8192cu.ko
0bda 7811 8192cu /system/lib/modules/8192cu.ko
0bda 817a 8192cu /system/lib/modules/8192cu.ko

For example, if you have Realtek 8188CUS based WiFi dongle and its VID&PID are 7392 and 7811, it won't work. So you have add a line below to the file.

7392 7811 8192cu /system/lib/modules/8192cu.ko

Note that the file system is mounted as read only, you must remount before you change the file so that your change can be stored.

# mount -o remount,rw /
# echo "7392 7811 8192cu /system/lib/modules/8192cu.ko" >> /etc/wifi_id_list.txt
# sync