VIA Technology unveiled the low cost APC (Android PC) board based on WonderMedia WM8750 processor (ARM11) back in May, and started to ship the Android board this month (I think since that was their plan). The company has just released Kernel 2.6.32.9 and U-Boot source on github. Here’s how to retrieve the code provided git is already installed on your machine:
1 |
git clone git://github.com/apc-io/apc-8750.git |
You can then build U-Boot (provided you’ve already installed an ARM toolchain in your path):
1 2 3 |
cd $CURRENT_PATH/u-boot make wmt_config make all |
and the Linux kernel:
1 2 3 |
cd $CURRENT_PATH/kernel make 8710_defconfig make ubin |
The availability of the source means we should see Linux distribution like Debian, Fedora or Arch Linux ARM (separate from Arch Linux) running on the board very soon. In theory, it’s also possible to run a Linux distribution with the binary Linux kernel compiled for Android, but it causes some issues and also makes customization more difficult. I think they should also have release the code they modified […]