i915drmkms2netbsd revision 1.1
1#!/bin/sh 2 3# $NetBSD: i915drmkms2netbsd,v 1.1 2018/08/27 05:36:15 riastradh Exp $ 4# 5# $ /path/to/i915drmkms2netbsd > /path/to/files.i915drmkms.new 6# 7# Run from the top-level i915drmkms source directory. 8 9set -Ceu 10 11# Location of the i915drmkms sources relative to $NETBSDSRCDIR. 12i915drmkms_top=external/bsd/drm2/dist/drm/i915 13 14# config(5) flag for the i915drmkms driver. 15i915drmkms_flag=i915drmkms 16 17env CONFIG_ACPI=y \ 18env src=. \ 19make -f Makefile -V '$(i915-y)' \ 20| tr ' ' '\n' \ 21| grep -v '^$' \ 22| sed -e 's,\.o$,.c,' \ 23| sort -u \ 24| while read f; do 25 printf 'file\t%s\t%s\n' "$i915drmkms_top/$f" "$i915drmkms_flag" 26done 27