summaryrefslogtreecommitdiffstats
path: root/Makefile
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 /Makefile
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 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