Skip to content

Latest commit

 

History

History

kernel

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Building a custom fastaccel kernel

The kernel code lives at https://github.com/nneonneo/ViBand-kernel.

It is based off of the kernel for Android version 5.0.1 (LWX48P) for the LG G Watch, codename "dory".

Detailed build steps

These steps should be followed on a Linux machine for best results.

  1. Install the gcc-arm-none-eabi Ubuntu package or equivalent to get the cross-compilation toolchain
  2. Download and install unpack-mkbootimg
  3. git clone https://github.com/nneonneo/ViBand-kernel --depth 1
  4. export ARCH=arm CROSS_COMPILE=arm-none-eabi-
  5. make dory_defconfig
  6. make -j7
  7. Copy the build directory from this directory into the kernel tree
  8. cd build ; ./build-image.sh

If all goes well, you will have a flashable boot-new.img in the build directory. Grab that and follow the instructions from the prebuilt directory.