Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/ultrix Fix the required-list for compat_ultrix. ...
details: https://anonhg.NetBSD.org/src/rev/139540e654e3
branches: trunk
changeset: 449328:139540e654e3
user: pgoyette <pgoyette%NetBSD.org@localhost>
date: Sun Mar 03 22:25:00 2019 +0000
description:
Fix the required-list for compat_ultrix. With the merge of the
[pgoyette-compat] branch there is no longer a "compat" module;
instead we have lots of version-specific compat_xx modules.
Code inspection shows compat_ultrix uses compat_13 (and newer)
stuff, so set the requirements list accordingly.
Should fix PR port-pmax/54037
diffstat:
sys/compat/ultrix/ultrix_mod.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 950cedde55c5 -r 139540e654e3 sys/compat/ultrix/ultrix_mod.c
--- a/sys/compat/ultrix/ultrix_mod.c Sun Mar 03 22:02:49 2019 +0000
+++ b/sys/compat/ultrix/ultrix_mod.c Sun Mar 03 22:25:00 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ultrix_mod.c,v 1.5 2014/03/07 01:33:44 christos Exp $ */
+/* $NetBSD: ultrix_mod.c,v 1.6 2019/03/03 22:25:00 pgoyette Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
#endif
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ultrix_mod.c,v 1.5 2014/03/07 01:33:44 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ultrix_mod.c,v 1.6 2019/03/03 22:25:00 pgoyette Exp $");
#include <sys/param.h>
#include <sys/module.h>
@@ -53,7 +53,7 @@
#define MD1 ""
#endif
-MODULE(MODULE_CLASS_EXEC, compat_ultrix, "compat" MD1);
+MODULE(MODULE_CLASS_EXEC, compat_ultrix, "compat_13" MD1);
static struct execsw ultrix_execsw[] = {
#ifdef EXEC_ECOFF
Home |
Main Index |
Thread Index |
Old Index