summaryrefslogtreecommitdiff
path: root/sys/arch/arm
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2005-03-30 07:52:33 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2005-03-30 07:52:33 +0000
commitbf0f94ab5eae936591e29e8f7d2a371fea208c3d (patch)
tree67ef3a5c29b016573a5d0466f97bff6a68b38d95 /sys/arch/arm
parent58a4d9051f44de59c0b328bef84258c7ad009269 (diff)
first approximation: spoof UDF filesystem disklabels when we see them.
it is likely a slight bug or two will sneak in with this, so everyone please keep an eye out on your disklabels
Diffstat (limited to 'sys/arch/arm')
-rw-r--r--sys/arch/arm/arm/disksubr.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/arm/arm/disksubr.c b/sys/arch/arm/arm/disksubr.c
index 389590526fc..8059576a31e 100644
--- a/sys/arch/arm/arm/disksubr.c
+++ b/sys/arch/arm/arm/disksubr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: disksubr.c,v 1.3 2004/03/17 14:16:03 miod Exp $ */
+/* $OpenBSD: disksubr.c,v 1.4 2005/03/30 07:52:31 deraadt Exp $ */
/* $NetBSD: disksubr.c,v 1.21 1996/05/03 19:42:03 christos Exp $ */
/*
@@ -281,6 +281,10 @@ donot:
if (iso_disklabelspoof(dev, strat, lp) == 0)
msg = NULL;
#endif
+#if defined(UDF)
+ if (msg && udf_disklabelspoof(dev, strat, lp) == 0)
+ msg = NULL;
+#endif
goto done;
}