diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2019-07-18 07:23:48 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2019-09-25 12:18:25 +0900 |
commit | 41e03c4beefb4d14ca1f8f9d8739a582c9430893 (patch) | |
tree | d0006e2a33f4f57909a0c25db927f3f31dec8b5f /gnu/build | |
parent | 91e633f0430c8c26e6915f79365a49d8a4327c96 (diff) | |
download | patches-41e03c4beefb4d14ca1f8f9d8739a582c9430893.tar patches-41e03c4beefb4d14ca1f8f9d8739a582c9430893.tar.gz |
linux-boot: Fix typo.
* gnu/build/linux-boot.scm (mount-root-file-system): Fix typo.
Diffstat (limited to 'gnu/build')
-rw-r--r-- | gnu/build/linux-boot.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/build/linux-boot.scm b/gnu/build/linux-boot.scm index f273957d78..84a5447977 100644 --- a/gnu/build/linux-boot.scm +++ b/gnu/build/linux-boot.scm @@ -359,8 +359,9 @@ the last argument of `mknod'." (define* (mount-root-file-system root type #:key volatile-root?) "Mount the root file system of type TYPE at device ROOT. If VOLATILE-ROOT? -is true, mount ROOT read-only and make it a overlay with a writable tmpfs -using the kernel build-in overlayfs." +is true, mount ROOT read-only and make it an overlay with a writable tmpfs +using the kernel built-in overlayfs." + (if volatile-root? (begin (mkdir-p "/real-root") |