[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/16: system: hurd: Add "/bin/sh" symlink.
From: |
guix-commits |
Subject: |
10/16: system: hurd: Add "/bin/sh" symlink. |
Date: |
Sat, 11 Apr 2020 15:09:13 -0400 (EDT) |
civodul pushed a commit to branch core-updates
in repository guix.
commit fe1f9646b4533fd4d3ec98bcfaa1b09391396e76
Author: Jan (janneke) Nieuwenhuizen <address@hidden>
AuthorDate: Sun Apr 5 17:16:30 2020 +0200
system: hurd: Add "/bin/sh" symlink.
This allows login.c to succeed for root.
* gnu/system/hurd.scm (cross-hurd-image): Link /bin/sh to full the full
bash.
---
gnu/system/hurd.scm | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/system/hurd.scm b/gnu/system/hurd.scm
index 3926f11..6570616 100644
--- a/gnu/system/hurd.scm
+++ b/gnu/system/hurd.scm
@@ -21,6 +21,7 @@
#:use-module (guix utils)
#:use-module (gnu bootloader grub)
#:use-module (gnu packages base)
+ #:use-module (gnu packages bash)
#:use-module (gnu packages cross-base)
#:use-module (gnu packages hurd)
#:use-module (gnu system vm)
@@ -44,7 +45,7 @@
(directory-union "gnu+hurd"
(cons (with-parameters ((%current-system "i686-linux"))
gnumach)
- (for-hurd hurd coreutils grep sed)))))
+ (for-hurd hurd bash coreutils grep sed)))))
(define grub.cfg
(let ((hurd (with-parameters ((%current-target-system "i586-pc-gnu"))
@@ -122,7 +123,11 @@ menuentry \"GNU\" {
("/etc/ttys" -> ,(file-append (with-parameters ((%current-target-system
"i586-pc-gnu"))
hurd)
- "/etc/ttys"))))
+ "/etc/ttys"))
+ ("/bin/sh" -> ,(file-append (with-parameters ((%current-target-system
+ "i586-pc-gnu"))
+ bash)
+ "/bin/sh"))))
(qemu-image #:file-system-type "ext2"
#:file-system-options '("-o" "hurd")
- branch core-updates updated (916ec91 -> 5084fd3), guix-commits, 2020/04/11
- 01/16: database: 'reset-timestamps' can optionally preserve permissions., guix-commits, 2020/04/11
- 02/16: vm: Preserve file permissions on /dev., guix-commits, 2020/04/11
- 04/16: linux-boot: Add 'make-hurd-device-nodes'., guix-commits, 2020/04/11
- 03/16: linux-boot: 'make-essential-device-nodes' root parameter is optional., guix-commits, 2020/04/11
- 05/16: vm: Make the device node procedure a parameter., guix-commits, 2020/04/11
- 09/16: system: hurd: Add /etc/{passwd,shadow}., guix-commits, 2020/04/11
- 08/16: system: hurd: Add ttys symlink in "/etc/ttys"., guix-commits, 2020/04/11
- 10/16: system: hurd: Add "/bin/sh" symlink.,
guix-commits <=
- 11/16: system: hurd: Create /etc/{hostname,motd,login} and /root., guix-commits, 2020/04/11
- 14/16: system: hurd: Create a proper profile., guix-commits, 2020/04/11
- 07/16: system: hurd: Add "/etc/fstab"., guix-commits, 2020/04/11
- 13/16: gnu: hurd: "/libexec/rc" spawns the console client., guix-commits, 2020/04/11
- 12/16: system: hurd: Add root profile., guix-commits, 2020/04/11
- 06/16: Add (gnu system hurd)., guix-commits, 2020/04/11
- 15/16: system: hurd: Add net-base and inetutils, and /etc/{services, protocols}., guix-commits, 2020/04/11
- 16/16: system: hurd: Add guile-candy., guix-commits, 2020/04/11