From 94ffbdb4620438499db9e72de2d42615aa51d2cd Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Fri, 21 Feb 2025 17:25:32 -0700 Subject: [PATCH] sys: Empty hints files Create empty hints files for these platforms. They don't normally need a hints file, but people use them for device instance wiring. It's less confusing if they always exist. Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D49052 --- sys/arm/conf/GENERIC.hints | 2 ++ sys/arm64/conf/GENERIC.hints | 2 ++ sys/riscv/conf/GENERIC.hints | 2 ++ 3 files changed, 6 insertions(+) create mode 100644 sys/arm/conf/GENERIC.hints create mode 100644 sys/arm64/conf/GENERIC.hints create mode 100644 sys/riscv/conf/GENERIC.hints diff --git a/sys/arm/conf/GENERIC.hints b/sys/arm/conf/GENERIC.hints new file mode 100644 index 00000000000..9f009dcd175 --- /dev/null +++ b/sys/arm/conf/GENERIC.hints @@ -0,0 +1,2 @@ +# Empty device.hints +# Use to wire devices in the system to specific driver instances diff --git a/sys/arm64/conf/GENERIC.hints b/sys/arm64/conf/GENERIC.hints new file mode 100644 index 00000000000..9f009dcd175 --- /dev/null +++ b/sys/arm64/conf/GENERIC.hints @@ -0,0 +1,2 @@ +# Empty device.hints +# Use to wire devices in the system to specific driver instances diff --git a/sys/riscv/conf/GENERIC.hints b/sys/riscv/conf/GENERIC.hints new file mode 100644 index 00000000000..9f009dcd175 --- /dev/null +++ b/sys/riscv/conf/GENERIC.hints @@ -0,0 +1,2 @@ +# Empty device.hints +# Use to wire devices in the system to specific driver instances