Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
Same color code block for every piece of code
Browse files Browse the repository at this point in the history
  • Loading branch information
dj1ch committed Nov 11, 2023
1 parent 59d69e5 commit d3c613e
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions docs/chromebook/depthcharge.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ parameters stored in the verified boot non-volatile storage.
These parameters can be modified with the `crossystem` tool, that requires sufficient privileges to access the verified
boot non-volatile storage.

`crossystem` relies on `mosys`, that is used to access the verified boot non-volatile storage on some
devices. `crossystem` and `mosys` are both free software and their source code is made available by
```crossystem``` relies on ```mosys```, that is used to access the verified boot non-volatile storage on some
devices. ```crossystem``` and ```mosys``` are both free software and their source code is made available by
Google: [crossystem](https://chromium.googlesource.com/chromiumos/platform/vboot_reference/).
[mosys](https://chromium.googlesource.com/chromiumos/platform/mosys/).

Expand Down
4 changes: 2 additions & 2 deletions docs/chromebook/keyd.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ repo. They keyd code itself is unmodified, but the packages include a libinput q
from working when in tablet mode (this file was removed from the upstream project) and the various chromebook keyboard
layouts.

There are multiple keyd config files, which are located in `/usr/share/eupnea/keyboard-layouts/` and symlinked to
`/etc/keyd/base.conf`. These can be switched with the `/usr/lib/eupnea/set-keymap` script. The layouts all produce the
There are multiple keyd config files, which are located in ```/usr/share/eupnea/keyboard-layouts/``` and symlinked to
```/etc/keyd/base.conf```. These can be switched with the ```/usr/lib/eupnea/set-keymap``` script. The layouts all produce the
same results, which are documented below.

* Normal mode (i.e. Without holding any keys):
Expand Down
24 changes: 12 additions & 12 deletions docs/compile/kernel.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ sudo apt-get update && sudo apt-get install build-essential ncurses-dev xz-utils
git clone https://github.com/eupnea-project/chromeos-kernel.git && cd chromeos-kernel
```

3. Optional: Modify the kernel config in ``kernel.conf``.
4. Optional: Modify the kernel branch in line 12 in ``kernel_build.py``.
5. Start the build script: ``python3 ./kernel_build.py``.
3. Optional: Modify the kernel config in ```kernel.conf```.
4. Optional: Modify the kernel branch in line 12 in ```kernel_build/py```.
5. Start the build script: ```python3 ./kernel_build.py```.
6. The compiled/compressed files can be found in the root of the cloned repo:
* bzImage
* modules.tar.xz
Expand Down Expand Up @@ -79,9 +79,9 @@ sudo apt-get update && sudo apt-get install build-essential ncurses-dev xz-utils
git clone https://github.com/eupnea-project/mainline-kernel.git && cd mainline-kernel
```

3. Optional: Modify the kernel config in ``kernel.conf``
4. Optional: Modify the kernel version in line 6 in ``build.sh``
5. Start the build script: ``bash ./build.sh``
3. Optional: Modify the kernel config in ```kernel.conf```
4. Optional: Modify the kernel version in line 6 in ```build.sh```
5. Start the build script: ```bash ./build.sh```
6. The compiled/compressed files can be found in the root of the cloned repo:
* bzImage
* modules.tar.xz
Expand All @@ -91,13 +91,13 @@ git clone https://github.com/eupnea-project/mainline-kernel.git && cd mainline-k

1. Sign the kernel and add a cmdline to it.
> This process can be done automatically with
the `install-kernel`[script](https://github.com/eupnea-project/eupnea-utils/blob/main/system-scripts/install-kernel)
Run `/usr/lib/eupnea/install-kernel --help` to see all available script options.
the ```install-kernel```[script](https://github.com/eupnea-project/eupnea-utils/blob/main/system-scripts/install-kernel)
Run ```/usr/lib/eupnea/install-kernel --help``` to see all available script options.

2. Extract the modules into `/usr/lib/modules/<insert_version>` and the headers into
`/usr/src/linux-headers-<insert_version>`. Replace insert_version with your kernel version
2. Extract the modules into ```/usr/lib/modules/<insert_version>``` and the headers into
```/usr/src/linux-headers-<insert_version>```. Replace insert_version with your kernel version
> The kernel version can can be read from the bzImage file
with `file -bL bzImage | grep -o 'version [^ ]*' | cut -d ' ' -f 2`.
with ```file -bL bzImage | grep -o 'version [^ ]*' | cut -d ' ' -f 2```.
3. Eupnea-systems only: Uninstall all other eupnea-kernel packages with your distros package manager and this
wildcard: `eupnea-*-kernel`.
wildcard: ```eupnea-*-kernel```.
Warning: The kernel packages might be reinstalled by an update, which would also overwrite your custom kernel.
2 changes: 1 addition & 1 deletion docs/depthboot/audio.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ To enable audio on Depthboot, follow the instructions below:

1. Boot into Depthboot

2. Open a Terminal and run: `setup-audio`
2. Open a Terminal and run: ```setup-audio```

If audio still doesn't work, please open an issue with the device codename and distribution choice
in the [audio-scripts](https://github.com/WeirdTreeThing/chromebook-linux-audio/issues) repository.
2 changes: 1 addition & 1 deletion docs/depthboot/install-to-internal.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ to [restore ChromeOS using a recovery USB](https://support.google.com/chromebook
It's recommended to [set up audio](/docs/depthboot/audio) and confirm all hardware is working correctly(touchpad,
touchscreen, speakers) before proceeding.

To install to internal storage, run: ``install-to-internal`` in a terminal.
To install to internal storage, run: ```install-to-internal``` in a terminal.
4 changes: 2 additions & 2 deletions docs/extra/rufus.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ next: false

# Rufus

While making a bootable media using Rufus make sure you are using `dd` mode. In newer version of Rufus, it should
automatically use `dd` mode for bin files
While making a bootable media using Rufus make sure you are using ```dd``` mode. In newer version of Rufus, it should
automatically use ```dd``` mode for bin files

0 comments on commit d3c613e

Please sign in to comment.