Android Customizing the Linux kernel: Difference between revisions
From Variscite Wiki
No edit summary |
|||
Line 40: | Line 40: | ||
}} | }} | ||
$ sudo `which fastboot` reboot | $ sudo `which fastboot` reboot | ||
{{#ifeq: {{#var:HARDWARE_NAME}} | VAR-SOM-MX6 || | |||
Note: While flashing if you encouter like below <br> | |||
$ sudo `which fastboot` flash boot_a out/target/product/{{#var:ANDROID_MACHINE_NAME}}/boot.img <br> | |||
target reported max download size of 1073741824 bytes | |||
Sending 'boot_a' (49152 KB)... | |||
OKAY [ 1.740s] | |||
Writing 'boot_a'... | |||
FAILED (remote: device is locked.) | |||
Finished. Total time: 1.772s | |||
Make sure you unlock your device following<br> | |||
{{Varlink|Fastboot Unlock|{{#var:RELEASE_LINK}}|Fastboot Unlock}} | |||
}} |
Revision as of 00:50, 1 January 2020
VAR-SOM-MX6 - Android Nougat N7.1.1 - Customizing the Linux kernel
Making changes to kernel configuration
$ cd ~/var_n_711_100/n_711_100_build/vendor/variscite/kernel_imx/ $ make ARCH=arm mrproper $ make ARCH=arm imx_v7_var_android_defconfig $ make ARCH=arm menuconfig
Navigate the menu and select the desired kernel functionalities, save the new configuration and exit.
Then, save the new configuration as the default configuration:
$ make ARCH=arm savedefconfig $ cp arch/arm/configs/imx_v7_var_android_defconfig arch/arm/configs/imx_v7_var_android_defconfig.orig $ cp defconfig arch/arm/configs/
Making changes to the device tree
For example, edit the following file:
- VAR-SOM-MX6 : ~/var_n_711_100/n_711_100_build/vendor/variscite/kernel_imx/arch/arm/boot/dts/imx6qdl-var-som.dtsi
- DART-MX6: ~/var_n_711_100/n_711_100_build/vendor/variscite/kernel_imx/arch/arm/boot/dts/imx6qdl-var-dart.dtsi
For example, if you want to make changes related to the SPI configuration you can refer to: SPI
Build a new boot.img
When you perform changes to the kernel, you may build boot.img solely instead of building the whole Android.
$ cd ~/var_n_711_100/n_711_100_build $ source build/envsetup.sh $ lunch -userdebug $ make bootimage
Flashing the boot image to the target
Run the following to boot the device into fastboot mode and reflash the boot image:
$ adb reboot bootloader $ sudo `which fastboot` flash bootout/target/product/var_mx6/boot-<setup-name>.img Replace setup-name as per above table. $ sudo `which fastboot` reboot