Use correct syntax markup for shell

Approved by:	carlavilla
This commit is contained in:
Li-Wen Hsu 2021-03-14 20:08:55 +08:00
parent 55c95407aa
commit a9a9e66105
No known key found for this signature in database
GPG key ID: 8D7BCC7D012FD37E
666 changed files with 17924 additions and 17924 deletions

View file

@ -52,21 +52,21 @@ Building the kernel this way may be useful when working on the kernel code and i
====
. Run man:config[8] to generate the kernel source code:
+
[source,bash]
[source,shell]
....
# /usr/sbin/config MYKERNEL
....
. Change into the build directory. man:config[8] will print the name of this directory after being run as above.
+
[source,bash]
[source,shell]
....
# cd ../compile/MYKERNEL
....
. Compile the kernel:
+
[source,bash]
[source,shell]
....
# make depend
# make
@ -74,7 +74,7 @@ Building the kernel this way may be useful when working on the kernel code and i
. Install the new kernel:
+
[source,bash]
[source,shell]
....
# make install
....