diff options
author | Edward Palmer <891364+elp2@users.noreply.github.com> | 2021-09-26 03:53:20 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-27 16:30:38 +0200 |
commit | 2f01d34b99e88dda70b3fd17ef3490a023bc7d08 (patch) | |
tree | dbe8ebae51c8823da938c548992783100df2af2a /Documentation | |
parent | 34844dd54711159531004e06b459143d46c62a92 (diff) | |
download | serenity-2f01d34b99e88dda70b3fd17ef3490a023bc7d08.zip |
Documentation: Add build file copy instruction
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/AdvancedBuildInstructions.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/AdvancedBuildInstructions.md b/Documentation/AdvancedBuildInstructions.md index 069bbee46a..35e5051cb8 100644 --- a/Documentation/AdvancedBuildInstructions.md +++ b/Documentation/AdvancedBuildInstructions.md @@ -15,8 +15,12 @@ cat << 'EOF' > mnt/etc/Keyboard.ini [Mapping] Keymap=de EOF + +# Add a file in anon's home dir +cp /somewhere/on/your/system/file.txt mnt/home/anon ``` + This will configure your keymap to German (`de`) instead of US English. See [`Base/res/keymaps/`](../Base/res/keymaps/) for a full list. Note that the `keymap` program itself will also modify the `/etc/Keyboard.ini` config file, but this way the change will persist across image rebuilds. ## Ninja build targets |