diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2019-03-13 16:44:02 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2019-03-13 23:12:43 +0100 |
| commit | 59e80445882f8b0379e54916f89510c0deda6698 (patch) | |
| tree | 2769fffa217f630349c5a7207ee92204af046f9d /gnu | |
| parent | 13f62aef2d87dc888f89fea3260eaa39938e6640 (diff) | |
Remove traces of "GuixSD".
* gnu/bootloader/extlinux.scm (extlinux-configuration-file): Remove
mentions of "GuixSD".
* gnu/bootloader/grub.scm (install-grub-efi): Likewise.
* gnu/build/vm.scm (make-iso9660-image): Change default #:volume-id to
"Guix_image".
(initialize-hard-disk): Search for the "Guix_image" label.
* gnu/ci.scm (system-test-jobs, tarball-jobs): Remove "GuixSD".
* gnu/installer/newt/welcome.scm (run-welcome-page): Likewise.
* gnu/packages/audio.scm (supercollider)[description]: Likewise.
* gnu/packages/curl.scm (curl): Likewise.
* gnu/packages/emacs.scm (emacs): Likewise.
* gnu/packages/gnome.scm (network-manager): Likewise.
* gnu/packages/julia.scm (julia): Likewise.
* gnu/packages/linux.scm (alsa-plugins): Likewise.
(powertop, wireless-regdb): Likewise.
* gnu/packages/package-management.scm (guix): Likewise.
* gnu/packages/polkit.scm (polkit): Likewise.
* gnu/packages/tex.scm (texlive-bin): Likewise.
* gnu/services/base.scm (file-systems->fstab): Likewise.
* gnu/services/cups.scm (%cups-activation): Likewise.
* gnu/services/mail.scm (%dovecot-activation): Likewise.
* gnu/services/messaging.scm (prosody-configuration)[log]: Likewise.
* gnu/system/examples/vm-image.tmpl (vm-image-motd): Likewise.
* gnu/system/install.scm (installation-os)[file-systems]: Change root
file system label to "Guix_image".
* gnu/system/mapped-devices.scm (check-device-initrd-modules):
Remove "GuixSD".
* gnu/system/vm.scm (system-docker-image): Likewise.
(system-disk-image)[root-label]: Change to "Guix_image".
* gnu/tests/install.scm (run-install): Remove "GuixSD".
* guix/modules.scm (guix-module-name?): Likewise.
* nix/libstore/optimise-store.cc: Likewise.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/bootloader/extlinux.scm | 4 | ||||
| -rw-r--r-- | gnu/bootloader/grub.scm | 8 | ||||
| -rw-r--r-- | gnu/build/vm.scm | 6 | ||||
| -rw-r--r-- | gnu/ci.scm | 4 | ||||
| -rw-r--r-- | gnu/installer/newt/welcome.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/audio.scm | 2 | ||||
| -rw-r--r-- | gnu/packages/curl.scm | 2 | ||||
| -rw-r--r-- | gnu/packages/emacs.scm | 2 | ||||
| -rw-r--r-- | gnu/packages/gnome.scm | 2 | ||||
| -rw-r--r-- | gnu/packages/julia.scm | 2 | ||||
| -rw-r--r-- | gnu/packages/kde-frameworks.scm | 2 | ||||
| -rw-r--r-- | gnu/packages/linux.scm | 6 | ||||
| -rw-r--r-- | gnu/packages/package-management.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/polkit.scm | 2 | ||||
| -rw-r--r-- | gnu/packages/tex.scm | 2 | ||||
| -rw-r--r-- | gnu/services/base.scm | 2 | ||||
| -rw-r--r-- | gnu/services/cups.scm | 2 | ||||
| -rw-r--r-- | gnu/services/mail.scm | 2 | ||||
| -rw-r--r-- | gnu/services/messaging.scm | 2 | ||||
| -rw-r--r-- | gnu/system/examples/vm-image.tmpl | 2 | ||||
| -rw-r--r-- | gnu/system/install.scm | 2 | ||||
| -rw-r--r-- | gnu/system/mapped-devices.scm | 4 | ||||
| -rw-r--r-- | gnu/system/vm.scm | 6 | ||||
| -rw-r--r-- | gnu/tests/install.scm | 4 |
24 files changed, 39 insertions, 39 deletions
diff --git a/gnu/bootloader/extlinux.scm b/gnu/bootloader/extlinux.scm index b48596c4969..2bb711eed13 100644 --- a/gnu/bootloader/extlinux.scm +++ b/gnu/bootloader/extlinux.scm | |||
| @@ -57,10 +57,10 @@ corresponding to old generations of the system." | |||
| 57 | #~(call-with-output-file #$output | 57 | #~(call-with-output-file #$output |
| 58 | (lambda (port) | 58 | (lambda (port) |
| 59 | (let ((timeout #$(bootloader-configuration-timeout config))) | 59 | (let ((timeout #$(bootloader-configuration-timeout config))) |
| 60 | (format port "# This file was generated from your GuixSD configuration. Any changes | 60 | (format port "# This file was generated from your Guix configuration. Any changes |
| 61 | # will be lost upon reconfiguration. | 61 | # will be lost upon reconfiguration. |
| 62 | UI menu.c32 | 62 | UI menu.c32 |
| 63 | MENU TITLE GuixSD Boot Options | 63 | MENU TITLE GNU Guix Boot Options |
| 64 | PROMPT ~a | 64 | PROMPT ~a |
| 65 | TIMEOUT ~a~%" | 65 | TIMEOUT ~a~%" |
| 66 | (if (> timeout 0) 1 0) | 66 | (if (> timeout 0) 1 0) |
diff --git a/gnu/bootloader/grub.scm b/gnu/bootloader/grub.scm index 161e8b3d02b..51d57873643 100644 --- a/gnu/bootloader/grub.scm +++ b/gnu/bootloader/grub.scm | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | 1 | ;;; GNU Guix --- Functional package management for GNU |
| 2 | ;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org> | 2 | ;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org> |
| 3 | ;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com> | 3 | ;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com> |
| 4 | ;;; Copyright © 2017 Leo Famulari <leo@famulari.name> | 4 | ;;; Copyright © 2017 Leo Famulari <leo@famulari.name> |
| 5 | ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> | 5 | ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> |
| @@ -334,7 +334,7 @@ entries corresponding to old generations of the system." | |||
| 334 | #~(call-with-output-file #$output | 334 | #~(call-with-output-file #$output |
| 335 | (lambda (port) | 335 | (lambda (port) |
| 336 | (format port | 336 | (format port |
| 337 | "# This file was generated from your GuixSD configuration. Any changes | 337 | "# This file was generated from your Guix configuration. Any changes |
| 338 | # will be lost upon reconfiguration. | 338 | # will be lost upon reconfiguration. |
| 339 | ") | 339 | ") |
| 340 | #$sugar | 340 | #$sugar |
| @@ -380,7 +380,7 @@ submenu \"GNU system, old configurations...\" {~%") | |||
| 380 | ;; system whose root is mounted at MOUNT-POINT. | 380 | ;; system whose root is mounted at MOUNT-POINT. |
| 381 | (let ((grub-install (string-append bootloader "/sbin/grub-install")) | 381 | (let ((grub-install (string-append bootloader "/sbin/grub-install")) |
| 382 | (install-dir (string-append mount-point "/boot")) | 382 | (install-dir (string-append mount-point "/boot")) |
| 383 | ;; When installing GuixSD, it's common to mount EFI-DIR below | 383 | ;; When installing Guix, it's common to mount EFI-DIR below |
| 384 | ;; MOUNT-POINT rather than /boot/efi on the live image. | 384 | ;; MOUNT-POINT rather than /boot/efi on the live image. |
| 385 | (target-esp (if (file-exists? (string-append mount-point efi-dir)) | 385 | (target-esp (if (file-exists? (string-append mount-point efi-dir)) |
| 386 | (string-append mount-point efi-dir) | 386 | (string-append mount-point efi-dir) |
| @@ -389,7 +389,7 @@ submenu \"GNU system, old configurations...\" {~%") | |||
| 389 | ;; root partition. | 389 | ;; root partition. |
| 390 | (setenv "GRUB_ENABLE_CRYPTODISK" "y") | 390 | (setenv "GRUB_ENABLE_CRYPTODISK" "y") |
| 391 | (unless (zero? (system* grub-install "--boot-directory" install-dir | 391 | (unless (zero? (system* grub-install "--boot-directory" install-dir |
| 392 | "--bootloader-id=GuixSD" | 392 | "--bootloader-id=Guix" |
| 393 | "--efi-directory" target-esp)) | 393 | "--efi-directory" target-esp)) |
| 394 | (error "failed to install GRUB (EFI)"))))) | 394 | (error "failed to install GRUB (EFI)"))))) |
| 395 | 395 | ||
diff --git a/gnu/build/vm.scm b/gnu/build/vm.scm index 0aef73d26de..6d6a0c4cb4a 100644 --- a/gnu/build/vm.scm +++ b/gnu/build/vm.scm | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | 1 | ;;; GNU Guix --- Functional package management for GNU |
| 2 | ;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org> | 2 | ;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org> |
| 3 | ;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org> | 3 | ;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org> |
| 4 | ;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name> | 4 | ;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name> |
| 5 | ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> | 5 | ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> |
| @@ -422,7 +422,7 @@ SYSTEM-DIRECTORY is the name of the directory of the 'system' derivation." | |||
| 422 | (string-append "boot/grub/grub.cfg=" config-file)))) | 422 | (string-append "boot/grub/grub.cfg=" config-file)))) |
| 423 | 423 | ||
| 424 | (define* (make-iso9660-image grub config-file os-drv target | 424 | (define* (make-iso9660-image grub config-file os-drv target |
| 425 | #:key (volume-id "GuixSD_image") (volume-uuid #f) | 425 | #:key (volume-id "Guix_image") (volume-uuid #f) |
| 426 | register-closures? (closures '())) | 426 | register-closures? (closures '())) |
| 427 | "Given a GRUB package, creates an iso image as TARGET, using CONFIG-FILE as | 427 | "Given a GRUB package, creates an iso image as TARGET, using CONFIG-FILE as |
| 428 | GRUB configuration and OS-DRV as the stuff in it." | 428 | GRUB configuration and OS-DRV as the stuff in it." |
| @@ -550,7 +550,7 @@ passing it a directory name where it is mounted." | |||
| 550 | (lambda (port) | 550 | (lambda (port) |
| 551 | (format port | 551 | (format port |
| 552 | "insmod part_msdos~@ | 552 | "insmod part_msdos~@ |
| 553 | search --set=root --label GuixSD_image~@ | 553 | search --set=root --label Guix_image~@ |
| 554 | configfile /boot/grub/grub.cfg~%"))) | 554 | configfile /boot/grub/grub.cfg~%"))) |
| 555 | 555 | ||
| 556 | (display "creating EFI firmware image...") | 556 | (display "creating EFI firmware image...") |
diff --git a/gnu/ci.scm b/gnu/ci.scm index 2c04b7189d1..e108b4b15bf 100644 --- a/gnu/ci.scm +++ b/gnu/ci.scm | |||
| @@ -235,7 +235,7 @@ system.") | |||
| 235 | (system-test-value test)))) | 235 | (system-test-value test)))) |
| 236 | 236 | ||
| 237 | `((derivation . ,(derivation-file-name drv)) | 237 | `((derivation . ,(derivation-file-name drv)) |
| 238 | (description . ,(format #f "GuixSD '~a' system test" | 238 | (description . ,(format #f "Guix '~a' system test" |
| 239 | (system-test-name test))) | 239 | (system-test-name test))) |
| 240 | (long-description . ,(system-test-description test)) | 240 | (long-description . ,(system-test-description test)) |
| 241 | (license . ,(license-name gpl3+)) | 241 | (license . ,(license-name gpl3+)) |
| @@ -270,7 +270,7 @@ system.") | |||
| 270 | `((derivation . ,(derivation-file-name drv)) | 270 | `((derivation . ,(derivation-file-name drv)) |
| 271 | (description . "Stand-alone binary Guix tarball") | 271 | (description . "Stand-alone binary Guix tarball") |
| 272 | (long-description . "This is a tarball containing binaries of Guix and | 272 | (long-description . "This is a tarball containing binaries of Guix and |
| 273 | all its dependencies, and ready to be installed on non-GuixSD distributions.") | 273 | all its dependencies, and ready to be installed on \"foreign\" distributions.") |
| 274 | (license . ,(license-name gpl3+)) | 274 | (license . ,(license-name gpl3+)) |
| 275 | (home-page . ,%guix-home-page-url) | 275 | (home-page . ,%guix-home-page-url) |
| 276 | (maintainers . ("bug-guix@gnu.org")))) | 276 | (maintainers . ("bug-guix@gnu.org")))) |
diff --git a/gnu/installer/newt/welcome.scm b/gnu/installer/newt/welcome.scm index eec98e291aa..b0b5429c0f8 100644 --- a/gnu/installer/newt/welcome.scm +++ b/gnu/installer/newt/welcome.scm | |||
| @@ -92,8 +92,8 @@ we want this page to occupy all the screen space available." | |||
| 92 | the page. Ask the user to choose between manual installation, graphical | 92 | the page. Ask the user to choose between manual installation, graphical |
| 93 | installation and reboot." | 93 | installation and reboot." |
| 94 | (run-menu-page | 94 | (run-menu-page |
| 95 | (G_ "GNU GuixSD install") | 95 | (G_ "GNU Guix install") |
| 96 | (G_ "Welcome to GNU GuixSD installer! | 96 | (G_ "Welcome to GNU Guix system installer! |
| 97 | 97 | ||
| 98 | Please note that the present graphical installer is still under heavy \ | 98 | Please note that the present graphical installer is still under heavy \ |
| 99 | development, so you might want to prefer using the shell based process. \ | 99 | development, so you might want to prefer using the shell based process. \ |
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 91bb467de61..8bcd3c4b854 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm | |||
| @@ -2270,7 +2270,7 @@ for experimenting with sound synthesis and algorithmic composition. | |||
| 2270 | SuperCollider requires jackd to be installed in your user profile and your | 2270 | SuperCollider requires jackd to be installed in your user profile and your |
| 2271 | user must be allowed to access the realtime features of the kernel. Search | 2271 | user must be allowed to access the realtime features of the kernel. Search |
| 2272 | for \"realtime\" in the index of the Guix manual to learn how to achieve this | 2272 | for \"realtime\" in the index of the Guix manual to learn how to achieve this |
| 2273 | using GuixSD.") | 2273 | using Guix System.") |
| 2274 | (license license:gpl2+))) | 2274 | (license license:gpl2+))) |
| 2275 | 2275 | ||
| 2276 | (define-public raul | 2276 | (define-public raul |
diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm index 822fe17036d..456a18012dc 100644 --- a/gnu/packages/curl.scm +++ b/gnu/packages/curl.scm | |||
| @@ -108,7 +108,7 @@ | |||
| 108 | (("/bin/sh") (which "sh"))) | 108 | (("/bin/sh") (which "sh"))) |
| 109 | 109 | ||
| 110 | ;; XXX FIXME: Test #1510 seems to work on some machines and not | 110 | ;; XXX FIXME: Test #1510 seems to work on some machines and not |
| 111 | ;; others, possibly based on the kernel version. It works on GuixSD | 111 | ;; others, possibly based on the kernel version. It works on Guix System |
| 112 | ;; on x86_64 with linux-libre-4.1, but fails on Hydra for both i686 | 112 | ;; on x86_64 with linux-libre-4.1, but fails on Hydra for both i686 |
| 113 | ;; and x86_64 with the following error: | 113 | ;; and x86_64 with the following error: |
| 114 | ;; | 114 | ;; |
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 1e76f0821c4..74005972dba 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm | |||
| @@ -92,7 +92,7 @@ | |||
| 92 | '("eshell/esh-groups.el"))) | 92 | '("eshell/esh-groups.el"))) |
| 93 | 93 | ||
| 94 | ;; Make sure Tramp looks for binaries in the right places on | 94 | ;; Make sure Tramp looks for binaries in the right places on |
| 95 | ;; remote GuixSD machines, where 'getconf PATH' returns | 95 | ;; remote Guix System machines, where 'getconf PATH' returns |
| 96 | ;; something bogus. | 96 | ;; something bogus. |
| 97 | (substitute* "net/tramp-sh.el" | 97 | (substitute* "net/tramp-sh.el" |
| 98 | ;; Patch the line after "(defcustom tramp-remote-path". | 98 | ;; Patch the line after "(defcustom tramp-remote-path". |
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 0344e424440..3d67b7b9c13 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm | |||
| @@ -5161,7 +5161,7 @@ users.") | |||
| 5161 | (doc (assoc-ref %outputs "doc")) | 5161 | (doc (assoc-ref %outputs "doc")) |
| 5162 | (dhclient (string-append (assoc-ref %build-inputs "isc-dhcp") | 5162 | (dhclient (string-append (assoc-ref %build-inputs "isc-dhcp") |
| 5163 | "/sbin/dhclient"))) | 5163 | "/sbin/dhclient"))) |
| 5164 | (list "--with-systemd-logind=yes" ;In GuixSD, this is provided by elogind. | 5164 | (list "--with-systemd-logind=yes" ;In Guix System, this is provided by elogind. |
| 5165 | "--with-consolekit=no" | 5165 | "--with-consolekit=no" |
| 5166 | "--with-crypto=gnutls" | 5166 | "--with-crypto=gnutls" |
| 5167 | "--disable-config-plugin-ibft" | 5167 | "--disable-config-plugin-ibft" |
diff --git a/gnu/packages/julia.scm b/gnu/packages/julia.scm index a2e1264503f..fa9709c40cb 100644 --- a/gnu/packages/julia.scm +++ b/gnu/packages/julia.scm | |||
| @@ -148,7 +148,7 @@ | |||
| 148 | (use-modules (ice-9 match)) | 148 | (use-modules (ice-9 match)) |
| 149 | (substitute* "src/runtime_ccall.cpp" | 149 | (substitute* "src/runtime_ccall.cpp" |
| 150 | ;; Patch out invocations of '/sbin/ldconfig' to avoid getting | 150 | ;; Patch out invocations of '/sbin/ldconfig' to avoid getting |
| 151 | ;; error messages about missing '/sbin/ldconfig' on GuixSD. | 151 | ;; error messages about missing '/sbin/ldconfig' on Guix System. |
| 152 | (("popen\\(.*ldconfig.*\\);") | 152 | (("popen\\(.*ldconfig.*\\);") |
| 153 | "NULL;\n") | 153 | "NULL;\n") |
| 154 | 154 | ||
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 2ae5feaf52b..10a1dfe0d15 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm | |||
| @@ -3487,7 +3487,7 @@ workspace.") | |||
| 3487 | ("qtsvg" ,qtsvg) | 3487 | ("qtsvg" ,qtsvg) |
| 3488 | ("qttools" ,qttools) | 3488 | ("qttools" ,qttools) |
| 3489 | ("qtx11extras" ,qtx11extras))) | 3489 | ("qtx11extras" ,qtx11extras))) |
| 3490 | ;; FIXME: Use GuixSD ca-bundle.crt in etc/xdg/ksslcalist and | 3490 | ;; FIXME: Use Guix ca-bundle.crt in etc/xdg/ksslcalist and |
| 3491 | ;; share/kf5/kssl/ca-bundle.crt | 3491 | ;; share/kf5/kssl/ca-bundle.crt |
| 3492 | ;; TODO: NixOS has nix-kde-include-dir.patch to change std-dir "include" | 3492 | ;; TODO: NixOS has nix-kde-include-dir.patch to change std-dir "include" |
| 3493 | ;; into "@dev@/include/". Think about whether this is needed for us, too. | 3493 | ;; into "@dev@/include/". Think about whether this is needed for us, too. |
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index e4a58834a96..1cdffb8c79e 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm | |||
| @@ -1112,7 +1112,7 @@ MIDI functionality to the Linux-based operating system.") | |||
| 1112 | (outputs '("out" "pulseaudio" "jack")) | 1112 | (outputs '("out" "pulseaudio" "jack")) |
| 1113 | (arguments | 1113 | (arguments |
| 1114 | `(#:configure-flags '(;; Do not install a "local" configuration targeted | 1114 | `(#:configure-flags '(;; Do not install a "local" configuration targeted |
| 1115 | ;; for /etc/alsa. On GuixSD plugins are loaded from | 1115 | ;; for /etc/alsa. On Guix System plugins are loaded from |
| 1116 | ;; the ALSA service, and other distributions likely | 1116 | ;; the ALSA service, and other distributions likely |
| 1117 | ;; won't use these files. | 1117 | ;; won't use these files. |
| 1118 | "--with-alsalconfdir=/tmp/noop") | 1118 | "--with-alsalconfdir=/tmp/noop") |
| @@ -1579,7 +1579,7 @@ devices. It replaces @code{iwconfig}, which is deprecated.") | |||
| 1579 | '(#:phases | 1579 | '(#:phases |
| 1580 | (modify-phases %standard-phases | 1580 | (modify-phases %standard-phases |
| 1581 | ;; TODO: Patch some hardcoded "wlan0" in calibrate/calibrate.cpp to | 1581 | ;; TODO: Patch some hardcoded "wlan0" in calibrate/calibrate.cpp to |
| 1582 | ;; allow calibrating the network interface in GuixSD. | 1582 | ;; allow calibrating the network interface in Guix System. |
| 1583 | (add-after 'unpack 'patch-absolute-file-names | 1583 | (add-after 'unpack 'patch-absolute-file-names |
| 1584 | (lambda* (#:key inputs #:allow-other-keys) | 1584 | (lambda* (#:key inputs #:allow-other-keys) |
| 1585 | (let ((kmod (assoc-ref inputs "kmod"))) | 1585 | (let ((kmod (assoc-ref inputs "kmod"))) |
| @@ -2379,7 +2379,7 @@ compliance.") | |||
| 2379 | #:tests? #f ;no tests | 2379 | #:tests? #f ;no tests |
| 2380 | #:make-flags (let ((out (assoc-ref %outputs "out"))) | 2380 | #:make-flags (let ((out (assoc-ref %outputs "out"))) |
| 2381 | (list (string-append "PREFIX=" out) | 2381 | (list (string-append "PREFIX=" out) |
| 2382 | (string-append "LSB_ID=GuixSD") | 2382 | (string-append "LSB_ID=Guix") |
| 2383 | (string-append "DISTRO_PUBKEY=/dev/null") | 2383 | (string-append "DISTRO_PUBKEY=/dev/null") |
| 2384 | (string-append "DISTRO_PRIVKEY=/dev/null") | 2384 | (string-append "DISTRO_PRIVKEY=/dev/null") |
| 2385 | (string-append "REGDB_PUBKEY=/dev/null") | 2385 | (string-append "REGDB_PUBKEY=/dev/null") |
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 1244cf2fc3b..86e8fce1dcf 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm | |||
| @@ -142,8 +142,8 @@ | |||
| 142 | 142 | ||
| 143 | ;; Set 'DOT_USER_PROGRAM' to the empty string so | 143 | ;; Set 'DOT_USER_PROGRAM' to the empty string so |
| 144 | ;; we don't keep a reference to Graphviz, whose | 144 | ;; we don't keep a reference to Graphviz, whose |
| 145 | ;; closure is pretty big (too big for the GuixSD | 145 | ;; closure is pretty big (too big for the Guix |
| 146 | ;; installation image.) | 146 | ;; system installation image.) |
| 147 | "ac_cv_path_DOT_USER_PROGRAM=dot" | 147 | "ac_cv_path_DOT_USER_PROGRAM=dot" |
| 148 | 148 | ||
| 149 | ;; To avoid problems with the length of shebangs, | 149 | ;; To avoid problems with the length of shebangs, |
diff --git a/gnu/packages/polkit.scm b/gnu/packages/polkit.scm index 0433b423eb0..ba74a5c9050 100644 --- a/gnu/packages/polkit.scm +++ b/gnu/packages/polkit.scm | |||
| @@ -73,7 +73,7 @@ | |||
| 73 | (substitute* "src/polkitbackend/polkitbackendjsauthority.cpp" | 73 | (substitute* "src/polkitbackend/polkitbackendjsauthority.cpp" |
| 74 | (("systemd") "elogind")) | 74 | (("systemd") "elogind")) |
| 75 | 75 | ||
| 76 | ;; GuixSD's polkit service stores actions under | 76 | ;; Guix System's polkit service stores actions under |
| 77 | ;; /etc/polkit-1/actions. | 77 | ;; /etc/polkit-1/actions. |
| 78 | (substitute* "src/polkitbackend/polkitbackendinteractiveauthority.c" | 78 | (substitute* "src/polkitbackend/polkitbackendinteractiveauthority.c" |
| 79 | (("PACKAGE_DATA_DIR \"/polkit-1/actions\"") | 79 | (("PACKAGE_DATA_DIR \"/polkit-1/actions\"") |
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 584b2bcfa5c..5b299376727 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm | |||
| @@ -185,7 +185,7 @@ | |||
| 185 | ;; ps2eps.pl uses the "gswin32c" ghostscript executable on Windows, | 185 | ;; ps2eps.pl uses the "gswin32c" ghostscript executable on Windows, |
| 186 | ;; and the "gs" ghostscript executable on Unix. It detects Unix by | 186 | ;; and the "gs" ghostscript executable on Unix. It detects Unix by |
| 187 | ;; checking for the existence of the /usr/bin directory. Since | 187 | ;; checking for the existence of the /usr/bin directory. Since |
| 188 | ;; GuixSD does not have /usr/bin, it is also detected as Windows. | 188 | ;; Guix System does not have /usr/bin, it is also detected as Windows. |
| 189 | (lambda* (#:key inputs #:allow-other-keys) | 189 | (lambda* (#:key inputs #:allow-other-keys) |
| 190 | (substitute* "utils/ps2eps/ps2eps-src/bin/ps2eps.pl" | 190 | (substitute* "utils/ps2eps/ps2eps-src/bin/ps2eps.pl" |
| 191 | (("gswin32c") "gs")) | 191 | (("gswin32c") "gs")) |
diff --git a/gnu/services/base.scm b/gnu/services/base.scm index 67df4d13796..04b123b833e 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm | |||
| @@ -331,7 +331,7 @@ seconds after @code{SIGTERM} has been sent are terminated with | |||
| 331 | `(("fstab" ,(plain-file "fstab" | 331 | `(("fstab" ,(plain-file "fstab" |
| 332 | (string-append | 332 | (string-append |
| 333 | "\ | 333 | "\ |
| 334 | # This file was generated from your GuixSD configuration. Any changes | 334 | # This file was generated from your Guix configuration. Any changes |
| 335 | # will be lost upon reboot or reconfiguration.\n\n" | 335 | # will be lost upon reboot or reconfiguration.\n\n" |
| 336 | (string-join (map file-system->fstab-entry | 336 | (string-join (map file-system->fstab-entry |
| 337 | file-systems) | 337 | file-systems) |
diff --git a/gnu/services/cups.scm b/gnu/services/cups.scm index 715d333a71f..9125139ef34 100644 --- a/gnu/services/cups.scm +++ b/gnu/services/cups.scm | |||
| @@ -862,7 +862,7 @@ IPP specifications.") | |||
| 862 | (define* (create-self-signed-certificate-if-absent | 862 | (define* (create-self-signed-certificate-if-absent |
| 863 | #:key private-key public-key (owner (getpwnam "root")) | 863 | #:key private-key public-key (owner (getpwnam "root")) |
| 864 | (common-name (gethostname)) | 864 | (common-name (gethostname)) |
| 865 | (organization-name "GuixSD") | 865 | (organization-name "Guix") |
| 866 | (organization-unit-name "Default Self-Signed Certificate") | 866 | (organization-unit-name "Default Self-Signed Certificate") |
| 867 | (subject-parameters `(("CN" . ,common-name) | 867 | (subject-parameters `(("CN" . ,common-name) |
| 868 | ("O" . ,organization-name) | 868 | ("O" . ,organization-name) |
diff --git a/gnu/services/mail.scm b/gnu/services/mail.scm index fcaedd038b7..a7e8c41d3a1 100644 --- a/gnu/services/mail.scm +++ b/gnu/services/mail.scm | |||
| @@ -1485,7 +1485,7 @@ greyed out, instead of only later giving \"not selectable\" popup error. | |||
| 1485 | (define* (create-self-signed-certificate-if-absent | 1485 | (define* (create-self-signed-certificate-if-absent |
| 1486 | #:key private-key public-key (owner (getpwnam "root")) | 1486 | #:key private-key public-key (owner (getpwnam "root")) |
| 1487 | (common-name (gethostname)) | 1487 | (common-name (gethostname)) |
| 1488 | (organization-name "GuixSD") | 1488 | (organization-name "Guix") |
| 1489 | (organization-unit-name "Default Self-Signed Certificate") | 1489 | (organization-unit-name "Default Self-Signed Certificate") |
| 1490 | (subject-parameters `(("CN" . ,common-name) | 1490 | (subject-parameters `(("CN" . ,common-name) |
| 1491 | ("O" . ,organization-name) | 1491 | ("O" . ,organization-name) |
diff --git a/gnu/services/messaging.scm b/gnu/services/messaging.scm index e70f1b70eff..11b41f2bf60 100644 --- a/gnu/services/messaging.scm +++ b/gnu/services/messaging.scm | |||
| @@ -461,7 +461,7 @@ about using the hashed backend. See also | |||
| 461 | (log | 461 | (log |
| 462 | (maybe-string "*syslog") | 462 | (maybe-string "*syslog") |
| 463 | "Set logging options. Advanced logging configuration is not yet supported | 463 | "Set logging options. Advanced logging configuration is not yet supported |
| 464 | by the GuixSD Prosody Service. See @url{https://prosody.im/doc/logging}." | 464 | by the Prosody service. See @url{https://prosody.im/doc/logging}." |
| 465 | common) | 465 | common) |
| 466 | 466 | ||
| 467 | (pidfile | 467 | (pidfile |
diff --git a/gnu/system/examples/vm-image.tmpl b/gnu/system/examples/vm-image.tmpl index 4d292c1bc6e..6dc67b09015 100644 --- a/gnu/system/examples/vm-image.tmpl +++ b/gnu/system/examples/vm-image.tmpl | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | (define vm-image-motd (plain-file "motd" " | 8 | (define vm-image-motd (plain-file "motd" " |
| 9 | This is the GNU system. Welcome! | 9 | This is the GNU system. Welcome! |
| 10 | 10 | ||
| 11 | This instance of GuixSD is a bare-bones template for virtualized environments. | 11 | This instance of Guix System is a bare-bones template for virtualized environments. |
| 12 | 12 | ||
| 13 | You will probably want to do these things first if you booted in a virtual | 13 | You will probably want to do these things first if you booted in a virtual |
| 14 | private server (VPS): | 14 | private server (VPS): |
diff --git a/gnu/system/install.scm b/gnu/system/install.scm index 0ba2066d115..bad318d06bc 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm | |||
| @@ -353,7 +353,7 @@ You have been warned. Thanks for being so brave.\x1b[0m | |||
| 353 | ;; the appropriate one. | 353 | ;; the appropriate one. |
| 354 | (cons* (file-system | 354 | (cons* (file-system |
| 355 | (mount-point "/") | 355 | (mount-point "/") |
| 356 | (device (file-system-label "GuixSD_image")) | 356 | (device (file-system-label "Guix_image")) |
| 357 | (type "ext4")) | 357 | (type "ext4")) |
| 358 | 358 | ||
| 359 | ;; Make /tmp a tmpfs instead of keeping the overlayfs. This | 359 | ;; Make /tmp a tmpfs instead of keeping the overlayfs. This |
diff --git a/gnu/system/mapped-devices.scm b/gnu/system/mapped-devices.scm index a874666463a..e29ad3ad389 100644 --- a/gnu/system/mapped-devices.scm +++ b/gnu/system/mapped-devices.scm | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | 1 | ;;; GNU Guix --- Functional package management for GNU |
| 2 | ;;; Copyright © 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org> | 2 | ;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org> |
| 3 | ;;; Copyright © 2016 Andreas Enge <andreas@enge.fr> | 3 | ;;; Copyright © 2016 Andreas Enge <andreas@enge.fr> |
| 4 | ;;; Copyright © 2017, 2018 Mark H Weaver <mhw@netris.org> | 4 | ;;; Copyright © 2017, 2018 Mark H Weaver <mhw@netris.org> |
| 5 | ;;; | 5 | ;;; |
| @@ -120,7 +120,7 @@ | |||
| 120 | DEVICE must be a \"/dev\" file name." | 120 | DEVICE must be a \"/dev\" file name." |
| 121 | (define aliases | 121 | (define aliases |
| 122 | ;; Attempt to load 'modules.alias' from the current kernel, assuming we're | 122 | ;; Attempt to load 'modules.alias' from the current kernel, assuming we're |
| 123 | ;; on GuixSD, and assuming that corresponds to the kernel we'll be | 123 | ;; on Guix System, and assuming that corresponds to the kernel we'll be |
| 124 | ;; installing. Skip the whole thing if that file cannot be read. | 124 | ;; installing. Skip the whole thing if that file cannot be read. |
| 125 | (catch 'system-error | 125 | (catch 'system-error |
| 126 | (lambda () | 126 | (lambda () |
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index e09c687a049..e5612859647 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm | |||
| @@ -463,8 +463,8 @@ the image." | |||
| 463 | "Build a docker image. OS is the desired <operating-system>. NAME is the | 463 | "Build a docker image. OS is the desired <operating-system>. NAME is the |
| 464 | base name to use for the output file. When REGISTER-CLOSURES? is not #f, | 464 | base name to use for the output file. When REGISTER-CLOSURES? is not #f, |
| 465 | register the closure of OS with Guix in the resulting Docker image. This only | 465 | register the closure of OS with Guix in the resulting Docker image. This only |
| 466 | makes sense when you want to build a GuixSD Docker image that has Guix | 466 | makes sense when you want to build a Guix System Docker image that has Guix |
| 467 | installed inside of it. If you don't need Guix (e.g., your GuixSD Docker | 467 | installed inside of it. If you don't need Guix (e.g., your Docker |
| 468 | image just contains a web server that is started by the Shepherd), then you | 468 | image just contains a web server that is started by the Shepherd), then you |
| 469 | should set REGISTER-CLOSURES? to #f." | 469 | should set REGISTER-CLOSURES? to #f." |
| 470 | (define schema | 470 | (define schema |
| @@ -610,7 +610,7 @@ to USB sticks meant to be read-only." | |||
| 610 | 610 | ||
| 611 | (define root-label | 611 | (define root-label |
| 612 | ;; Volume name of the root file system. | 612 | ;; Volume name of the root file system. |
| 613 | (normalize-label "GuixSD_image")) | 613 | (normalize-label "Guix_image")) |
| 614 | 614 | ||
| 615 | (define root-uuid | 615 | (define root-uuid |
| 616 | ;; UUID of the root file system, computed in a deterministic fashion. | 616 | ;; UUID of the root file system, computed in a deterministic fashion. |
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index ec290641182..277908cc49e 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm | |||
| @@ -47,7 +47,7 @@ | |||
| 47 | 47 | ||
| 48 | ;;; Commentary: | 48 | ;;; Commentary: |
| 49 | ;;; | 49 | ;;; |
| 50 | ;;; Test the installation of GuixSD using the documented approach at the | 50 | ;;; Test the installation of Guix using the documented approach at the |
| 51 | ;;; command line. | 51 | ;;; command line. |
| 52 | ;;; | 52 | ;;; |
| 53 | ;;; Code: | 53 | ;;; Code: |
| @@ -204,7 +204,7 @@ reboot\n") | |||
| 204 | (guix combinators)))) | 204 | (guix combinators)))) |
| 205 | (installation-disk-image-file-system-type "ext4") | 205 | (installation-disk-image-file-system-type "ext4") |
| 206 | (target-size (* 2200 MiB))) | 206 | (target-size (* 2200 MiB))) |
| 207 | "Run SCRIPT (a shell script following the GuixSD installation procedure) in | 207 | "Run SCRIPT (a shell script following the system installation procedure) in |
| 208 | OS to install TARGET-OS. Return a VM image of TARGET-SIZE bytes containing | 208 | OS to install TARGET-OS. Return a VM image of TARGET-SIZE bytes containing |
| 209 | the installed system. The packages specified in PACKAGES will be appended to | 209 | the installed system. The packages specified in PACKAGES will be appended to |
| 210 | packages defined in installation-os." | 210 | packages defined in installation-os." |
