summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2009-01-20 17:35:19 (GMT)
committerColin Watson <cjwatson@debian.org>2009-01-20 17:35:19 (GMT)
commit593627d6fda9c7c4e9983f6ccccc49379a6bbd40 (patch)
treee5c6ef4de950e8960432a7cdbb38aabdc70ab897
parent1aa502fb09a36bccd48232ea71ebedf68fb08ddb (diff)
downloaddebootstrap-593627d6fda9c7c4e9983f6ccccc49379a6bbd40.zip
debootstrap-593627d6fda9c7c4e9983f6ccccc49379a6bbd40.tar.gz
debootstrap-593627d6fda9c7c4e9983f6ccccc49379a6bbd40.tar.bz2
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--Makefile2
-rw-r--r--debian/changelog3
2 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8e28496..92d80a6 100644
--- a/Makefile
+++ b/Makefile
@@ -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