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