summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2012-01-16 01:27:43 +0300
committerIgor Pashev <pashev.igor@gmail.com>2012-01-16 01:27:43 +0300
commit0ed4751b89713f319a829e9cad184e842b3339cf (patch)
tree7a57c3cc017e6024594e68b9c92e7ee0445a75af
parent75f38d0792862e2896d1adf27528e70751a301f2 (diff)
downloaddebootstrap-0ed4751b89713f319a829e9cad184e842b3339cf.tar.gz
disable test for null-device and some mounts on Illumos
-rw-r--r--functions6
1 files changed, 6 insertions, 0 deletions
diff --git a/functions b/functions
index 18835bd..de1f10c 100644
--- a/functions
+++ b/functions
@@ -976,6 +976,8 @@ setup_proc () {
;;
hurd*)
;;
+ illumos*)
+ ;;
*)
umount_on_exit /dev/pts
umount_on_exit /dev/shm
@@ -1013,6 +1015,8 @@ setup_devices () {
mount -t devfs devfs $TARGET/dev ;;
hurd*)
setup_devices_hurd ;;
+ illumos*)
+ ;;
*)
if [ -e "$DEVICES_TARGZ" ]; then
zcat "$DEVICES_TARGZ" | (cd "$TARGET"; tar -xf -)
@@ -1259,6 +1263,8 @@ check_sane_mount () {
case "$HOST_OS" in
*freebsd*|hurd*)
;;
+ illumos*)
+ ;;
*)
mknod "$1/test-dev-null" c 1 3 || return 1
if ! echo test > "$1/test-dev-null"; then