diff options
author | Colin Watson <cjwatson@debian.org> | 2009-01-20 17:35:19 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2009-01-20 17:35:19 +0000 |
commit | 593627d6fda9c7c4e9983f6ccccc49379a6bbd40 (patch) | |
tree | e5c6ef4de950e8960432a7cdbb38aabdc70ab897 | |
parent | 1aa502fb09a36bccd48232ea71ebedf68fb08ddb (diff) | |
download | debootstrap-593627d6fda9c7c4e9983f6ccccc49379a6bbd40.tar.gz |
Add /dev/console to devices.tar.gz (after all, MAKEDEV's 'consoleonly'
was added for boot-floppies in the first place; see
https://lists.ubuntu.com/archives/ubuntu-devel/2009-January/027230.html).
r57374
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | debian/changelog | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -39,6 +39,6 @@ devices.tar.gz: mkdir -p dev chown 0:0 dev chmod 755 dev - (cd dev && $(MAKEDEV) std ptmx fd) + (cd dev && $(MAKEDEV) std ptmx fd consoleonly) tar cf - dev | gzip -9 >devices.tar.gz rm -rf dev diff --git a/debian/changelog b/debian/changelog index e3fd286..bac66dc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -23,6 +23,9 @@ debootstrap (1.0.11) UNRELEASED; urgency=low * Mention /sys in EXAMPLE section of manual page, and use "defaults" rather than "none" as the mount options for /proc (thanks, Raúl Sánchez Siles; closes: #410787). + * Add /dev/console to devices.tar.gz (after all, MAKEDEV's 'consoleonly' + was added for boot-floppies in the first place; see + https://lists.ubuntu.com/archives/ubuntu-devel/2009-January/027230.html). -- Colin Watson <cjwatson@ubuntu.com> Fri, 31 Oct 2008 13:37:01 +0000 |