1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-11-30 19:26:21 +03:00

doc/porting-guide: Make it obvious bin/ are helpers at the root

Closes #604.
This commit is contained in:
Samuel Dionne-Riel 2023-09-15 17:03:13 -04:00
parent 17f4e44bfc
commit 4ac1942e56

View File

@ -11,21 +11,17 @@ In a nutshell, the basic steps are:
== Kernel configuration
The kernel can be configured using the following command, where `$DEVICE` is
the device name.
The kernel can be configured using a helper command, assuming you are at the
root of the repo. (Replace `$device_name` with the correct name.)
```
$ bin/menuconfig $DEVICE
$ bin/menuconfig $device_name
```
When importing a configuration from another source, manually editing the kernel
configuration, or updating the kernel version, it is recommended to run the
kernel configuration normalization too.
kernel configuration normalization helper, too.
```
$ bin/kernel-normalize-config $DEVICE
$ bin/kernel-normalize-config $device_name
```
Be mindful of your `$NIX_PATH` when running these tools. Ensure it points to
the Nixpkgs checkout you use to work on Mobile NixOS or else it may build the
toolchain fresh.