3
0
Fork 0
forked from mirrors/nixpkgs

* Use a bash built with ncurses support for logins.

svn path=/nixos/trunk/; revision=8376
This commit is contained in:
Eelco Dolstra 2007-03-20 10:40:45 +00:00
parent 3d85bc56ff
commit 9e9d6a4c62
2 changed files with 4 additions and 2 deletions

View file

@ -33,7 +33,7 @@ done
# Create the required /bin/sh symlink; otherwise lots of things
# (notably the system() function) won't work.
mkdir -m 0755 -p $mountPoint/bin
ln -sfn @shell@ $mountPoint/bin/sh
ln -sfn @bash@/bin/sh $mountPoint/bin/sh
# Allow the kernel to find our wrapped modprobe (which searches in the

View file

@ -165,7 +165,7 @@ rec {
# The packages you want in the boot environment.
systemPathList = [
modprobe # must take precedence over module_init_tools
pkgs.bash
pkgs.bashInteractive # bash with ncurses support
pkgs.bzip2
pkgs.coreutils
pkgs.cpio
@ -242,6 +242,8 @@ rec {
pkgs.glibc # needed for getent
pkgs.pwdutils
];
bash = pkgs.bashInteractive;
};