#
Configuring Aaropa builds after install
When you install one of our Aaropa based builds, the Linux GUI based installer allows you to configure many of the properties in the build on install like codecs, audio HAL, bluetooth HAL, and more.
But once installed, there is not obvious way to update the boot configuration from the Android UI. That is where this document comes in.
#
Updating the boot configuration
Updating the boot configuration of the build can be done in a couple different ways:
- Using KernelSU and Termux with Nano or Vi editor to update the boot configuration.
- Using DEBUG mode terminal and Vi editor to update the boot configuration.
#
Using KernelSU and Termux with Nano or Vi editor
To update the boot configuration using KernelSU and Termux with Nano or Vi editor, follow these steps:
- Launch KernelSU app and tap the shield at the bottom of the app view.
- Tap on the Termux icon, and enable root for the Termux app.
- Close the KernelSU app.
- Launch the Termux app and type the following command:
/system/bin/su
nano /boot/grub/android.cfg
- Edit the boot configuration using the Nano or Vi editor.
- Save the boot configuration and exit the editor.
- Reboot the device.
#
Using DEBUG mode terminal and Vi editor
To update the boot configuration using DEBUG mode terminal and Vi editor, follow these steps:
- Boot into the device using the Debug mode boot option or by adding
DEBUG=1
to the boot command through Grub's editor ('e' key). - at the first command prompt, type the following command:
vi /boot/grub/android.cfg
- Edit the boot configuration using the Vi editor by tapping Insert, typing your changes, and then tapping Escape followed by :wq to save the changes and exit the editor.
- Reboot the device.
That's it! You should now understand how to update the boot configuration of the build after install.