1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License, Version 1.0 only 6# (the "License"). You may not use this file except in compliance 7# with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22# 23# Configuration file for usb skeleton driver 24# 25# Copyright 2004 Sun Microsystems, Inc. All rights reserved. 26# Use is subject to license terms. 27# 28#ident "%Z%%M% %I% %E% SMI" 29 30# usbskel_dumptree is a boolean value which, when uncommented, will dump the 31# descriptor tree of the device. It is here to demonstrate how to set a 32# boolean property in a conf file. Regular drivers are best not to put 33# debugging switches in a conf file. 34 35usbskel_dumptree; 36 37# usbskel_parse_level is a value between 1 and 3, corresponding to the parse 38# level passed to usb_get_dev_data(9F), for determining the breadth of the 39# descriptor tree. While parse_level 0 (corresponding to "no tree") is a 40# valid usb_client_dev_data argument, it is invalid here because a tree is 41# necessary for the skeleton driver. 42 43usbskel_parse_level=3; 44