Skip to content
This repository has been archived by the owner on Jan 20, 2021. It is now read-only.

example Info.plist for AETN adapter

Edward Anderson edited this page Dec 2, 2013 · 2 revisions

This example /System/Library/Extensions/ProlificUsbSerial.kext/Contents/Info.plist was modified to include the device identifiers for the AETN USB serial adapter. This was done following this guide.

Device identifiers

  • Name: USB-Serial Controller D
  • Product ID: 0x2008
  • Vendor ID: 0x0557 (ATEN International Co. Ltd.)
  • Manufacturer: Prolific Technology Inc.

Added section

		<key>AETN</key>
		<dict>
			<key>CFBundleIdentifier</key>
			<string>com.prolific.driver.PL2303</string>
			<key>IOClass</key>
			<string>com_prolific_driver_PL2303</string>
			<key>IOProviderClass</key>
			<string>IOUSBInterface</string>
			<key>bConfigurationValue</key>
			<integer>1</integer>
			<key>bInterfaceNumber</key>
			<integer>0</integer>
			<key>idProduct</key>
			<integer>8200</integer>
			<key>idVendor</key>
			<integer>1367</integer>
		</dict>

Info.plist

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>BuildMachineOSBuild</key>
	<string>10K549</string>
	<key>CFBundleDevelopmentRegion</key>
	<string>English</string>
	<key>CFBundleExecutable</key>
	<string>ProlificUsbSerial</string>
	<key>CFBundleGetInfoString</key>
	<string>ProlificUsbSerial v1.5.0, Copyright 2013 Prolific Technology Inc.</string>
	<key>CFBundleIdentifier</key>
	<string>com.prolific.driver.PL2303</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>Mac OS X Driver for Prolific USB-to-Serial Bridge Device</string>
	<key>CFBundlePackageType</key>
	<string>KEXT</string>
	<key>CFBundleShortVersionString</key>
	<string>1.5.1</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1.5.1</string>
	<key>DTCompiler</key>
	<string>com.apple.compilers.llvm.clang.1_0</string>
	<key>DTPlatformBuild</key>
	<string>10M2518</string>
	<key>DTPlatformVersion</key>
	<string>PG</string>
	<key>DTSDKBuild</key>
	<string>10M2518</string>
	<key>DTSDKName</key>
	<string>macosx10.6</string>
	<key>DTXcode</key>
	<string>0400</string>
	<key>DTXcodeBuild</key>
	<string>10M2518</string>
	<key>IOKitPersonalities</key>
	<dict>
		<key>067B_2303</key>
		<dict>
			<key>CFBundleIdentifier</key>
			<string>com.prolific.driver.PL2303</string>
			<key>IOClass</key>
			<string>com_prolific_driver_PL2303</string>
			<key>IOProviderClass</key>
			<string>IOUSBInterface</string>
			<key>bConfigurationValue</key>
			<integer>1</integer>
			<key>bInterfaceNumber</key>
			<integer>0</integer>
			<key>idProduct</key>
			<integer>8963</integer>
			<key>idVendor</key>
			<integer>1659</integer>
		</dict>
		<key>067B_2304</key>
		<dict>
			<key>CFBundleIdentifier</key>
			<string>com.prolific.driver.PL2303</string>
			<key>IOClass</key>
			<string>com_prolific_driver_PL2303</string>
			<key>IOProviderClass</key>
			<string>IOUSBInterface</string>
			<key>bConfigurationValue</key>
			<integer>1</integer>
			<key>bInterfaceNumber</key>
			<integer>0</integer>
			<key>idProduct</key>
			<integer>8964</integer>
			<key>idVendor</key>
			<integer>1659</integer>
		</dict>
		<key>AETN</key>
		<dict>
			<key>CFBundleIdentifier</key>
			<string>com.prolific.driver.PL2303</string>
			<key>IOClass</key>
			<string>com_prolific_driver_PL2303</string>
			<key>IOProviderClass</key>
			<string>IOUSBInterface</string>
			<key>bConfigurationValue</key>
			<integer>1</integer>
			<key>bInterfaceNumber</key>
			<integer>0</integer>
			<key>idProduct</key>
			<integer>8200</integer>
			<key>idVendor</key>
			<integer>1367</integer>
		</dict>
	</dict>
	<key>OSBundleLibraries</key>
	<dict>
		<key>com.apple.iokit.IOSerialFamily</key>
		<string>1.0.4</string>
		<key>com.apple.iokit.IOUSBFamily</key>
		<string>1.8</string>
		<key>com.apple.kpi.iokit</key>
		<string>10.2.0</string>
		<key>com.apple.kpi.libkern</key>
		<string>10.2.0</string>
		<key>com.apple.kpi.mach</key>
		<string>10.2.0</string>
	</dict>
</dict>
</plist>
Clone this wiki locally