Android-x86 kitkat 4.4.2 local build

http://www.android-x86.org/getsourcecode

Get source and Build

$ mkdir android-x86
$ cd android-x86
$ repo init -u http://git.android-x86.org/manifest -b kitkat-x86
$ repo sync
$ make -j4 iso_img TARGET_PRODUCT=android_x86

Installation

$ sudo mkdir /android-2014-01-25/
$ cd out/target/product/x86/
$ sudo cp -r data/ initrd.img kernel ramdisk.img system/ /android-2014-01-25/

Configure the GRUB boot loader

/etc/grub.d/40_custom
menuentry "Android-x86 4.4.2 2014-01-25" --class android --class os {
insmod ext2
set root='(hd0,3)'
echo 'Loading Android-x86 4.4.2 2014-01-25 ...'
linux /android-2014-01-25/kernel root=/dev/ram0 androidboot.hardware=android_x86 acpi_sleep=s3_bios,s3_mode SRC=/android-2014-01-25 DATA=
initrd /android-2014-01-25/initrd.img
}
$ sudo update-grub