diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md new file mode 100644 index 0000000..fa4e273 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/custom.md @@ -0,0 +1,13 @@ +--- +name: Custom +about: Describe this issue template's purpose here. +title: 'Custom XXX' +labels: '' +assignees: '' + +--- + +{ + "info1":"由于当前型号和版本均为动态选项, 请从WEB端进行参数选择.", + "info2":"整个编译过程一般在5分钟左右(受驱动数量和版本影响), 如长时间未收到[bot]的回复, 请reopen或者重新创建Issue." +} diff --git a/.github/workflows/cdn.yml b/.github/workflows/cdn.yml new file mode 100644 index 0000000..2940a89 --- /dev/null +++ b/.github/workflows/cdn.yml @@ -0,0 +1,38 @@ +# +# Copyright (C) 2022 Ing +# +# This is free software, licensed under the MIT License. +# See /LICENSE for more information. +# + + +name: Refresh CDN +on: + push: + workflow_dispatch: + +jobs: + refresh: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@main + + - name: Refresh CDN + run : | + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git config --global user.name "github-actions[bot]" + sudo timedatectl set-timezone "Asia/Shanghai" + + curl -L "https://purge.jsdelivr.net/gh/wjz304/Redpill_CustomBuild@main/parameter.json" + curl -L "https://purge.jsdelivr.net/gh/wjz304/Redpill_CustomBuild@main/loads.json" + curl -L "https://purge.jsdelivr.net/gh/wjz304/Redpill_CustomBuild@main/exts.json" + curl -L "https://purge.jsdelivr.net/gh/wjz304/Redpill_CustomBuild@main/lkms.json" + curl -L "https://purge.jsdelivr.net/gh/wjz304/Redpill_CustomBuild@main/tips.md" + + curl -I "https://cdn.statically.io/gh/wjz304/Redpill_CustomBuild/main/parameter.json" + curl -I "https://cdn.statically.io/gh/wjz304/Redpill_CustomBuild/main/loads.json" + curl -I "https://cdn.statically.io/gh/wjz304/Redpill_CustomBuild/main/exts.json" + curl -I "https://cdn.statically.io/gh/wjz304/Redpill_CustomBuild/main/lkms.json" + curl -I "https://cdn.statically.io/gh/wjz304/Redpill_CustomBuild/main/tips.md" + diff --git a/.github/workflows/custom.yml b/.github/workflows/custom.yml new file mode 100644 index 0000000..1dde79e --- /dev/null +++ b/.github/workflows/custom.yml @@ -0,0 +1,1129 @@ +# +# Copyright (C) 2022 Ing +# +# This is free software, licensed under the MIT License. +# See /LICENSE for more information. +# + + +name: Custom Redpill +on: + issues: + types: [opened, reopened] + workflow_dispatch: + inputs: + body: + description: 'issuss body' + required: true + default: '' + type: string + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@main + + - name: Create Issues comment + if: github.event_name == 'issues' + id: comment + uses: actions-cool/issues-helper@v3 + with: + actions: 'create-comment' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ github.event.issue.number }} + body: | + 分析 title 和 body 内容 .. + > ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + ---- + emoji: heart + + - name: Set up Ruby 3 + uses: ruby/setup-ruby@v1 + with: + ruby-version: 3.1.2 + + - name: Set up Python 3 + uses: actions/setup-python@v4 + with: + python-version: '3.10' + + - name: Init Env + run : | + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git config --global user.name "github-actions[bot]" + sudo timedatectl set-timezone "Asia/Shanghai" + + python -m pip install --upgrade pip setuptools + + - name: Get Issues Info + if: github.event_name == 'issues' + id: get-issues + uses: actions/github-script@v6 + with: + script: | + // '': 替换一次; '//g': 替换全局; '//gi': 替换全局并忽略大小写; + // \u0008 \b Backspace + // \u0009 \t Tab + // \u000A \n 换行符 + // \u000B \v 垂直制表符 + // \u000C \f 换页 + // \u000D \r 回车 + // \u0022 \" 双引号 (") + // \u0027 \' 单引号 (') + // \u005C \\ 反斜杠 (\) + // \u00A0 不间断空格 + // \u2028 行分隔符 + // \u2029 段落分隔符 + // \uFEFF 字节顺序标记 + + var fs = require('fs'); // 引入fs模块 + var issuenumber = ${{ toJSON(github.event.issue.number) }}; + var issueauth = ${{ toJSON(github.event.issue.user.login) }}; + var issuetitle = ${{ toJSON(github.event.issue.title) }}; + var issuebody = ${{ toJSON(github.event.issue.body) }}; + + if (issuetitle != null) { + issuetitle = issuetitle.replace(/\u000A|\u000D/g, ""); // 换行符,回车 + } + + if (issuebody != null) { + // Backspace,Tab,垂直制表符,换页,回车,不间断空格,行分隔符,段落分隔符,字节顺序标记 + issuebody = issuebody.replace(/\u0008|\u0009|\u000B|\u000C|\u000D|\u00A0|\u2028|\u2029|\uFEFF/g, ""); + + // 容错 + issuebody = issuebody.replace(/:/g, ": "); + issuebody = issuebody.replace(/,/g, ", "); + issuebody = issuebody.replace(/“|”/g, "\""); + + fs.writeFileSync(`body#${issuenumber}.txt`, issuebody, { 'flag': 'w' }, (err) => { if (err) throw err; }); + + var regex = /\`\`\`([\s\S]*?)\`\`\`/g; + let options = issuebody.match(regex); + if (options != null && options.length > 0) { + fs.writeFileSync('customshell.sh', options[options.length-1].replace(/\`/g, ""), { 'flag': 'w' }, (err) => { if (err) throw err; }); + for(option in options) { + console.log(options[option]); + issuebody = issuebody.replace(options[option], ""); + } + } + // 换行符 + issuebody = issuebody.replace(/\u000A/g, ""); + } + core.setOutput("issuenumber", JSON.stringify(issuenumber)); + core.setOutput("issueauth", JSON.stringify(issueauth)); + core.setOutput("issuetitle", JSON.stringify(issuetitle)); + core.setOutput("issuebody", JSON.stringify(issuebody)); + + - name: Set Issues Info + if: github.event_name == 'issues' && success() + run: | + echo issuenumber: '${{ steps.get-issues.outputs.issuenumber }}' + echo issueauth: '${{ steps.get-issues.outputs.issueauth }}' + echo issuetitle: '${{ steps.get-issues.outputs.issuetitle }}' + echo issuebody: '${{ steps.get-issues.outputs.issuebody }}' + + echo "issuenumber="${{ steps.get-issues.outputs.issuenumber }}"" >> $GITHUB_ENV + echo "issueauth="${{ steps.get-issues.outputs.issueauth }}"" >> $GITHUB_ENV + echo "issuetitle="${{ steps.get-issues.outputs.issuetitle }}"" >> $GITHUB_ENV + echo "issuebody="${{ steps.get-issues.outputs.issuebody }}"" >> $GITHUB_ENV + + if [ -f 'customshell.sh' ]; then + echo "customshell.sh" + cat customshell.sh + fi + + - name: Get Build Info + shell: python + run: | + import os, re, json, shutil, string, subprocess + + def set_output(name, value): + subprocess.call(["echo '{}={}' >> $GITHUB_ENV".format(name, value)], shell=True) + + if __name__ == '__main__': + + issues = 'false' + iscustom = 'true' + errinfo = '' + warinfo = '' + + repository = '' + platform = '' + version = '' + lkm = '' + + config = '' + + maxdisks = '' + maxlanport = '' + internalportcfg = '' + esataportcfg = '' + usbportcfg = '' + sn = '' + mac = '' + netif_num = '' + vid = '' + pid = '' + diskidxmap = '' + sataportmap = '' + sasidxmap = '' + + dtb = '' + ext = '' + + dev = '0' + + try: + body = {} + bodyOriginal = {} + if '${{ github.event_name }}' == 'issues': + if '${{ env.issuetitle }}'.lower().startswith('custom'): + issues = 'true' + bodyOriginal = json.loads('${{ env.issuebody }}') + else: + iscustom = 'false' + else: + bodyOriginal = json.loads('${{ inputs.body }}') + + for k, v in bodyOriginal.items(): + body[k.lower()] = v + + if len(body) == 0: + iscustom = 'false' + errinfo = 'body 错误, body is null' + else: + # l = lambda x: x.strip() if isinstance(x, str) else str(x) + if 'repository' in body: repository = body['repository'].strip() + if 'platform' in body: platform = body['platform'].strip() + if 'version' in body: version = body['version'].strip() + if 'lkm' in body: lkm = body['lkm'].strip() + + if 'config' in body: config = body['config'] #l(body['config']).strip() + + if 'maxdisks' in body: maxdisks = body['maxdisks'].strip() + if 'maxlanport' in body: maxlanport = body['maxlanport'].strip() + if 'internalportcfg' in body: internalportcfg = body['internalportcfg'].strip() + if 'esataportcfg' in body: esataportcfg = body['esataportcfg'].strip() + if 'usbportcfg' in body: usbportcfg = body['usbportcfg'].strip() + #if 'sn' in body: sn = body['sn'].strip() + #if 'mac' in body: mac = body['mac'].strip() + if 'netif_num' in body: netif_num = body['netif_num'].strip() + if 'vid' in body: vid = body['vid'].strip() + if 'pid' in body: pid = body['pid'].strip() + if 'diskidxmap' in body: diskidxmap = body['diskidxmap'].strip() + if 'sataportmap' in body: sataportmap = body['sataportmap'].strip() + if 'sasidxmap' in body: sasidxmap = body['sasidxmap'].strip() + + if 'dtb' in body: dtb = body['dtb'].strip() + if 'ext' in body: ext = body['ext'].strip() + if 'dev' in body: dev = body['dev'].strip() + + except Exception as e: + iscustom = 'false' + errinfo = 'body 错误, 不符合JSON规范 {}.'.format(e) + + loads = {} + with open('loads.json', mode="r") as f: + loads = json.loads(f.read()) + + repositorys = loads.keys() + if iscustom == 'true' and not repository in repositorys: + iscustom = 'false' + errinfo = 'repository 参数错误, 当前仅支持 {}.'.format(', '.join(repositorys)) + + if iscustom == 'true': + platforms = loads[repository].keys() + if not platform in platforms: + iscustom = 'false' + errinfo = 'platform 参数错误, 当前仅支持 {}.'.format(', '.join(platforms)) + + if iscustom == 'true': + versions = loads[repository][platform] + if not version in versions: + iscustom = 'false' + errinfo = 'version 参数错误, 当前仅支持 {}.'.format(', '.join(versions)) + + if iscustom == 'true': + lkms = [] + with open('lkms.json', mode="r") as f: + keys = json.loads(f.read())['wjz304'][platform.replace('+', 'p').lower() + '_' + version.split('-')[-1]].keys() + lkms = [x for x in keys if not x.endswith('*') and not x.endswith('#')] + if lkm == '': + lkm = lkms[0] + if not lkm in lkms: + iscustom = 'false' + errinfo = 'lkm 参数错误, 当前仅支持 {}.'.format(', '.join(lkms)) + + if config != '': + try: + if isinstance(config, str): + config = json.loads(config) + if isinstance(config, dict): + config = json.dumps(config) + json.loads(config) + else: + if iscustom == 'true': + iscustom = 'false' + errinfo = 'config 参数错误, 不符合JSON规范.' + except Exception as e: + if iscustom == 'true': + iscustom = 'false' + errinfo = 'config 参数错误, 不符合JSON规范 {}.'.format(e) + + if iscustom == 'true' and maxdisks != '' and (not maxdisks.isdigit() or int(maxdisks) < 1 or int(maxdisks) > 48): + iscustom = 'false' + errinfo = 'maxdisks 参数错误, 请填写 1 - 48 之间的数字.' + + if iscustom == 'true' and maxlanport != '' and (not maxlanport.isdigit() or int(maxlanport) < 0 or int(maxlanport) > 47): + iscustom = 'false' + errinfo = 'maxlanport 参数错误, 请填写 0 - 47 之间的数字.' + + if iscustom == 'true' and internalportcfg != '': + if len(internalportcfg) > 2 and internalportcfg[:2].lower().startswith('0x') and all(c in string.hexdigits for c in internalportcfg[2:]): + pass + elif all(c in string.hexdigits for c in internalportcfg): + internalportcfg = '0x' + internalportcfg + else: + iscustom = 'false' + errinfo = 'internalportcfg 参数错误, 请填写十六进制数.' + + if iscustom == 'true' and esataportcfg != '': + if len(esataportcfg) > 2 and esataportcfg[:2].lower().startswith('0x') and all(c in string.hexdigits for c in esataportcfg[2:]): + pass + elif all(c in string.hexdigits for c in esataportcfg): + esataportcfg = '0x' + esataportcfg + else: + iscustom = 'false' + errinfo = 'esataportcfg 参数错误, 请填写十六进制数.' + + if iscustom == 'true' and usbportcfg != '': + if len(usbportcfg) > 2 and usbportcfg[:2].lower().startswith('0x') and all(c in string.hexdigits for c in usbportcfg[2:]): + pass + elif all(c in string.hexdigits for c in usbportcfg): + usbportcfg = '0x' + usbportcfg + else: + iscustom = 'false' + errinfo = 'usbportcfg 参数错误, 请填写十六进制数.' + + if iscustom == 'true' and sn != '': + warinfo = 'sn' + if not sn.isalnum(): + iscustom = 'false' + errinfo = 'sn 参数错误.' + warinfo = 'sn' + + if iscustom == 'true' and mac != '': + warinfo = 'mac' if warinfo == '' else 'sn, mac' + macs = [x.strip() for x in re.split(',| |\|', mac) if x.strip() != ''] + if len(macs) > 0 or len(macs) <= 8: + mac = ','.join(macs) + else: + iscustom = 'false' + errinfo = 'mac 参数错误.' + + if iscustom == 'true' and netif_num != '' and (not netif_num.isdigit() or int(netif_num) < 1 or int(netif_num) > 8): + iscustom = 'false' + errinfo = 'netif_num 参数错误, 请填写 1 - 8 之间的数字.' + + if iscustom == 'true' and mac != '' and netif_num != '' and int(netif_num) != len(mac.split(',')): + iscustom = 'false' + errinfo = 'netif_num 应该与 mac 的个数相等, 请填写匹配的数值.' + + if iscustom == 'true' and vid != '': + if len(vid) == 6 and vid.lower().startswith('0x') and all(c in string.hexdigits for c in vid[2:]): + pass + elif len(vid) == 4 and all(c in string.hexdigits for c in vid): + vid = '0x' + vid + else: + iscustom = 'false' + errinfo = 'vid 参数错误, 请填写十六进制数.' + + if iscustom == 'true' and pid != '': + if len(pid) == 6 and pid.lower().startswith('0x') and all(c in string.hexdigits for c in pid[2:]): + pass + elif len(pid) == 4 and all(c in string.hexdigits for c in pid): + pid = '0x' + pid + else: + iscustom = 'false' + errinfo = 'pid 参数错误, 请填写十六进制数.' + + if iscustom == 'true' and ((vid != '' and pid == '') or (vid == '' and pid != '')): + iscustom = 'false' + errinfo = 'vid 和 pid 参数不可单独定制, 应成对出现, 请填写完整的两个参数.' + + if iscustom == 'true' and diskidxmap != '' and not all(c in string.hexdigits for c in diskidxmap): + iscustom = 'false' + errinfo = 'diskidxmap 参数错误, 请填写十六进制数..' + + if iscustom == 'true' and sataportmap != '' and not sataportmap.isdigit(): + iscustom = 'false' + errinfo = 'sataportmap 参数错误, 请填写数字.' + + if iscustom == 'true' and sasidxmap != '' and not sasidxmap.isdigit(): + iscustom = 'false' + errinfo = 'sasidxmap 参数错误, 请填写数字.' + + #if iscustom == 'true' and ((diskidxmap != '' and sataportmap == '') or (diskidxmap == '' and sataportmap != '') or len(diskidxmap) < len(sataportmap)): + # iscustom = 'false' + # errinfo = 'diskidxmap 和 sataportmap 参数不可单独定制, 且 diskidxmap的位数应该为sataportmap位数的2倍.' + + if iscustom == 'true' and dtb != '': # and dtb != 'auto': + url = dtb + try: + try: + import wget, filetype + except ModuleNotFoundError: + os.system('pip3 install wget filetype') + import wget, filetype + + res = wget.download(url) + if res: + down = res + kind = filetype.guess(down) + name = 'user' + if os.path.exists('extract'): + shutil.rmtree('extract') + if kind != None and kind.extension == 'zip': + import zipfile + z = zipfile.ZipFile(down, 'r') + z.extractall('extract') + if kind != None and kind.extension in ['tar', 'gz']: + import tarfile + z = tarfile.open(down) + z.extractall('extract') + if os.path.exists('extract'): + isfind = False + for root, dirs, files in os.walk('extract'): + for file in files: + if file.endswith('.dts') or file.endswith('.dtb'): + isfind = True + down = name + os.path.splitext(file)[-1] + shutil.move(os.path.join(root, file), down) + break + if isfind is True: + break + + if os.path.exists(down) and (down.endswith('dts') or down.endswith('dtb')): + if down.endswith('dts'): + wget.download('https://raw.githubusercontent.com/pocopico/rp-ext/main/redpill-dtb-static/releases/dtc') + if os.path.exists('dtc'): + print('./dtc -q -I dts -O dtb {} >{}.dtb'.format(down, name)) + os.system('sudo chmod a+x dtc') + # os.system('sudo ./dtc -q -I dts -O dtb {} >{}.dtb'.format(down, name)) + p = subprocess.Popen('sudo ./dtc -q -I dts -O dtb {} >{}.dtb'.format(down, name), shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + errinfo = p.stderr.read().decode('utf-8') + if os.path.exists('{}.dtb'.format(name)) and os.path.getsize('{}.dtb'.format(name)) > 0: + print('dtc ok ...') + dtb = os.path.abspath('{}.dtb'.format(name)) + else: + iscustom = 'false' + errinfo = 'dtb 参数错误, dts文件内容存在错误 <{}>.'.format(errinfo. + lace('\r', '').replace('\n', ' ')) + else: + iscustom = 'false' + errinfo = 'dtb 参数错误, 下载 dtc(dts->dtb tools) 失败, 可能是服务器压力过大, 请稍后重试, 或者直接使用 dtb 文件跳过转换.' + else: + dtb = os.path.abspath(down) + else: + iscustom = 'false' + errinfo = 'dtb 参数错误, 该url下载的文件不是所支持的格式.' + except ValueError as e: + iscustom = 'false' + errinfo = 'dtb 参数错误, {}, 请填写 dts/dtb 文件有效的 http(s) 下载链接.'.format(e) + except Exception as e: + iscustom = 'false' + errinfo = 'dtb 参数错误, {}, 请稍后重试.'.format(e) + + if iscustom == 'true' and ext != '': + rpKey = platform.replace('+', 'p').lower() + '_' + version.split('-')[-1] + rpExts = [] + with open('exts.json', mode="r") as f: + extsjson = json.loads(f.read()) + extskey = 'pocopico' + if dev == '1': + extskey = 'wjz304' + if extskey in extsjson and rpKey in extsjson[extskey]: + rpExts = list(extsjson[extskey][rpKey].keys()) + extdels = [x.strip() for x in re.split(',| |\|', ext) if x.strip() != '' and x.strip().startswith('-')] + ext3rds = [x.strip() for x in re.split(',| |\|', ext) if x.strip() != '' and x.strip().startswith('http')] + extpocs = [x.strip() for x in re.split(',| |\|', ext) if x.strip() != '' and not x.strip().startswith('-') and not x.strip().startswith('http')] + ext = '' + while True: + if len(extdels) > 0: + rpDels = ['-boot-wait', '-acpid2', '-misc', '-virtio', '-dtb'] + extc = [x for x in extdels if x not in rpDels] + if len(extc) > 0: + iscustom = 'false' + errinfo = 'ext 参数错误, "{}" 无效, 删除必备驱动当前仅支持 "{}".'.format(extc, ','.join(rpDels)) + break + if ext != '': + ext += ',' + ext += ','.join(extdels) + if len(extpocs) > 0: + if len(rpExts) < 0: + iscustom = 'false' + errinfo = 'ext 参数错误, 该模式不存在 "{}" 对应的驱动, 请尝试切换模式或者使用 http(s) 链接驱动.'.format(rpKey) + break + extc = [x for x in list(set(extpocs) - set(rpExts)) if type(x) == str] + if len(extc) > 0: + iscustom = 'false' + errinfo = 'ext 参数错误, "{}" 不在 exts.json 中, 请填写 exts.json 中存在的名称(no */#).'.format(','.join(extc)) + break + extc = [x for x in extpocs if x.endswith('*') or x.endswith('#')] + if len(extc) > 0: + iscustom = 'false' + errinfo = 'ext 参数错误, "{}" 无效. (* 结尾的为无效驱动, # 结尾的为sha256错误驱动.).'.format(','.join(extc)) + break + if ext != '': + ext += ',' + ext += ','.join(extpocs) + if len(ext3rds) > 0: + extc = [x for x in ext3rds if not x.endswith('.json')] + if len(extc) > 0: + iscustom = 'false' + errinfo = 'ext 参数错误, "{}" 无效. (* 结尾的为无效驱动, # 结尾的为sha256错误驱动.).'.format(','.join(extc)) + break + if ext != '': + ext += ',' + ext += ','.join(ext3rds) + + if ext == '': + iscustom = 'false' + errinfo = 'ext 参数错误. 无效的name, 无效的链接.' + break + + if iscustom == 'true' and not dev in ['0', '1']: + dev = '0' + + set_output('issues', issues) + set_output('iscustom', iscustom) + set_output('errinfo', errinfo) + set_output('warinfo', warinfo) + + set_output('repository', repository) + set_output('platform', platform) + set_output('version', version) + set_output('lkm', lkm) + + set_output('config', config) + set_output('maxdisks', maxdisks) + set_output('maxlanport', maxlanport) + set_output('internalportcfg', internalportcfg) + set_output('esataportcfg', esataportcfg) + set_output('usbportcfg', usbportcfg) + set_output('sn', sn) + set_output('mac', mac) + set_output('netif_num', netif_num) + set_output('vid', vid) + set_output('pid', pid) + set_output('diskidxmap', diskidxmap) + set_output('sataportmap', sataportmap) + set_output('sasidxmap', sasidxmap) + set_output('dtb', dtb) + set_output('ext', ext) + set_output('dev', dev) + + - name: Echo Build Info + run: | + echo issues: '${{ env.issues }}' + echo iscustom: '${{ env.iscustom }}' + echo errinfo: '${{ env.errinfo }}' + echo warinfo: '${{ env.warinfo }}' + + echo repository: '${{ env.repository }}' + echo platform: '${{ env.platform }}' + echo version: '${{ env.version }}' + echo lkm: '${{ env.lkm }}' + + echo config: '${{ env.config }}' + + echo maxdisks: '${{ env.maxdisks }}' + echo maxlanport: '${{ env.maxlanport }}' + echo internalportcfg: '${{ env.internalportcfg }}' + echo esataportcfg: '${{ env.esataportcfg }}' + echo usbportcfg: '${{ env.usbportcfg }}' + echo sn: '${{ env.sn }}' + echo mac: '${{ env.mac }}' + echo netif_num: '${{ env.netif_num }}' + echo vid: '${{ env.vid }}' + echo pid: '${{ env.pid }}' + echo diskidxmap: '${{ env.diskidxmap }}' + echo sataportmap: '${{ env.sataportmap }}' + echo sasidxmap: '${{ env.sasidxmap }}' + echo dtb: '${{ env.dtb }}' + echo ext: '${{ env.ext }}' + echo dev: '${{ env.dev }}' + + - name: Add Issues labels + if: env.issues == 'true' && env.iscustom == 'true' + uses: actions-cool/issues-helper@v3 + with: + actions: 'add-labels' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ env.issuenumber }} + labels: 'custom,${{ env.platform }}' + + - name: Update Comment Begin + if: env.issues == 'true' && env.iscustom == 'true' + uses: actions-cool/issues-helper@v3 + with: + actions: 'update-comment' + token: ${{ secrets.GITHUB_TOKEN }} + comment-id: ${{ steps.comment.outputs.comment-id }} + update-mode: replace + body: | + ${{ env.issueauth }} 您好. + 您自定义的 Redpill 已开始构建. 请前往下面的 URL 查看详细信息. + > ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + ---- + emoji: heart + + - name: Update Comment Error + if: env.issues == 'true' && env.iscustom == 'false' + uses: actions-cool/issues-helper@v3 + with: + actions: 'update-comment' + token: ${{ secrets.GITHUB_TOKEN }} + comment-id: ${{ steps.comment.outputs.comment-id }} + update-mode: replace + body: | + ${{ env.issueauth }} 您好. + 您自定义 Redpill 所填写的信息有误, 无法触发编译, 请参考模板和错误提示对body进行修改并请重新触发编译(Close & Reopen). + `Error Info:` + `${{ env.errinfo }}` + > ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + ---- + emoji: confused + + - name: Update Comment Warinfo + if: env.issues == 'true' && env.warinfo != '' + uses: actions-cool/issues-helper@v3 + with: + actions: 'update-comment' + token: ${{ secrets.GITHUB_TOKEN }} + comment-id: ${{ steps.comment.outputs.comment-id }} + update-mode: append + body: | + > + ---- + ‼️‼️‼️ + `Body 中含有自定义的 ${{ env.warinfo }} 敏感信息, 为防止其他人盗用, 建议参考以下视频删除敏感信息(不影响本次编译).` + + https://user-images.githubusercontent.com/5615843/187615519-53a6dcf5-a5e2-4731-8889-9eee8955a977.mp4 + > + ---- + emoji: eyes + + - name: Update Comment Invalid + if: env.issues == 'false' + uses: actions-cool/issues-helper@v3 + with: + actions: 'update-comment' + token: ${{ secrets.GITHUB_TOKEN }} + comment-id: ${{ steps.comment.outputs.comment-id }} + update-mode: replace + body: | + ${{ env.issueauth }} 您好. + 根据 title 和 body 内容的分析, 该 Issue 并非定制 Redpill. 将在管理员看到后会进行回复. + > ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + ---- + emoji: eyes + + - name: Create Config File + if: env.iscustom == 'true' + shell: python + run: | + import os, json + + if __name__ == '__main__': + config = { + "extra_cmdline": { + "pid": "0x0001", + "vid": "0x46f4", + "sn": "", + "mac1": "" + }, + "synoinfo": { + "internalportcfg": "0xffff", + "maxlanport": "7" + }, + "ramdisk_copy": {} + } + + dat = [] + if '${{ env.sn }}' == '' or '${{ env.mac }}' == '': + # try: + # import wget + # except ModuleNotFoundError: + # os.system('pip3 install wget') + # import wget + # res = wget.download('https://raw.githubusercontent.com/pocopico/tinycore-redpill/main/serialnumbergen.sh', out='serialnumbergen.sh') + # os.system('sed -i "s|DS3622xsp|DS3622xs+|g" serialnumbergen.sh') + # os.system('sed -i "s|echo.*\$(generateMacAddress)|echo \$(generateMacAddress)|g" serialnumbergen.sh') + # os.system('sed -i "s|echo.*\$(generateSerial \$1)|echo \$(generateSerial \$1)|g" serialnumbergen.sh') + # platform = '${{ env.platform }}' + # if platform == 'DS923+': platform = 'DS920+' # 当前不支持 DS923+ 算号 + # if platform == 'DS1520+': platform = 'DS920+' # 当前不支持 DS1520+ 算号 + # if platform == 'DS1821+': platform = 'DS1621+' # 当前不支持 DS1821+ 算号 + # if platform == 'DS2422+': platform = 'DS1621+' # 当前不支持 DS2422+ 算号 + # if platform == 'FS2500': platform = 'DS1621+' # 当前不支持 FS2500 算号 + # if platform == 'FS3600': platform = 'DS3622xs+' # 当前不支持 FS3600 算号 + # if platform == 'RS4021xs+': platform = 'DS3622xs+' # 当前不支持 RS4021xs+ 算号 + # dat = os.popen('bash ./serialnumbergen.sh {}'.format(platform)).readlines() + + platform = '${{ env.platform }}' + dat = os.popen('bash ./serialnumbergen.sh {}'.format(platform)).readlines() + + if '${{ env.config }}' != '': + inconfig = json.loads('${{ env.config }}') + config.update(inconfig) + + if not "extra_cmdline" in config: + config["extra_cmdline"] = {} + + if '${{ env.vid }}' != '': + config["extra_cmdline"]["vid"] = '${{ env.vid }}' + if '${{ env.pid }}' != '': + config["extra_cmdline"]["pid"] = '${{ env.pid }}' + + if '${{ env.sn }}' != '': + config["extra_cmdline"]["sn"] = '${{ env.sn }}' + if config["extra_cmdline"]["sn"] == '' and len(dat) == 2: + config["extra_cmdline"]["sn"] = dat[1].strip() + + if '${{ env.mac }}' != '': + macs = '${{ env.mac }}'.split(',') + for index, item in enumerate(macs): + config["extra_cmdline"]["mac{}".format(index+1)] = item.replace(':', '').upper() + config["extra_cmdline"]["netif_num"] = len(macs) + else: + netnum = 2 + if '${{ env.netif_num }}' != '': + netnum = int('${{ env.netif_num }}') + if len(dat) == 2: + for index in range(netnum): + config["extra_cmdline"]["mac{}".format(index+1)] = hex(int(dat[0].strip().replace(':', ''), 16) + index)[2:].rjust(12,'0').upper() + config["extra_cmdline"]["netif_num"] = netnum + + if '${{ env.diskidxmap }}' != '': + config["extra_cmdline"]["DiskIdxMap"] = '${{ env.diskidxmap }}' + if '${{ env.sataportmap }}' != '': + config["extra_cmdline"]["SataPortMap"] = '${{ env.sataportmap }}' + if '${{ env.sasidxmap }}' != '': + config["extra_cmdline"]["SasIdxMap"] = '${{ env.sasidxmap }}' + + + if not "synoinfo" in config: + config["synoinfo"] = {} + + if '${{ env.maxdisks }}' != '': + config["synoinfo"]["maxdisks"] = '${{ env.maxdisks }}' + if '${{ env.maxlanport }}' != '': + config["synoinfo"]["maxlanport"] = '${{ env.maxlanport }}' + if '${{ env.internalportcfg }}' != '': + config["synoinfo"]["internalportcfg"] = '${{ env.internalportcfg }}' + if '${{ env.esataportcfg }}' != '': + config["synoinfo"]["esataportcfg"] = '${{ env.esataportcfg }}' + if '${{ env.usbportcfg }}' != '': + config["synoinfo"]["usbportcfg"] = '${{ env.usbportcfg }}' + + print(json.dumps(config, indent=4)) + + with open('user_config.json', 'w', encoding="utf-8") as f: + f.write(json.dumps(config, indent=4)) + + - name: Run Build + if: env.iscustom == 'true' && success() + run: | + function exdsmpat() { + platform=$1 + version=$2 + + synoplatform=$(echo ${platform,,} | sed 's/+/p/g') # DS3622xs+ => ds3622xsp + synoversion=$(echo ${version} | awk -F - '{print $2}') # 7.0.1-42218 => 42218 + + configfile=./config/${platform}/${version}/config.json + paturl=$(cat ${configfile} | jq '.os .pat_url' | sed -s 's/"//g') + + pwd + cd ./cache + curl -L ${paturl} -o ds.pat + + # curl -L https://global.download.synology.com/download/DSM/release/7.0.1/42218/DSM_DS3622xs%2B_42218.pat -o oldpat.tar.gz + # mkdir synoesp && tar -C./synoesp/ -xf oldpat.tar.gz rd.gz + # cd synoesp + # xz -dc < rd.gz >rd 2>/dev/null || echo "extract rd.gz" + # cpio -idm &1 || echo "extract rd" + # mkdir extract + # cp ./usr/lib/libcurl.so.4 ./usr/lib/libmbedcrypto.so.5 ./usr/lib/libmbedtls.so.13 ./usr/lib/libmbedx509.so.1 ./usr/lib/libmsgpackc.so.2 ./usr/lib/libsodium.so ./usr/lib/libsynocodesign-ng-virtual-junior-wins.so.7 ./usr/syno/bin/scemd ./extract/ + # cd extract && ln -s scemd syno_extract_system_patch && cd .. + # cd .. + # mkdir pat + # sudo LD_LIBRARY_PATH=synoesp/extract synoesp/extract/syno_extract_system_patch ds.pat pat || echo "extract latest pat" + + # curl -k https://raw.githubusercontent.com/wjz304/Redpill_CustomBuild/main/syno-extractor.sh | sudo bash -s ds.pat pat + chmod a+x $GITHUB_WORKSPACE/syno-extractor.sh && $GITHUB_WORKSPACE/syno-extractor.sh ds.pat pat + + tar -czvf ${synoplatform}_${synoversion}.pat -C ./pat/ . --warning=no-file-changed + ls -al + sha256zImage=$(sha256sum ./pat/zImage | awk '{print $1}') + sha256ramdisk=$(sha256sum ./pat/rd.gz | awk '{print $1}') + echo sha256zImage: ${sha256zImage} sha256ramdisk: ${sha256ramdisk} + sudo rm -rf ds.pat oldpat.tar.gz synoesp pat + ls -al + sha256newpat=$(sha256sum ${synoplatform}_${synoversion}.pat | awk '{print $1}') + echo sha256newpat: ${sha256newpat} + cd .. + pwd + + jq -r .os.sha256 ${configfile} + sed -i "s/$(jq -r .os.sha256 ${configfile})/${sha256newpat}/g" ${configfile} + jq -r .os.sha256 ${configfile} + } + + function setsynoarch() { + case $1 in + DS918+) + synoarch=apollolake + ;; + DS920+) + synoarch=geminilake + ;; + DS923+) + synoarch=r1000 + ;; + DS1520+) + synoarch=geminilake + ;; + DS1621+) + synoarch=v1000 + ;; + DS1821+) + synoarch=v1000 + ;; + DS2422+) + synoarch=v1000 + ;; + DS3615xs) + synoarch=bromolow + ;; + DS3617xs) + synoarch=broadwell + ;; + DS3622xs+) + synoarch=broadwellnk + ;; + DVA1622) + synoarch=geminilake + ;; + DVA3221) + synoarch=denverton + ;; + FS2500) + synoarch=v1000 + ;; + FS3600) + synoarch=broadwellnk + ;; + RS4021xs+) + synoarch=broadwellnk + ;; + esac + } + + sudo apt update + sudo apt upgrade -y + sudo apt install curl bspatch jq git -y + sudo apt install rename tree -y + + # 开始表演 + echo "============================编译开始============================" + repository=${{ env.repository }} + repo=$(echo ${repository} | awk -F'_' '{print $1}') + branch=$(echo ${repository} | awk -F'_' '{print $2}') + lkm=${{ env.lkm }} + + bArgs="" + if [ ${repository} != 'pocopico_develop' ]; then + bArgs+='BRP_JUN_MOD=1 ' + fi + # if [ ${{ env.platform }} == 'SA6400' -a ${{ env.version }} == '7.1.1-42962' ]; then + # bArgs+='BRP_LINUX_PATCH_METHOD=repack ' + # fi + if [ "${bArgs}" != "" ]; then + bArgs="BRP_DEBUG=1 ${bArgs}" + fi + + lkmext=https://raw.githubusercontent.com/wjz304/rp-ext/master + rpext=https://raw.githubusercontent.com/pocopico/rp-ext/master + loadext=https://raw.githubusercontent.com/${repo}/redpill-load/${branch} + if [ ${{ env.dev }} == '1' ]; then + rpext=https://raw.githubusercontent.com/wjz304/rp-ext/master + if [ ${repo} == 'pocopico' ]; then + loadext=https://raw.githubusercontent.com/wjz304/rp-ext/master + fi + fi + + git clone -b ${branch} https://github.com/${repo}/redpill-load redpill-load + + # submodule + [ -d redpill-load/ext/recreate-zImage ] && rm -rf redpill-load/ext/recreate-zImage + git clone -b master https://github.com/kiler129/recreate-zImage.git redpill-load/ext/recreate-zImage + sudo chmod -R a+x redpill-load/ext + find redpill-load/ext -type f -name '*.sh' -exec ls -al '{}' + + + #容错 + # curl -k https://raw.githubusercontent.com/wjz304/Redpill_CustomBuild/main/typo.sh | bash + chmod a+x $GITHUB_WORKSPACE/typo.sh && . $GITHUB_WORKSPACE/typo.sh + + cp user_config.json redpill-load/user_config.json + + cd redpill-load + platform=${{ env.platform }} + version=${{ env.version }} + synoplatform=$(echo ${platform,,} | sed 's/+/p/g') # DS3622xs+ => ds3622xsp + synoversion=$(echo ${version} | awk -F - '{print $2}') # 7.0.1-42218 => 42218 + setsynoarch ${platform} + + # 7.1 解密PAT + echo "===========================7.1 解密PAT==========================" + if [[ "${version}" > "7.0.1-42218" ]]; then + exdsmpat ${platform} ${version} + fi + + # 添加必备驱动 + echo "===========================添加必备驱动==========================" + echo -e '{\n "thethorgroup.boot-wait": "https://raw.githubusercontent.com/wjz304/rp-ext/master/redpill-boot-wait/rpext-index.json"\n}' > bundled-exts.json + + [ -f ./redpill-boot-wait/rpext-index.json -a "$(curl -s --location ${loadext}/redpill-boot-wait/rpext-index.json | jq -r .releases.${synoplatform}_${synoversion})" != "null" ] && ./ext-manager.sh add ${loadext}/redpill-boot-wait/rpext-index.json + [ -f ./redpill-acpid/rpext-index.json -a "$(curl -s --location ${loadext}/redpill-acpid/rpext-index.json | jq -r .releases.${synoplatform}_${synoversion})" != "null" ] && ./ext-manager.sh add ${loadext}/redpill-acpid/rpext-index.json + [ -f ./redpill-misc/rpext-index.json -a "$(curl -s --location ${loadext}/redpill-misc/rpext-index.json | jq -r .releases.${synoplatform}_${synoversion})" != "null" ] && ./ext-manager.sh add ${loadext}/redpill-misc/rpext-index.json + [ -f ./redpill-virtio/rpext-index.json -a "$(curl -s --location ${loadext}/redpill-virtio/rpext-index.json | jq -r .releases.${synoplatform}_${synoversion})" != "null" ] && ./ext-manager.sh add ${loadext}/redpill-virtio/rpext-index.json + + # redpill.ko 方式一 + echo "=======================Download redpill.ko======================" + extension=$(curl -s --location "${lkmext}/${lkm}/rpext-index.json") + redpilltgz=$(curl -s --location "$(echo ${extension} | jq -r .releases.${synoplatform}_${synoversion})" | jq -r '.files[] .url') + [ "$(echo $redpilltgz | awk '{print $NF}')" != "$redpilltgz" ] && redpilltgz=$(echo $redpilltgz | awk '{print $1}') + wget ${redpilltgz} + tar zxvf $(echo ${redpilltgz} | awk -F / '{print $NF}') -C ./ + mv ./redpill.ko ./ext/rp-lkm/redpill-linux-v$(modinfo --field=vermagic redpill.ko | awk '{print $1}').ko + + # # redpill.ko 方式二 + # echo "========================Build redpill.ko========================" + # toolkittxz=ds.${synoarch}-${version::3}.dev.txz + # toolkitdir=usr/local/x86_64-pc-linux-gnu/x86_64-pc-linux-gnu/sys-root/usr/lib/modules/DSM-${version::3}/build + # curl --location "https://global.download.synology.com/download/ToolChain/toolkit/${version::3}/${synoarch}/${toolkittxz}" --output ${toolkittxz} + # mkdir ${synoarch} && tar -C./${synoarch}/ -xf ${toolkittxz} ${toolkitdir} + # git clone -b master --depth=1 https://github.com/${repo}/redpill-lkm.git + # cd redpill-lkm + # # sed -i 's/ -std=gnu89/ -std=gnu89 -fno-pie/' ../${synoarch}/${toolkitdir}/Makefile + # make LINUX_SRC=../${synoarch}/${toolkitdir} dev-v${version::1} + # cp -fv ./redpill.ko ../ext/rp-lkm/redpill-linux-v$(modinfo --field=vermagic ./redpill.ko | awk '{print $1}').ko + # cd .. + + dtbs=(DS920+ DS923+ DS1520+ DS1621+ DS1821+ DS2422+ DVA1622 FS2500 SA6400) + for item in ${dtbs[@]} + do + if [ "${item}" == "${platform}" ]; then + if [ -z "${{ env.dtb }}" ]; then + echo "========================Add redpill-dtb=========================" + ./ext-manager.sh add ${lkmext}/redpill-dtb/rpext-index.json + ./ext-manager.sh _update_platform_exts ${synoplatform}_${synoversion} pocopico.dtb + # 仅本地可用 + # elif [ "${{ env.dtb }}" == "auto" ]; then + # echo "==========================Add dtbpatch==========================" + # ./ext-manager.sh add ${lkmext}/dtbpatch/rpext-index.json + # ./ext-manager.sh _update_platform_exts ${synoplatform}_${synoversion} dtbpatch + else + echo "=====================Add redpill-dtb-static=====================" + ./ext-manager.sh add ${lkmext}/redpill-dtb-static/rpext-index.json + ./ext-manager.sh _update_platform_exts ${synoplatform}_${synoversion} redpill-dtb-static + # dtbextfile="$(find custom -name model_${synoplatform}.dtb)" + dtbextfile="custom/extensions/redpill-dtb-static/${synoplatform}_${synoversion}/model_${synoplatform}.dtb" + dtbuserfile="${{ env.dtb }}" + echo Copying ${dtbuserfile} to ${dtbextfile} ... + sudo cp ${dtbuserfile} ${dtbextfile} + fi + fi + done + + # 添加扩展驱动 + echo "==========================添加扩展驱动===========================" + if [ -n "${{ env.ext }}" ]; then + ext=${{ env.ext }} + exts=(${ext//,/ }) + for item in ${exts[@]} + do + echo "==> [${item}]" + if [[ ${item} = -* ]]; then + [ -d ./custom/extensions ] && extname=$(ls -A1 ./custom/extensions | grep "${item:1}" | head -n 1) + echo "==> [${extname}]" + if [ -n "${extname}" ]; then + echo "remove ${extname}" + ./ext-manager.sh remove "${extname}" + else + echo "默认就没有 ${item:1}" + fi + elif [[ ${item} = http* ]]; then + echo "add ${item}" + ./ext-manager.sh add "${item}" + else + echo "add ${rpext}/${item}/rpext-index.json" + ./ext-manager.sh add "${rpext}/${item}/rpext-index.json" + fi + done + fi + + #自定义操作 + if [ -f '../customshell.sh' ]; then + if [ "${{ env.issueauth }}" == "${{ github.repository_owner }}" -o "${{ github.triggering_actor }}" == "${{ github.repository_owner }}" ]; then + echo "===========================自定义操作============================" + cp ../customshell.sh customshell.sh + chmod a+x customshell.sh + source customshell.sh + else + echo "由于权限太高, 防止有些人执行非法操作, 仅仓库作者可操作, 请联系该仓库管理员或者fork到自己名下操作." + fi + fi + + # 编译 + echo "==============================编译==============================" + # sed -i "s|#!/usr/bin/env bash|#!/usr/bin/env -S bash -x|g" ./build-loader.sh + sudo ${bArgs} BRP_USER_CFG=user_config.json ./build-loader.sh "${platform}" "${version}" + + ls ./custom/extensions | grep -v txt > exts.txt + ls -al ./custom/extensions + + - name: Generate release tag + if: env.iscustom == 'true' && success() + id: tag + run: | + echo "release_tag=$(date +"%Y.%m.%d-%H%M")" >> $GITHUB_ENV + + if [ ${{ env.issues }} == 'true' ]; then + echo "### ${{ env.issueauth }}'s Redpill Custom" >> $GITHUB_STEP_SUMMARY + echo "👉 issues: [#${{ env.issuenumber }}](${{ github.event.issue.html_url }})" >> $GITHUB_STEP_SUMMARY + else + echo "### ${{ github.triggering_actor }}'s Redpill Custom" >> $GITHUB_STEP_SUMMARY + echo "👉 "platform": "${{ env.platform }}" " >> $GITHUB_STEP_SUMMARY + echo "👉 "version": "${{ env.version }}" " >> $GITHUB_STEP_SUMMARY + echo "👉 "ext": "${{ env.ext }}" " >> $GITHUB_STEP_SUMMARY + fi + + if [ '${{ env.warinfo }}' != '' ]; then + echo " " >> $GITHUB_STEP_SUMMARY + echo "‼️‼️‼️ " >> $GITHUB_STEP_SUMMARY + echo 'Body 中含有自定义的 ${{ env.warinfo }} 敏感信息, 为防止其他人盗用, 建议附件下载完成后删除日志和附件. ' >> $GITHUB_STEP_SUMMARY + echo '在👉Issues下评论 "delete builds" 即可删该Issues的所有历史编译记录. ' >> $GITHUB_STEP_SUMMARY + fi + + if [ -f 'body#${{ env.issuenumber }}.txt' ]; then + cp body#${{ env.issuenumber }}.txt redpill-load/body#${{ env.issuenumber }}.txt + echo -e "\n\nBOOT:\n${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" >> redpill-load/body#${{ env.issuenumber }}.txt + else + echo -e "BOOT:\n${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" >> redpill-load/body#actions.txt + fi + + configfile=./redpill-load/config/${{ env.platform }}/${{ env.version }}/config.json + paturl=$(cat ${configfile} | jq '.os .pat_url' | sed -s 's/"//g') + + echo -e "\nPAT:\n${paturl}" >> redpill-load/body#${{ env.issuenumber }}.txt + + - name: Upload to Artifacts + if: env.iscustom == 'true' && success() + uses: actions/upload-artifact@v3 + with: + name: ${{ github.event.repository.name }}-Custom-${{ env.release_tag }} + path: | + redpill-load/exts.txt + redpill-load/body*.txt + redpill-load/user_config.json + redpill-load/images/*.img + + - name: Generate release tag + if: env.iscustom == 'false' + run: | + if [ ${{ env.issues }} == 'true' ]; then + echo "### ${{ env.issueauth }}'s Redpill Custom" >> $GITHUB_STEP_SUMMARY + else + echo "### ${{ github.triggering_actor }}'s Redpill Custom" >> $GITHUB_STEP_SUMMARY + fi + echo "😞 😔 😟 😕 🙁 ☹️ 😣 😖 😫 😩 🥺 😢 " >> $GITHUB_STEP_SUMMARY + echo "您自定义 Redpill 所填写的信息有误, 无法触发编译, 请参考模板和错误提示对body进行修改并请重新触发编译(Close & Reopen). " >> $GITHUB_STEP_SUMMARY + echo "`Error Info:` " >> $GITHUB_STEP_SUMMARY + echo "`${{ env.errinfo }}` " >> $GITHUB_STEP_SUMMARY + if [ '${{ env.warinfo }}' != '' ]; then + echo " " >> $GITHUB_STEP_SUMMARY + echo "‼️‼️‼️ " >> $GITHUB_STEP_SUMMARY + echo 'Body 中含有自定义的 ${{ env.warinfo }} 敏感信息, 为防止其他人盗用, 建议确认错误原因后删除日志和附件. ' >> $GITHUB_STEP_SUMMARY + echo '在👉Issues下评论 "delete builds" 即可删👉Issues的所有历史编译记录. ' >> $GITHUB_STEP_SUMMARY + fi + + + - name: Update Comment Finish + if: env.issues == 'true' && env.iscustom == 'true' && success() + uses: actions-cool/issues-helper@v3 + with: + actions: 'update-comment' + token: ${{ secrets.GITHUB_TOKEN }} + comment-id: ${{ steps.comment.outputs.comment-id }} + update-mode: replace + body: | + ${{ env.issueauth }} 您好. + 您自定义的 Redpill 已构建完成. 请前往下面的 URL 下载. + > ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + ---- + PS: + 在Issues下评论 "transfer" 附件转快传 🚲->🏍. (请勿重复发, 操作时间 ≈ 成功个数 X 3分钟). + 在Issues下评论 "delete builds" 即可删该Issues的所有历史编译记录. + > + ---- + emoji: hooray + + - name: Close Issues + if: env.issues == 'true' && env.iscustom == 'true' && success() + uses: actions-cool/issues-helper@v3 + with: + actions: 'close-issue' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ env.issuenumber }} + + - name: Update Comment Fail + if: env.issues == 'true' && env.iscustom == 'true' && failure() + uses: actions-cool/issues-helper@v3 + with: + actions: 'update-comment' + token: ${{ secrets.GITHUB_TOKEN }} + comment-id: ${{ steps.comment.outputs.comment-id }} + update-mode: replace + body: | + ${{ env.issueauth }} 您好. + 您自定义的 Redpill 构建失败. 请前往下面的 URL 查看详细信息对body进行修改并请重新触发编译(Close & Reopen). + > ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + ---- + PS: + 在Issues下评论 "delete builds" 即可删该Issues的所有历史编译记录. + > + ---- + emoji: confused + + - name: Update Comment Warinfo + if: env.issues == 'true' && env.warinfo != '' + uses: actions-cool/issues-helper@v3 + with: + actions: 'update-comment' + token: ${{ secrets.GITHUB_TOKEN }} + comment-id: ${{ steps.comment.outputs.comment-id }} + update-mode: append + body: | + > + ---- + ‼️‼️‼️ + `Body 中含有自定义的 ${{ env.warinfo }} 敏感信息, 为防止其他人盗用, 建议附件下载完成/确认错误原因后删除日志和附件.` + `在Issues下评论 "delete builds" 即可删Issues的所有历史编译记录.` + > + ---- + emoji: eyes diff --git a/.github/workflows/exts.yml b/.github/workflows/exts.yml new file mode 100644 index 0000000..915abd6 --- /dev/null +++ b/.github/workflows/exts.yml @@ -0,0 +1,321 @@ +# +# Copyright (C) 2022 Ing +# +# This is free software, licensed under the MIT License. +# See /LICENSE for more information. +# + +name: Get Exts and Loads + +on: + schedule: + - cron: '0 0 * * *' + + workflow_dispatch: + +jobs: + exts: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@main + + - name: Initialization environment + run : | + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git config --global user.name "github-actions[bot]" + sudo timedatectl set-timezone "Asia/Shanghai" + + - name: Checkout rp-ext s + run: | + sudo rm -rf rp-ext_pocopico + git clone https://github.com/pocopico/rp-ext rp-ext_pocopico + # 容错 + rm -f rp-ext_pocopico/asix/releases/ds3617xs_42218.json + rm -f rp-ext_pocopico/ax88179_178a/releases/ds3617xs_42218.json + rm -f rp-ext_pocopico/dm9601/releases/ds3617xs_42218.json + rm -f rp-ext_pocopico/nct6775/releases/dva3221_42218.json + rm -f rp-ext_pocopico/sfc/releases/ds918p_25556.json + rm -f rp-ext_pocopico/v9fs/releases/ds918p_42218.json + + #igc 临时对策 + rm -rf rp-ext_pocopico/igc + svn co https://github.com/jim3ma/synology-igc/trunk/igc rp-ext_pocopico/igc + + + sudo rm -rf rp-ext_wjz304 + git clone https://github.com/wjz304/rp-ext rp-ext_wjz304 + # 容错 + rm -f rp-ext_wjz304/asix/releases/ds3617xs_42218.json + rm -f rp-ext_wjz304/ax88179_178a/releases/ds3617xs_42218.json + rm -f rp-ext_wjz304/dm9601/releases/ds3617xs_42218.json + rm -f rp-ext_wjz304/nct6775/releases/dva3221_42218.json + rm -f rp-ext_wjz304/sfc/releases/ds918p_25556.json + rm -f rp-ext_wjz304/v9fs/releases/ds918p_42218.json + + #igc 临时对策 + rm -rf rp-ext_wjz304/igc + svn co https://github.com/jim3ma/synology-igc/trunk/igc rp-ext_wjz304/igc + + + - name: Get exts lsit + shell: python + run: | + # -*- coding: utf-8 -*- + + import os, json, hashlib + + root = '' # os.path.dirname(os.path.abspath(__file__)) + + def getjsonfile(file): + data = None + if os.path.isfile(file): + try: + with open(file, 'r') as f: + data = json.load(f) + except Exception as err: + print(err) + return data + + def sha256sum(file): + sha256 = '' + if os.path.isfile(file): + with open(file, "rb") as f: + sha256=hashlib.sha256(f.read()).hexdigest() + return sha256 + + def pathstrsub(exp, reglist=[]): + ret = exp + try: + for re in reglist: + ret = ret.replace(re[0], re[1]) + except Exception as err: + print(err) + return ret + + def getextslist(work = 'rp-ext', reglist=[]): + exts = {} + try: + jext = 'rpext-index.json' + extdirs = os.listdir(os.path.join(root, work)) + extdirs.sort() + print(extdirs) + for extdir in extdirs: + if extdir.startswith('.') or extdir.startswith('redpill'): + continue + if os.path.isdir(os.path.join(root, work, extdir)): + data_index = getjsonfile(os.path.join(root, work, extdir, jext)) + if data_index != None: + try: + keys = data_index["releases"].keys() + for key in keys: + suffix = '' + data_releases = getjsonfile(os.path.join(root, work, pathstrsub(data_index["releases"][key], reglist))) + if data_releases != None: + if "files" in data_releases: + for file in data_releases["files"]: + sha256_online = file["sha256"] + sha256_local = sha256sum(os.path.join(root, work, pathstrsub( file["url"], reglist))) + if sha256_online != sha256_local: + suffix = '#' + print('file: {} -- key: {} -- error: {} -- really: {}'.format(pathstrsub(data_index["releases"][key], reglist), pathstrsub(file["url"], reglist), sha256_online, sha256_local)) + else: + suffix = '*' + print('file: {} -- may not exists'.format(pathstrsub(data_index["releases"][key], reglist))) + if key in exts.keys(): + exts[key][extdir + suffix] = data_index["info"]["description"] + else: + exts[key] = { extdir + suffix: data_index["info"]["description"]} + except Exception as err: + print(err) + except Exception as err: + print(err) + return exts + + def getlkmslist(work = 'rp-ext', reglist=[]): + lkms = {} + try: + jext = 'rpext-index.json' + extdirs = os.listdir(os.path.join(root, work)) + extdirs.sort() + print(extdirs) + for extdir in extdirs: + if not extdir.startswith('redpill') or '-' in extdir: + continue + if os.path.isdir(os.path.join(root, work, extdir)): + data_index = getjsonfile(os.path.join(root, work, extdir, jext)) + if data_index != None: + try: + keys = data_index["releases"].keys() + for key in keys: + suffix = '' + data_releases = getjsonfile(os.path.join(root, work, pathstrsub(data_index["releases"][key], reglist))) + if data_releases != None: + if "files" in data_releases: + for file in data_releases["files"]: + sha256_online = file["sha256"] + sha256_local = sha256sum(os.path.join(root, work, pathstrsub( file["url"], reglist))) + if sha256_online != sha256_local: + suffix = '#' + print('file: {} -- key: {} -- error: {} -- really: {}'.format(pathstrsub(data_index["releases"][key], reglist), pathstrsub(file["url"], reglist), sha256_online, sha256_local)) + else: + suffix = '*' + print('file: {} -- may not exists'.format(pathstrsub(data_index["releases"][key], reglist))) + if key in lkms.keys(): + lkms[key][extdir + suffix] = data_index["info"]["description"] + else: + lkms[key] = { extdir + suffix: data_index["info"]["description"]} + except Exception as err: + print(err) + except Exception as err: + print(err) + return lkms + + if __name__ == '__main__': + exts = {} + lkms = {} + print('####################### pocopico #######################') + reglist=[] + reglist.append(['https://raw.githubusercontent.com/pocopico/rp-ext/master/','']) + reglist.append(['https://github.com/pocopico/rp-ext/raw/main/','']) + reglist.append(['https://github.com/pocopico/rp-ext/blob/main/','']) + reglist.append(['https://raw.githubusercontent.com/jim3ma/synology-igc/master/','']) + exts["pocopico"] = getextslist('rp-ext_pocopico', reglist) + lkms["pocopico"] = getlkmslist('rp-ext_pocopico', reglist) + + print('####################### wjz304 #######################') + reglist=[] + reglist.append(['https://raw.githubusercontent.com/wjz304/rp-ext/master/','']) + reglist.append(['https://raw.githubusercontent.com/jim3ma/synology-igc/master/','']) + exts["wjz304"] = getextslist('rp-ext_wjz304', reglist) + lkms["wjz304"] = getlkmslist('rp-ext_wjz304', reglist) + + if len(exts) > 0: + print('####################### exts #######################') + print(json.dumps(exts, indent=4)) + with open(os.path.join(root, 'exts.json'), 'w', encoding='utf-8') as f: + f.write(json.dumps(exts, indent=4)) + + if len(lkms) > 0: + print('####################### lkms #######################') + print(json.dumps(lkms, indent=4)) + with open(os.path.join(root, 'lkms.json'), 'w', encoding='utf-8') as f: + f.write(json.dumps(lkms, indent=4)) + + - name: Check and Push + run: | + if [ -n "$(git status -s | grep -E 'exts.json|lkms.json')" ]; then + git add $(git status -s | grep -E 'exts.json|lkms.json' | awk '{printf " %s", $2}') + git commit -m "update $(date +%Y-%m-%d" "%H:%M:%S)" + git push -f + fi + + + loads: + runs-on: ubuntu-latest + needs: exts + steps: + - name: Checkout + uses: actions/checkout@main + + - name: Initialization environment + run : | + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git config --global user.name "github-actions[bot]" + sudo timedatectl set-timezone "Asia/Shanghai" + + - name: Checkout redpill-load s + run: | + sudo rm -rf redpill-load_pocopico_develop + git clone --branch develop https://github.com/pocopico/redpill-load.git redpill-load_pocopico_develop + + sudo rm -rf redpill-load_pocopico_jun + git clone --branch jun https://github.com/pocopico/redpill-load.git redpill-load_pocopico_jun + + sudo rm -rf redpill-load_jumkey_develop + git clone --branch develop https://github.com/jumkey/redpill-load.git redpill-load_jumkey_develop + + sudo rm -rf redpill-load_PeterSuh-Q3_master + git clone --branch master https://github.com/PeterSuh-Q3/redpill-load.git redpill-load_PeterSuh-Q3_master + + sudo rm -rf redpill-load_wjz304_test-dev + git clone --branch test-dev https://github.com/wjz304/redpill-load.git redpill-load_wjz304_test-dev + + sudo rm -rf redpill-load_wjz304_test-jun + git clone --branch test-jun https://github.com/wjz304/redpill-load.git redpill-load_wjz304_test-jun + + - name: Get loads lsit + shell: python + run: | + # -*- coding: utf-8 -*- + import os, json + + root = '' # os.path.dirname(os.path.abspath(__file__)) + + def getloadlist(work = 'redpill-load', ignore=[]): + load = {} + try: + lkms = {} + with open('lkms.json', mode="r") as f: + lkms = json.loads(f.read())['wjz304'] # 暂时只匹配自己 + + platforms = os.listdir(os.path.join(root, work, 'config')) + platforms.sort() + print(platforms) + for platform in platforms: + if platform.startswith('.') or platform.startswith('_'): + continue + if os.path.isdir(os.path.join(root, work, 'config', platform)): + versions = os.listdir(os.path.join(root, work, 'config', platform)) + versions.sort() + print(versions) + for version in versions: + if version in ignore: + continue + if os.path.exists(os.path.join(root, work, 'config', platform, version, 'config.json')): + key = platform.replace('+', 'p').lower() + '_' + version.split('-')[-1] + if key in lkms: + if not all(item.endswith('*') or item.endswith('#') for item in lkms[key]): + if platform not in load: + load[platform] = [] + load[platform].append(version) + + except Exception as err: + print(err) + return load + + if __name__ == '__main__': + loads = {} + ignore=['7.0-41222', '7.0-41890', '7.1.0-42550', '7.1.0-42621', '7.1.1-42951'] + + print('################### pocopico_develop ###################') + loads["pocopico_develop"] = getloadlist('redpill-load_pocopico_develop', ignore) + + print('##################### pocopico_jun #####################') + loads["pocopico_jun"] = getloadlist('redpill-load_pocopico_jun', ignore) + + print('#################### jumkey_develop ####################') + loads["jumkey_develop"] = getloadlist('redpill-load_jumkey_develop', ignore) + + print('################## PeterSuh-Q3_master ##################') + loads["PeterSuh-Q3_master"] = getloadlist('redpill-load_PeterSuh-Q3_master', ignore) + + print('################## wjz304_test-dev ##################') + loads["wjz304_test-dev"] = getloadlist('redpill-load_wjz304_test-dev', ignore) + + print('################## wjz304_test-jun ##################') + loads["wjz304_test-jun"] = getloadlist('redpill-load_wjz304_test-jun', ignore) + + if len(loads) > 0: + print('####################### loads #######################') + print(json.dumps(loads, indent=4)) + with open(os.path.join(root, 'loads.json'), 'w', encoding='utf-8') as f: + f.write(json.dumps(loads, indent=4)) + + - name: Check and Push + run: | + if [ -n "$(git status -s | grep loads.json)" ]; then + git add loads.json + git commit -m "update $(date +%Y-%m-%d" "%H:%M:%S)" + git push -f + fi diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml new file mode 100644 index 0000000..6f4e976 --- /dev/null +++ b/.github/workflows/schedule.yml @@ -0,0 +1,387 @@ +# +# Copyright (C) 2022 Ing +# +# This is free software, licensed under the MIT License. +# See /LICENSE for more information. +# + + +# 默认情况下,使用存储库的GITHUB_TOKEN执行任务时,GITHUB_TOKEN触发的事件不会创建新的工作流运行。这可以防止意外创建递归工作流运行。 +# 可以通过个人TOKEN在工作流运行中触发工作流。 +# 1. 在 https://github.com/settings/tokens 创建 一个 token +# 2. 在 https://github.com/${{ github.repository }}/settings/secrets/actions 加入上一步创建的 token + + + +name: Custom Redpill(schedule) + +on: + issue_comment: + types: [created, edited, deleted] + + schedule: + - cron: '0 0 * * *' + + workflow_dispatch: + +jobs: +# dump: +# runs-on: ubuntu-latest +# steps: +# - name: Dump GitHub context +# id: github_context_step +# run: echo '${{ toJSON(github) }}' +# - name: Dump job context +# run: echo '${{ toJSON(job) }}' +# - name: Dump steps context +# run: echo '${{ toJSON(steps) }}' +# - name: Dump runner context +# run: echo '${{ toJSON(runner) }}' +# - name: Dump strategy context +# run: echo '${{ toJSON(strategy) }}' +# - name: Dump matrix context +# run: echo '${{ toJSON(matrix) }}' + +# https://docs.github.com/cn/actions/learn-github-actions/expressions + + transfer: + runs-on: ubuntu-latest + if: github.event_name == 'issue_comment' && contains('transfer', github.event.comment.body) + steps: + - name: Find runs comments + id: find-runs + uses: actions-cool/issues-helper@v3 + with: + actions: 'find-comments' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ github.event.issue.number }} + comment-auth: 'github-actions[bot]' + body-includes: '${{ github.server_url }}/${{ github.repository }}/actions/runs' + + - name: Downloads Artifacts + id: dl-artifacts + uses: actions/github-script@v6 + with: + script: | + var fs = require('fs'); + async function main() { + var runscomments = ${{ steps.find-runs.outputs.comments }}; + console.log("runscomments: " + runscomments); + + var runids = []; + for (i = 0; i < runscomments.length; i++) { + bodylines = runscomments.at(i)["body"].split("\n") + for (j = 0; j < bodylines.length; j++) { + if (bodylines.at(j).indexOf("runs/") != -1) { + let runid = bodylines.at(j).substring(bodylines.at(j).lastIndexOf('/') + 1).replace(/^\s+|\s+$/g, ''); + runids.push({"id": runscomments.at(i)["id"], "runid": runid}); + } + } + } + console.log("runids: " + runids); + + // https://docs.github.com/cn/rest/actions/workflow-runs#delete-workflow-run-logs + // https://github.com/octokit/plugin-rest-endpoint-methods.js/blob/master/src/generated/endpoints.ts + + var downloadeds = []; + const [owner, repo] = process.env.GITHUB_REPOSITORY.split("/"); + if (runids.length > 0) { + for (index = 0; index < runids.length; index++) { + try { + if (false == downloadeds.includes(runids.at(index)["runid"])) { + // 获取附件 + const artifacts = await github.rest.actions.listWorkflowRunArtifacts({ + owner, + repo, + run_id: runids.at(index)["runid"], + per_page: 100, + }); + console.log("artifacts: %s", artifacts.data); + if (artifacts.data.total_count > 0) { + // 下载附件 (正常只有一个) + for (const artifact of artifacts.data.artifacts) { + console.log(`artifact id ${artifact.id} of ${artifact.name}`) + const dlartifact = await github.rest.actions.downloadArtifact({ + owner, + repo, + artifact_id: artifact.id, + archive_format: 'zip', + }); + console.log(`GET artifacts(${artifact.id}): ${dlartifact}`) + fs.mkdirSync(`${runids.at(index)["runid"]}`, {recursive:true}, (err)=>{ if(err){ throw err; }}); + fs.writeFileSync(`${runids.at(index)["runid"]}/${artifact.name}.zip`, Buffer.from(dlartifact.data), (err)=>{ if(err){ throw err; }}); + } + downloadeds.push(runids.at(index)["runid"]); + } + } + } catch (error) { + core.setFailed(error.message); + } + } + } + var dirs = ''; + dirs = downloadeds.join(","); + core.setOutput("downloadeds", dirs); + } + main(); + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Transfer Artifacts + run: | + # curl -sL https://git.io/file-transfer | sh + # ./transfer trs *.zip + + echo 'info<> $GITHUB_ENV + if [ -n "${{ steps.dl-artifacts.outputs.downloadeds }}" ]; then + dls=${{ steps.dl-artifacts.outputs.downloadeds }} + ids=(${dls//,/ }) + for item in ${ids[@]} + do + files="" + if [ -d ${item} ]; then + for file in `ls ${item}` + do + files="${files} -F filedata=@${item}/${file}" + done + fi + echo "### ${item}: " >> $GITHUB_ENV + if [ -n "${files}" ]; then + url=$(curl -w '\n' -i ${files} "https://transfer.sh" | sed 's/\r//g; /^$/d') + echo "- ${url} " >> $GITHUB_ENV + else + echo "- delete " >> $GITHUB_ENV + fi + done + else + echo '未找到编译成功的附件, 如果编译失败或者已删除(delete builds)请重新编译后再执行本操作. ' >> $GITHUB_ENV + fi + echo 'EOF' >> $GITHUB_ENV + + - name: Create Issues Comment + uses: actions-cool/issues-helper@v3 + with: + actions: 'create-comment' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ github.event.issue.number }} + body: '${{ env.info }}' + emoji: rocket + + + delete_builds: + runs-on: ubuntu-latest + if: github.event_name == 'issue_comment' && contains('delete builds', github.event.comment.body) + steps: + + - name: Find bots comments + id: find-bots + uses: actions-cool/issues-helper@v3 + with: + actions: 'find-comments' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ github.event.issue.number }} + comment-auth: 'github-actions[bot]' + + - name: Find runs comments + id: find-runs + uses: actions-cool/issues-helper@v3 + with: + actions: 'find-comments' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ github.event.issue.number }} + comment-auth: 'github-actions[bot]' + body-includes: '${{ github.server_url }}/${{ github.repository }}/actions/runs' + + - name: Delete build Data + id: delete-build + uses: actions/github-script@v6 + with: + script: | + async function main() { + + var botscomments = ${{ steps.find-bots.outputs.comments }}; + console.log("botscomments: " + botscomments); + + var runscomments = ${{ steps.find-runs.outputs.comments }}; + console.log("runscomments: " + runscomments); + + var botids = []; + for (i = 0; i < botscomments.length; i++) { + botids.push(botscomments.at(i)["id"]); + } + console.log("botids: " + botids); + + var runids = []; + for (i = 0; i < runscomments.length; i++) { + bodylines = runscomments.at(i)["body"].split("\n") + for (j = 0; j < bodylines.length; j++) { + if (bodylines.at(j).indexOf("runs/") != -1) { + let runid = bodylines.at(j).substring(bodylines.at(j).lastIndexOf('/') + 1).replace(/^\s+|\s+$/g, ''); + runids.push({"id": runscomments.at(i)["id"], "runid": runid}); + } + } + } + console.log("runids: " + runids); + + // https://docs.github.com/cn/rest/actions/workflow-runs#delete-workflow-run-logs + // https://github.com/octokit/plugin-rest-endpoint-methods.js/blob/master/src/generated/endpoints.ts + + const [owner, repo] = process.env.GITHUB_REPOSITORY.split("/"); + if (runids.length > 0) { + var deleted = []; + for (index = 0; index < runids.length; index++) { + try { + if (false == deleted.includes(runids.at(index)["runid"])) { + // 删除日志 + const dellogs = await github.rest.actions.deleteWorkflowRunLogs({ + owner, + repo, + run_id: runids.at(index)["runid"], + }); + console.log("DELETE logs: %s", dellogs); + + // 获取附件 + const artifacts = await github.rest.actions.listWorkflowRunArtifacts({ + owner, + repo, + run_id: runids.at(index)["runid"], + per_page: 100, + }); + console.log("artifacts: %s", artifacts.data); + + // 删除附件 + for (const artifact of artifacts.data.artifacts) { + console.log(`artifact id ${artifact.id} of ${artifact.name}`) + const delartifacts = await github.rest.actions.deleteArtifact({ + owner, + repo, + artifact_id: artifact.id, + }); + console.log(`DELETE artifacts(${artifact.id}): ${delartifacts}`) + } + deleted.push(runids.at(index)["runid"]); + } + } catch (error) { + core.setFailed(error.message); + } + } + } + + if (botids.length > 0) { + for (index = 0; index < botids.length; index++) { + try { + // 更新评论 + const retcomments = await github.rest.issues.updateComment({ + owner, + repo, + comment_id: botids.at(index), + body: '`delete`' + }) + console.log("PATCH emoji: %s", retcomments); + } catch (error) { + core.setFailed(error.message); + } + } + } + } + main(); + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + + set_schedule: + runs-on: ubuntu-latest + if: github.event_name == 'issue_comment' && contains(fromJson('["add schedule", "del schedule"]'), github.event.comment.body) + steps: + - name: Checkout + uses: actions/checkout@main + + - name: Check Labels + id: check-comments + uses: actions/github-script@v6 + with: + script: | + var labels = []; + var issuelabels = ${{ toJSON(github.event.issue.labels) }}; + console.log("issuelabels: " + issuelabels); + for (i in issuelabels) { + labels.push(issuelabels[i]["name"]); + } + console.log("labels: " + labels); + + var isSchedule = "false"; + if (${{ toJSON(github.event.comment.body) }}.toLowerCase() == "add schedule") { + isSchedule = "true"; + } + console.log("isSchedule: " + isSchedule); + + if (isSchedule == "true") { + labels.push("schedule"); + } else { + var index = labels.indexOf("schedule"); + if (index > -1) labels.splice(index, 1); + } + + core.setOutput("isSchedule", isSchedule); + core.setOutput("labels", labels.join(",")); + + - name: Set labels + uses: actions-cool/issues-helper@v3 + with: + actions: 'set-labels' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ github.event.issue.number }} + labels: ${{ steps.check-comments.outputs.labels }} + + + checklabels: + runs-on: ubuntu-latest + if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' + steps: + - name: Checkout + uses: actions/checkout@main + + - name: Find schedule issues + id: find-issues + uses: actions-cool/issues-helper@v3 + with: + actions: 'find-issues' + token: ${{ secrets.GITHUB_TOKEN }} + issue-state: 'all' + #title-includes: 'custom' + labels: 'schedule' + + - name: Get Issues Info + id: get-issues + uses: actions/github-script@v6 + with: + script: | + var issues = ${{ toJSON(steps.find-issues.outputs.issues) }}; + // Backspace,Tab,换行符,垂直制表符,换页,回车,不间断空格,行分隔符,段落分隔符,字节顺序标记 + issues = issues.replace(/\u0008|\u0009|\u000A|\u000B|\u000C|\u000D|\u00A0|\u2028|\u2029|\uFEFF/g, ""); + core.setOutput("issues", JSON.stringify(issues)); + + - name: Reopen Issues + shell: python + run: | + import os, json, requests + + if __name__ == '__main__': + + try: + issues = {} + issues = json.loads(${{ steps.get-issues.outputs.issues }}) + + if len(issues) > 0: + headers = {'Accept': 'application/vnd.github+json', 'Authorization': 'token ${{ secrets.ACTION }}'} + data = '{"state": "open"}' + for item in issues: + try: + url='https://api.github.com/repos/{}/issues/{}'.format('${{ github.repository }}', item['number']) + res = requests.post(url=url, data=data, headers=headers) + print(url) + print(res.json()) + except: + pass + except Exception as err: + print(err) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c79d094 --- /dev/null +++ b/.gitignore @@ -0,0 +1,83 @@ +# Created by https://www.toptal.com/developers/gitignore/api/windows,macos,xcode +# Edit at https://www.toptal.com/developers/gitignore?templates=windows,macos,xcode + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### macOS Patch ### +# iCloud generated files +*.icloud + +### Windows ### +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +### Xcode ### +## User settings +xcuserdata/ + +## Xcode 8 and earlier +*.xcscmblueprint +*.xccheckout + +### Xcode Patch ### +*.xcodeproj/* +!*.xcodeproj/project.pbxproj +!*.xcodeproj/xcshareddata/ +!*.xcworkspace/contents.xcworkspacedata +/*.gcno +**/xcshareddata/WorkspaceSettings.xcsettings + +# End of https://www.toptal.com/developers/gitignore/api/windows,macos,xcode + +### Ing ### +.vscode +node_modules diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..bd8dfa1 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (C) 2022 Ing + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 0f9280e..1d2c12a 100644 --- a/README.md +++ b/README.md @@ -1 +1,155 @@ -# Redpill_CustomBuild_old \ No newline at end of file +# Redpill_CustomBuild_old +[![](https://img.shields.io/github/issues-search?label=%E5%AE%9A%E5%88%B6%E6%AC%A1%E6%95%B0&query=repo%3Awjz304%2FRedpill_CustomBuild%20label%3Acustom)](https://github.com/wjz304/Redpill_CustomBuild/issues?q=label%3Acustom) +[![](https://img.shields.io/github/issues-search?label=%E6%AF%8F%E6%97%A5%E6%9E%84%E5%BB%BA&query=repo%3Awjz304%2FRedpill_CustomBuild%20label%3Aschedule)](https://github.com/wjz304/Redpill_CustomBuild/issues?q=label%3Aschedule) + +## 介绍 +[Redpill_CustomBuild](https://github.com/wjz304/Redpill_CustomBuild) +[Redpill_CustomBuild_old](https://github.com/wjz304/Redpill_CustomBuild_old)(old) +一个自定义配置及驱动并通过 Github Action 编译 DSM redpill 引导的平台. +本库并没有实际的技术创新, 仅做了一个参数适配, 使一些定制更简单, 并把过程搬到线上, 依赖微软强大的服务器使其快速得到想要的引导文件. +高度依赖以下大佬的项目, 请给以下各位大佬点赞. +>源码仓库: [@RedPill-TTG](https://github.com/RedPill-TTG/redpill-load) +>编译来源: [@pocopico](https://github.com/pocopico/redpill-load) [@jumkey](https://github.com/jumkey/redpill-load) [@PeterSuh-Q3](https://github.com/PeterSuh-Q3/redpill-load) [@fbelavenuto](https://github.com/fbelavenuto/arpl) +>驱动来源: [@pocopico](https://github.com/pocopico/rp-ext) [@jim3ma](https://github.com/jim3ma/synology-igc) [@fbelavenuto](https://github.com/fbelavenuto/r8125) + +在此, 再次, 声明!!! +本人只是按照通用编译流程整合各位大佬的redpill-load 进行编译. 我只是解决编译的问题, 任何引导内部问题我都解决不了(当然知道的问题肯定会协助大家解决). +说通俗点, 我只是相当于一个物流, 你要哪家(大佬)的货(引导)我就给你配送哪家(大佬)的货(引导). + + +> 😎 为什么用 GitHub Action? +> 托管于 GitHub 服务器, 只要 GitHub 不宕机, 它就不受影响(Private 项目每月有 2000 次的限制, Public 项目无限制). + +## 链接 +***如果没有魔法,请参考 https://github.com/wjz304/hosts 设置hosts*** +***请使用 Chromium 内核浏览器 (Chrome / Edge / 360极速 ...)*** +[【👉快速创建】](https://wjz304.github.io/Redpill_CustomBuild_old/Issues.html) +[【👉快速创建】(dev)](https://wjz304.github.io/Redpill_CustomBuild_old/Issues.html?dev=1) +`普通模式默认使用pocopico的驱动库, dev模式默认使用我fork的驱动库(如果报 Checksum 错, 请尝试使用(dev)模式), ` +`并发较多时, 有概率出现curl错误或者 未触发编译的情况, 过几分钟再试...` +`如果你看不懂, 或者其他疑难杂症, 请不要浪费时间. 尝试使用arpl构建. https://github.com/fbelavenuto/arpl` + +## 使用 +在本项目 Issues 中创建问题(符合下述规范), 按需填写即可发起定制构建[【👉图文说明】](https://github.com/wjz304/Redpill_CustomBuild_old/blob/main/guide/Issues.md) [【👉注意事项】](https://github.com/wjz304/Redpill_CustomBuild_old/blob/main/tips.md). + +### Issue title: +标题请以 custom 开头(不区分大小写), 且不要包含'(单引号),"(双引号) 等转义字符. +### Issue body: +内容 以json格式编写(切记符号为英文符号, [【👉JSON检测】](https://json-online.com/check/)) + +参数 | 必选 | 默认值 | 说明 +-----------------|------|----------------|--------- +repository | √ |- | 请选择编译依赖的基础库. "pocopico_develop", "pocopico_jun", "jumkey_develop", "PeterSuh-Q3_master" +platform | √ |- | 请选择你需要编译的型号. (具体包含型号以基础库支持为准) +version | √ |- | 请选择你需要编译的版本. (具体包含版本以基础库支持为准) +lkm | × |- | 如不了解请保持默认, 请选择 LKM 版本.(目前具体有何区别不详, 如无必要选默认的 redpill). +config | × |- | 如不了解请保持默认, 设置默认 user_config.json [①]() +maxdisks | × |- | 如不了解请保持默认, 请输入最大硬盘数 maxdisks. 默认: 无, 范围: 1~32 +maxlanport | × |7 | 如不了解请保持默认, 请输入最大网卡索引 maxlanport. 默认: 7, 范围: 0~31 +internalportcfg | × |"0xffff" | 如不了解请保持默认, 请输入sata接口配置 internalportcfg(十六进制数). [④]() 默认: 0xffff +esataportcfg | × |- | 如不了解请保持默认, 请输入esata接口配置 esataportcfg(十六进制数). [④]() 默认: 无 +usbportcfg | × |- | 如不了解请保持默认, 请输入usb接口配置 usbportcfg(十六进制数). [④]() 默认: 无 +~sn~ | × |- | ~序列号. 默认根据型号随机生成.~ [②]() +~mac~ | × |- | ~MAC地址. 多个请以 "," 间隔. 默认根据型号随机生成.~ [②]() +netif_num | × |2 | 请输入网卡数量 netif_num. 默认: 2, 范围: 1~8 +vid | × |"0x46f4" | 请输入USB设备供应商识别码(Vender ID). 默认: 0x46f4 +pid | × |"0x0001" | 请输入USB设备产品识别码(Product ID). 默认: 0x0001 +diskidxmap | × |- | 请输入SATA控制器盘序 DiskIdxMap. [④]() DS920+, DS923+, DS1520+, DS1621+, DS2422+, DVA1622 不需要填写. 默认: 无 +sataportmap | × |- | 请输入SATA控制器盘数 SataPortMap. [④]() DS920+, DS923+, DS1520+, DS1621+, DS2422+, DVA1622 不需要填写. 默认: 无 +sasidxmap | × |- | 请输入SAS控制器盘数 SasIdxMap. [④]() DS920+, DS923+, DS1520+, DS1621+, DS2422+, DVA1622 不需要填写. 默认: 无 +dtb | × |- | 请输入dtb 文件的下载链接(支持的文件类型: .dts,.dtb,.tar.gz,.zip), 仅 DS920+, DS923+, DS1520+, DS1621+, DS2422+, DVA1622 需要填写, 其他型号请勿填写. [#47](https://github.com/wjz304/Redpill_CustomBuild/issues/47) +ext | × |- | 请输入需要集成的扩展, 多个请以 "," 间隔. 支持名字(pocopico库)或者链接,名字参考[exts.json](./exts.json). eg: "r8125, tg3" +\- | × |- | 高级自定义 [③]() + +``` +①: 格式 json, key会更新到默认的user_config.json中, 因此请谨慎编写. + - 比如 想修改 maxlanport, 需要填写完整的 synoinfo 属性, 当仅填写 {"synoinfo": {"maxlanport": "8"}} 时, 将更新 synoinfo 为只有 maxlanport, 原有 internalportcfg 将会丢失. +②: 由于SN/MAC发生盗用情况, 不再接受SN/MAC的定制, 请勿再填写. +③: body 中可直接插入shell脚本:"由于权限太高, 防止有些人执行非法操作, 仅仓库作者可操作, 请联系该仓库管理员或者fork到自己名下操作." + - 在 body 中 以 ```xxx``` 包裹自定义的 shell 命令, 将在 build 前运行. 参考[#3](https://github.com/wjz304/Redpill_CustomBuild/issues/3) +④:详细信息请查看:https://github.com/wjz304/Redpill_CustomBuild/issues/1252#issuecomment-1242677916 +``` +#### 关于 dtb 现在共3种形式: + \ | 参数 | 说明 +---|------|--------- +1 | dtb参数 填写 dtb/dts 的下载链接 | 内部会自动加入 redpill-dtb-static, 并替换自定义的 dtb 到 redpill-dtb-static 中. +2 | dtb参数 为空 | 内部会自动加入 redpill-dtb, redpill-dtb 将识别硬盘pci位置自动修改dtb, 支持≤4个硬盘热插拔. +3 | dtb参数 为空, ext 加入 "-dtb,dtbpatch" | 内部会加入 dtbpatch, 自动识别已插入硬盘(增加硬盘重启即可). + +## 说明 +0. __感谢 [hoping](https://github.com/htmambo) 大佬制作的 WEB 界面.__ +1. 构建成功 Issues 会自动 closed. +2. 构建失败 后请调整参数重新创建Issues发起重新构建, 或者修改body后 Close Issue + Reopen 重新触发.(触发编译:open, reopen). +3. 再次构建, 直接 reopen 会再次触发构建. +4. 每日构建, 打上'schedule' [【👉标签说明】](https://github.com/wjz304/Redpill_CustomBuild/blob/main/guide/Issues.md#issues-%E6%AF%8F%E6%97%A5%E5%BE%AA%E7%8E%AF%E6%9E%84%E5%BB%BA%E6%95%99%E7%A8%8B)标签 将会每日构建(通过Reopen的方式, 因此如果构建失败Issues没有Closed 将终止). +5. 驱动的选择请参考[【👉驱动列表】](./drivers.md). +6. 根据github官方说明所有的编译结果保留90天,周知. +7. 如果没有魔法, 参考 https://github.com/wjz304/hosts 设置 hosts. +8. [【👉问题反馈】](https://github.com/wjz304/Redpill_CustomBuild/issues/807) 交流群 QQ群: [21609194](https://qm.qq.com/cgi-bin/qm/qr?k=8AU8VJ82OR2HB_77g3vsjGKA-rm-p67B&jump_from=webapi) TG: [https://t.me/Redpill_CustomBuild](https://t.me/Redpill_CustomBuild) + `(PS: 在Issues上评论我可能看不到, 邮件太多了, 如长时间未回复请私信.)` +9. fork 本项目 Issues 和 Action 使用没有问题的. + 但是快速创建的WEB页面由于 涉及 guthub 的 pages, 且含有CDN加速, 存在一些硬编码, 如要使用, 需要开通pages后方可使用. +10. 在Issues下评论 "transfer" 附件转快传 🚲->🏍. (请勿重复发, 转换操作时间 ≈ 该Issue编译成功次数 X 3分钟). +11. 在Issues下评论 "delete builds" 即可删该Issues的所有历史编译记录. +12. Web页 Title 后面的红色标签是可以点击的哦!(***PS:只有读到这里的人才会知道.***). + +## 举例 +* 普通参数示例: + - {"repository":"pocopico_develop", "platform":"DS3622xs+", "version":"7.0.1-42218", "lkm":"redpill", "ext":"r8125, tg3"} + - {"repository": "jumkey_develop", "platform":"DS3622xs+", "version":"7.0.1-42218", "lkm":"redpill", "ext":"r8125, tg3"} + - {"repository":"pocopico_develop", "platform":"DS3622xs+", "version":"7.0.1-42218", "lkm":"redpill", "vid":"0x0525", "pid":"0xa4a5"} + - {"repository":"pocopico_develop", "platform":"DS3622xs+", "version":"7.0.1-42218", "lkm":"redpill", "diskidxmap":"00", "sataportmap":"6", "ext":"r8125"} + - {"repository":"pocopico_develop", "platform":"DS3622xs+", "version":"7.0.1-42218", "lkm":"redpill", "maxdisks":"16", "maxlanport":"7", "ext":"r8125"} + - { + "repository":"pocopico_develop", + "platform":"DS3622xs+", + "version":"7.0.1-42218", + "lkm":"redpill", + "netif_num":"3", + "ext":"r8125, r8168, e1000e, igb, vmxnet3, ixgbe" + } +* dtb参数示例: + - { + "repository":"pocopico_develop", + "platform":"DS920+", + "version":"7.0.1-42218", + "lkm":"redpill", + "dtb": "https://github.com/wjz304/Redpill_CustomBuildfiles/9235785/ds920p.zip", + "ext":"r8125" + } +* ext参数链接示例: + - { + "repository":"pocopico_develop", + "platform":"DS3622xs+", + "version":"7.1.1-42962", + "lkm":"redpill", + "ext":"r8125, e1000, e1000e, vmxnet3, https://raw.githubusercontent.com/wjz304/rp-ext/main/rtl8150/rpext-index.json" + } +* config参数示例: + - { + "repository":"pocopico_develop", + "platform":"DS3622xs+", + "version":"7.0.1-42218", + "lkm":"redpill", + "config":{"ramdisk_copy": {}}, + "ext":"r8125, e1000, e1000e, vmxnet3" + } +* 高级自定义示例: + - {"repository":"pocopico_develop", "platform":"DS3622xs+", "version":"7.0.1-42218", "lkm":"redpill", "ext":"r8125,e1000e,vmxnet3"} + \`\`\` + echo "${platform}" + \`\`\` + +
+
🍻打赏一下 +
+
+
+ +## 鸣谢 +https://github.com/RedPill-TTG/redpill-load +https://github.com/jumkey/redpill-load +https://github.com/pocopico/redpill-load +https://github.com/PeterSuh-Q3/redpill-load +https://github.com/Online24Hours/Redpill_Build + diff --git a/docs/Issues.html b/docs/Issues.html new file mode 100644 index 0000000..86f6353 --- /dev/null +++ b/docs/Issues.html @@ -0,0 +1,558 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ ██████╗ ███████╗██████╗ ██████╗ ██╗██╗     ██╗          ██████╗██╗   ██╗███████╗████████╗ ██████╗ ███╗   ███╗██████╗ ██╗   ██╗██╗██╗     ██████╗ 
+ ██╔══██╗██╔════╝██╔══██╗██╔══██╗██║██║     ██║         ██╔════╝██║   ██║██╔════╝╚══██╔══╝██╔═══██╗████╗ ████║██╔══██╗██║   ██║██║██║     ██╔══██╗
+ ██████╔╝█████╗  ██║  ██║██████╔╝██║██║     ██║         ██║     ██║   ██║███████╗   ██║   ██║   ██║██╔████╔██║██████╔╝██║   ██║██║██║     ██║  ██║
+ ██╔══██╗██╔══╝  ██║  ██║██╔═══╝ ██║██║     ██║         ██║     ██║   ██║╚════██║   ██║   ██║   ██║██║╚██╔╝██║██╔══██╗██║   ██║██║██║     ██║  ██║
+ ██║  ██║███████╗██████╔╝██║     ██║███████╗███████╗    ╚██████╗╚██████╔╝███████║   ██║   ╚██████╔╝██║ ╚═╝ ██║██████╔╝╚██████╔╝██║███████╗██████╔╝
+ ╚═╝  ╚═╝╚══════╝╚═════╝ ╚═╝     ╚═╝╚══════╝╚══════╝     ╚═════╝ ╚═════╝ ╚══════╝   ╚═╝    ╚═════╝ ╚═╝     ╚═╝╚═════╝  ╚═════╝ ╚═╝╚══════╝╚═════╝ 
+ 
+ 
+ 
+ 
+      
+
+
+ ██▀███  ▓█████ ▓█████▄  ██▓███   ██▓ ██▓     ██▓        ▄████▄   █    ██   ██████ ▄▄▄█████▓ ▒█████   ███▄ ▄███▓ ▄▄▄▄    █    ██  ██▓ ██▓    ▓█████▄ 
+▓██ ▒ ██▒▓█   ▀ ▒██▀ ██▌▓██░  ██▒▓██▒▓██▒    ▓██▒       ▒██▀ ▀█   ██  ▓██▒▒██    ▒ ▓  ██▒ ▓▒▒██▒  ██▒▓██▒▀█▀ ██▒▓█████▄  ██  ▓██▒▓██▒▓██▒    ▒██▀ ██▌
+▓██ ░▄█ ▒▒███   ░██   █▌▓██░ ██▓▒▒██▒▒██░    ▒██░       ▒▓█    ▄ ▓██  ▒██░░ ▓██▄   ▒ ▓██░ ▒░▒██░  ██▒▓██    ▓██░▒██▒ ▄██▓██  ▒██░▒██▒▒██░    ░██   █▌
+▒██▀▀█▄  ▒▓█  ▄ ░▓█▄   ▌▒██▄█▓▒ ▒░██░▒██░    ▒██░       ▒▓▓▄ ▄██▒▓▓█  ░██░  ▒   ██▒░ ▓██▓ ░ ▒██   ██░▒██    ▒██ ▒██░█▀  ▓▓█  ░██░░██░▒██░    ░▓█▄   ▌
+░██▓ ▒██▒░▒████▒░▒████▓ ▒██▒ ░  ░░██░░██████▒░██████▒   ▒ ▓███▀ ░▒▒█████▓ ▒██████▒▒  ▒██▒ ░ ░ ████▓▒░▒██▒   ░██▒░▓█  ▀█▓▒▒█████▓ ░██░░██████▒░▒████▓ 
+░ ▒▓ ░▒▓░░░ ▒░ ░ ▒▒▓  ▒ ▒▓▒░ ░  ░░▓  ░ ▒░▓  ░░ ▒░▓  ░   ░ ░▒ ▒  ░░▒▓▒ ▒ ▒ ▒ ▒▓▒ ▒ ░  ▒ ░░   ░ ▒░▒░▒░ ░ ▒░   ░  ░░▒▓███▀▒░▒▓▒ ▒ ▒ ░▓  ░ ▒░▓  ░ ▒▒▓  ▒ 
+  ░▒ ░ ▒░ ░ ░  ░ ░ ▒  ▒ ░▒ ░      ▒ ░░ ░ ▒  ░░ ░ ▒  ░     ░  ▒   ░░▒░ ░ ░ ░ ░▒  ░ ░    ░      ░ ▒ ▒░ ░  ░      ░▒░▒   ░ ░░▒░ ░ ░  ▒ ░░ ░ ▒  ░ ░ ▒  ▒ 
+  ░░   ░    ░    ░ ░  ░ ░░        ▒ ░  ░ ░     ░ ░      ░         ░░░ ░ ░ ░  ░  ░    ░      ░ ░ ░ ▒  ░      ░    ░    ░  ░░░ ░ ░  ▒ ░  ░ ░    ░ ░  ░ 
+   ░        ░  ░   ░              ░      ░  ░    ░  ░   ░ ░         ░           ░               ░ ░         ░    ░         ░      ░      ░  ░   ░    
+                 ░                                      ░                                                             ░                       ░      
+      
+
+
+ + + + + Public +
+ +
+
+
+ +
+
+
+ + + diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..fa1fd40 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/docs/selectproxy.html b/docs/selectproxy.html new file mode 100644 index 0000000..cd6ecbb --- /dev/null +++ b/docs/selectproxy.html @@ -0,0 +1,594 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ ██████╗ ███████╗██████╗ ██████╗ ██╗██╗     ██╗          ██████╗██╗   ██╗███████╗████████╗ ██████╗ ███╗   ███╗██████╗ ██╗   ██╗██╗██╗     ██████╗ 
+ ██╔══██╗██╔════╝██╔══██╗██╔══██╗██║██║     ██║         ██╔════╝██║   ██║██╔════╝╚══██╔══╝██╔═══██╗████╗ ████║██╔══██╗██║   ██║██║██║     ██╔══██╗
+ ██████╔╝█████╗  ██║  ██║██████╔╝██║██║     ██║         ██║     ██║   ██║███████╗   ██║   ██║   ██║██╔████╔██║██████╔╝██║   ██║██║██║     ██║  ██║
+ ██╔══██╗██╔══╝  ██║  ██║██╔═══╝ ██║██║     ██║         ██║     ██║   ██║╚════██║   ██║   ██║   ██║██║╚██╔╝██║██╔══██╗██║   ██║██║██║     ██║  ██║
+ ██║  ██║███████╗██████╔╝██║     ██║███████╗███████╗    ╚██████╗╚██████╔╝███████║   ██║   ╚██████╔╝██║ ╚═╝ ██║██████╔╝╚██████╔╝██║███████╗██████╔╝
+ ╚═╝  ╚═╝╚══════╝╚═════╝ ╚═╝     ╚═╝╚══════╝╚══════╝     ╚═════╝ ╚═════╝ ╚══════╝   ╚═╝    ╚═════╝ ╚═╝     ╚═╝╚═════╝  ╚═════╝ ╚═╝╚══════╝╚═════╝ 
+ 
+ 
+ 
+ 
+      
+
+
+ ██▀███  ▓█████ ▓█████▄  ██▓███   ██▓ ██▓     ██▓        ▄████▄   █    ██   ██████ ▄▄▄█████▓ ▒█████   ███▄ ▄███▓ ▄▄▄▄    █    ██  ██▓ ██▓    ▓█████▄ 
+▓██ ▒ ██▒▓█   ▀ ▒██▀ ██▌▓██░  ██▒▓██▒▓██▒    ▓██▒       ▒██▀ ▀█   ██  ▓██▒▒██    ▒ ▓  ██▒ ▓▒▒██▒  ██▒▓██▒▀█▀ ██▒▓█████▄  ██  ▓██▒▓██▒▓██▒    ▒██▀ ██▌
+▓██ ░▄█ ▒▒███   ░██   █▌▓██░ ██▓▒▒██▒▒██░    ▒██░       ▒▓█    ▄ ▓██  ▒██░░ ▓██▄   ▒ ▓██░ ▒░▒██░  ██▒▓██    ▓██░▒██▒ ▄██▓██  ▒██░▒██▒▒██░    ░██   █▌
+▒██▀▀█▄  ▒▓█  ▄ ░▓█▄   ▌▒██▄█▓▒ ▒░██░▒██░    ▒██░       ▒▓▓▄ ▄██▒▓▓█  ░██░  ▒   ██▒░ ▓██▓ ░ ▒██   ██░▒██    ▒██ ▒██░█▀  ▓▓█  ░██░░██░▒██░    ░▓█▄   ▌
+░██▓ ▒██▒░▒████▒░▒████▓ ▒██▒ ░  ░░██░░██████▒░██████▒   ▒ ▓███▀ ░▒▒█████▓ ▒██████▒▒  ▒██▒ ░ ░ ████▓▒░▒██▒   ░██▒░▓█  ▀█▓▒▒█████▓ ░██░░██████▒░▒████▓ 
+░ ▒▓ ░▒▓░░░ ▒░ ░ ▒▒▓  ▒ ▒▓▒░ ░  ░░▓  ░ ▒░▓  ░░ ▒░▓  ░   ░ ░▒ ▒  ░░▒▓▒ ▒ ▒ ▒ ▒▓▒ ▒ ░  ▒ ░░   ░ ▒░▒░▒░ ░ ▒░   ░  ░░▒▓███▀▒░▒▓▒ ▒ ▒ ░▓  ░ ▒░▓  ░ ▒▒▓  ▒ 
+  ░▒ ░ ▒░ ░ ░  ░ ░ ▒  ▒ ░▒ ░      ▒ ░░ ░ ▒  ░░ ░ ▒  ░     ░  ▒   ░░▒░ ░ ░ ░ ░▒  ░ ░    ░      ░ ▒ ▒░ ░  ░      ░▒░▒   ░ ░░▒░ ░ ░  ▒ ░░ ░ ▒  ░ ░ ▒  ▒ 
+  ░░   ░    ░    ░ ░  ░ ░░        ▒ ░  ░ ░     ░ ░      ░         ░░░ ░ ░ ░  ░  ░    ░      ░ ░ ░ ▒  ░      ░    ░    ░  ░░░ ░ ░  ▒ ░  ░ ░    ░ ░  ░ 
+   ░        ░  ░   ░              ░      ░  ░    ░  ░   ░ ░         ░           ░               ░ ░         ░    ░         ░      ░      ░  ░   ░    
+                 ░                                      ░                                                             ░                       ░      
+      
+
+
+ + + + + Public +
+ + 选择代理 +
+
+
+ +
+
+
+ + + diff --git a/drivers.md b/drivers.md new file mode 100644 index 0000000..844ca6d --- /dev/null +++ b/drivers.md @@ -0,0 +1,288 @@ + +> 摘自 https://xpenology.com/forum/topic/12859-driver-extension-jun-103a2dsm62x-for-ds918/ + +# Caption + +(…) 目前尚未编译. +[…] 已由用户确认其不支持, 或者根本不加载, 驱动程序已编译/测试但已删除. + + +# NETWORK DRIVERS LIST + +## AMD +**pcnet32**: AMD PCnet32 PCI + + +## Agere Systems +**et131x**: Agere Systems ET-131x PCI-E Gigabit Ethernet + + +## Asix +**asix**: ASIX AX88xxx Based USB 2.0 Ethernet Adapters +**ax88179_178a**: ASIX USB 2.0/3.0 Gigabit Ethernet Controller +**mcs7830**: ASIX/MosChip 7830 Based USB 2.0 Ethernet Adapters, NEXT-220UL + + +## Atheros +**atl1**: Atheros/Attansic L1 Gigabit Ethernet +**atl1c**: Atheros L1C Gigabit Ethernet, AR8132, AR8131, AR8151, AR8152 +**atl1e**: Atheros L1E Gigabit Ethernet, AR8121, AR8113, AR8114 +**atl2**: Atheros L2 Fast Ethernet + + +## Aquantia +**atlantic**: Aquantia 1/2.5/5/10 Gigabit PCI Express Family AQC-100 / AQC-107 / AQC-108 (external source: Aquantia-AQtion-2.0.10.0) + + +## Broadcom +~~[**b44**: Broadcom 440x/47xx]~~ +**bnx2**: Broadcom NetXtremeII BCM5706/BCM5708/5709/5716 (firmware needed) +**bnx2x**: Broadcom NetXtremeII 10Gb BCM57710/BCM57711/BCM57711E/BCM57712 (firmware needed) +**cnic**: Broadcom NetXtreme II CNIC Driver +**tg3**: Broadcom Tigon3 BCM5705/BCM5703/BCM5702/BCM5701/BCM5700/BCM5721/BCM5751/BCM5788/BCM5704/BCM5752/BCM5789/BCM5723/BCM5761/BCM5787/BCM5755/BCM5722/BCM5754/BCM57781/BCM57785/BCM5718BCM57765/BCM57761/BCM5719/BCM5725/BCM5762/BCM5720/BCM57790/BCM57795/BCM57766/BCM57780 + + +## Brocade +**bna**: Brocade 1010/1020 10Gb Ethernet (firmware needed) + + +## Calxeda +~~(**xgmac**: 1G/10G XGMAC Ethernet Driver)~~ + + +## Conexant +**cx82310_eth**: Conexant CX82310 USB ethernet + + +## Chelsio +**cxgb**: Chelsio 10Gb Ethernet T210 +**cxgb3**: Chelsio Communications T3 10Gb (firmware needed), N310E/B320E/S302E +**cxgb4**: Chelsio Communications T4 Ethernet (firmware needed), T420/T440/T422/T404/B420/B404 + + +## Cisco +**enic**: Cisco VIC Ethernet NIC + + +## D-Link +**dl2k**: D-Link DL2000-based Gigabit Ethernet Adapter + + + +## Emulex +**be2net**: Emulex OneConnect Skyhawk/Emulex OneConnect Skyhawk-VF/Emulex OneConnect Lancer/Emulex BladeEngine2 10Gb Gen2 PCIe/Emulex BladeEngine3 10Gb/Gen2 PCIe/Emulex OneConnect OCe10100/OCe10102 Series 10 GbE/Emulex OneConnect 10Gb NIC (be3) + + + +## Exar / Neterion +**s2io**: Neterion Exar Xframe 10Gb Ethernet Driver +**vxge**: Neterion Exar X3100 Series 10GbE PCIe Server Driver + + + +## HP +**hp100**: HP 10/100VG PCLAN (ISA, EISA, PCI) + + + +## Intel +**e100**: Intel PRO/100+ (firmware needed) +**e1000**: Intel PCI/PCI-X Gigabit Network Adapters Intel PRO/1000 CT/F/GT/MF/MT/T/XF/XT 82573L/82572EI/82571EB/82573E/82573V/82567/82574L/82566MM/82566MC +**e1000e**: Intel PCIe PRO/1000 82563/82566/82567/82571/82572/82573/82574/82577/82578/82583/Gigabit CT Desktop Adapter/PRO/1000 PT/PF/I217-LM/V/I218-V/LM/I219 LM/V (tested, v3.4.0.2 from external source) +**i40e**: Intel 40 Gigabit X710-AM2/XL710-AM1/XL710-AM2/X710-DA2/X710-DA4/XL710-QDA1/XL710-QDA2 +**igb**: Intel Gigabit Ethernet 82575/82576/82580/I350/I210/I211 +**ixgbe**: Intel 10 Gigabit AF DA/AT/AT2/CX4/XF LR/XR/82599EB/82598EB/82599ES/82599EN, X540-T1/X540-T2/540-AT2/X520-SR1/X520-SR2/X520-DA2/X520-LR1/X520-DA1/X520-DA4/X520-QDA1/X520-T2 X550-BT2/AT/AT2 X550-T1/T2, X552, X553, X557 (v5.0.4 from external source) +**igc**: Intel Intel(R) 2.5 Gigabit Ethernet I225-LM/I225-IT/I225-V/I226-LM/I226-IT/I226-V/ + +## JMicron +**jme**: JMicron PCIe Gigabit + + + +## Nvidia +**forcedeth**: Nvidia nForce Ethernet + + + +## Marvell Yukon/SysKonnect +**mvmdio**: Marvell MDIO interface +**sky2**: Marvell Yukon 2 Gigabit Ethernet 88E8021/88E8022/88E8061/88E8062/88E8021/88E8022/88E8061/88E8062/88E8035/88E8036/88E8038/88E8039/88E8040/88E8040T/88EC033/88E8042/88E8048/88E8052/88E8050/88E8053/88E8055/88E8056/88E8070/88EC036/88EC032/88EC034/88EC042/88E8058/88E8071/88E8072/88E8055/88E8075/88E8057/88E8059/88E8079, SysKonnect SK-9Sxx/SK-9Exx/SK-9S21/SK-9E21M +**skge**: Marvell Yukon 88E8001/8003/8010, SK-9xx/SK-98xx V2.0 + + +## Mellanox +**mlx_compat, mlx4_core, mlx4_en, mlx5_core**: Mellanox T25400/MT27500/MT27520/MT25408/MT25418/MT25448/MT25408/MT26418/MT26428/MT26438/MT26448/MT25408/MT26468/MT26478/MT27600/MT27700/MT27710/ ~~(MT27800/MT28800/MT28908/MT416842)~~ +ConnectX MT254xx/ConnectX-2 MT264xx/ConnectX-3 MT275xx/ConnectX-IB MT276xx/ConnectX-4 MT277xx/ ~~(ConnectX-5 MT278xx, MT288xx/ConnectX-6 MT289xx)~~ + + + +## Pegasus +**pegasus**: Pegasus/Pegasus II USB ethernet driver + + +## Prolific +**plusb**: Prolific PL-2301/2302/25A1 based + + +## QLogic +**netxen_nic**: QLogic/NetXen NIC +**qla3xxx**: QLogic QLA3XXX Network driver +**qlcnic**: QLOGIC QLCNIC 1/10Gb Converged Ethernet +**qlge**: QLogic QLGE 10Gb Ethernet + + +## Qualcomm +**alx**: Qualcomm Atheros AR816x/AR817x + + +## Realtek +~~(**r8101**: 10/100 Realtek PCIe FE Family RTL8100E/RTL8101E/RTL8102E-GR/RTL8103E(L)/RTL8102E(L)/RTL8101E/RTL8103T/RTL8401/RTL8401P/RTL8105E/RTL8402/RTL8106E/RTL8106EUS/RTL8107E)~~ +**r8152**: RTL8152/RTL8153 Based USB 2.0/3.0 Ethernet Adapter (source: 0008-r8152.53-2.09.0.tar.bz2) +**r8168**: Realtek Gigabit Ethernet PCIe +RTL8111B/RTL8168B/RTL8111/RTL8168/RTL8111C/RTL8111CP/RTL8111D(L)/RTL8168C/RTL8111DP/RTL8111E/RTL8168E/RTL8111F/RTL8411/RTL8111G/RTL8111GUS/RTL8411B(N)/RTL8118AS/RTL8111H(S)/RTL8118/RTL8119i (source: 0010-r8168-8.045.08.tar.bz2) +**r8169**: Realtek Gigabit Ethernet PCI RTL8110SC(L) (RTL8110S/RTL8110SB(L)/RTL8169SB(L)/RTL8169S(L)/RTL8169) (source: 0008-r8169-6.025.03.tar.bz2) +**rtl8150**: USB RTL8150 based USB Ethernet Adapter + + +## Silan +**sc92031**: Silan SC92031 PCI Fast Ethernet Adapter driver + + +## SIS +**sis900**: SiS900/7016 +**sis190**: SiS190/SiS191 + + +## Solarflare +**sfc**: Solarflare NIC 10Gb/s + + +## Sundance Technology +~~(**ipg**: Sundance Technology IPG Triple-Speed Ethernet IC PLUS IP1000 NIC, Sundance Technology ST2021 based NIC, Tamarack Microelectronics TC9020/9021 based, D-Link NIC IP1000A)~~ + + +## Tehuti +**tn40xx**: Tehuti 10GbE NIC driver MV88X3120/QT2025/TLK10232/AQ2104/AQR105, ASUS XG-C100F, Buffalo LGY-PCIE-MG, D-Link DXE-810T/S, Edimax 10G, IEI Mustang-200, TN9030, TN9210, TN9310, TN9510, TN9610, TN9710P, TN9710Q (v0.3.6.16.1 from external source, might not work, at least did not on my test system, irq problems, feedback needed) + + + +## VIA +**via-rhine**: VIA Rhine +**via-velocity**: VIA Velocity + + + +## VMware +**vmxnet3**: VMware vmxnet3 virtual NIC + + + +# STORAGE DRIVERS LIST + +## 3ware +**3w-xxxx**: 3ware 5/6/7/8xxx ATA-RAID support +**3w-9xxx**: 3ware 9xxx SATA-RAID support +**3w-sas**: 3ware 97xx SAS/SATA-RAID support + + +## Adaptec +**aacraid**: HBA 1000 series, Adaptec 2200S, Adaptec 2120S, Adaptec 2200S, Adaptec 3230S, Adaptec 3240S, Adaptec 2020ZCR, Adaptec 2025ZCR, Adaptec 2230S, Adaptec 2230SLP, Adaptec 2130S, Adaptec 2020SA, Adaptec 2025SA, Adaptec 2410SA, Adaptec 2610SA, Adaptec 21610SA, Adaptec 2240S, Adaptec 2810SA, Adaptec 4005, Adaptec 4000, Adaptec 4800SAS, Adaptec 4805SAS, Adaptec 2820SA, Adaptec 2620SA, Adaptec 2420SA, Adaptec 1800, Adaptec 5445, SMC AOC-USAS-S4i, Adaptec 5805, SMC AOC-USAS-S8i, Adaptec 5085, Adaptec 3405, Adaptec 3805, Adaptec 3085, Adaptec 31205, Adaptec 31605, Adaptec 51205, Adaptec 51605, SMC AOC-USAS-S4iR, SMC AOC-USAS-S8iR, Adaptec 51245, Adaptec 51645, Adaptec 52445, Adaptec 5405, SMC AOC-USAS-S8i-LP, SMC AOC-USAS-S8iR-LP, Adaptec ASR-2045, Adaptec ASR-2405, Adaptec ASR-2445, Adaptec ASR-2805, Adaptec 5405Z, Adaptec 5445Z, Adaptec 5805Z, Adaptec 5400S, Adaptec 5400S, Adaptec Themisto, Adaptec Callisto, Dell PERC 2/QC, Dell PERC 2/QC, Dell PERC 2/Si, Dell PERC 3/Si, Dell PERC 3/Di, Dell PERC 3/SiF, Dell PERC 3/DiF, Dell PERC 3/DiV, Dell PERC 3/DiL, Dell PERC 3/DiJ, Dell PERC 3/DiD, Dell PERC 3/DiB, Dell PERC 320/DC, Dell CERC 2, HP NetRAID-4M, Legend S220, Legend S230, IBM ServeRAID 7t, IBM ServeRAID 8i, IBM ServeRAID 8k/8k-l4, IBM ServeRAID 8k/8k-l8, IBM ServeRAID 8s, ICP ICP9024RO, ICP ICP9014RO, ICP ICP9047MA, ICP ICP9087MA, ICP ICP9085LI, ICP ICP5085BR, ICP ICP9067MA, ICP ICP5445SL, ICP ICP5085SL, ICP ICP5805SL, ICP ICP5045BL, ICP ICP5085BL, ICP ICP5805BL, ICP ICP5125BR, ICP ICP5165BR, ICP ICP5125SL, ICP ICP5165SL, SUN STK RAID REM, SUN STK RAID INT, SUN STK RAID EXT, SUN STK RAID EM, Adaptec RAID 6405, Adaptec RAID 6445, Adaptec RAID 6805 (external v1.2.1.56008) +**aic94xx**: Adaptec AIC94xx SAS/SATA support + + + +## AMD +~~[**pata_amd**: AMD 751, AMD 756, AMD 766, AMD 768, AMD 8111, AMD CS5536, nVidia nForce, nVidia nForce 2 and 3, nVidia CK804 and MCP04, nVidia MCP51, nVidia MCP55, nVidia MCP61, nVidia MCP65, nVidia MCP67, nVidia MCP73, nVidia MCP77] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ + + + +## ARECA +**arcmsr**: ARECA (ARC11xx/12xx/13xx/16xx) SATA/SAS RAID Host Adapter + + +## BusLogic +**buslogic**: BusLogic SCSI + + + +## HighPoint +**hptiop**: HighPoint RocketRAID 3xxx/4xxx Controller support + + + +## HP +**hpsa**: Smart Array P212 P410 P410i P411 P812 P712m P711m ; (Gen6/7 Controllers) Smart Array P222 P420 P420i P421 P822 P220i P721 ; (Gen8 Controllers) Smart Array P430 P430i P431 P830 P830i P831 P731m P230i P530 P531 ; (Gen8.5 Controllers) Smart Array P440 P441 P840 P440ar P244br H240 H241 H240ar H244br ; (Gen9 Controllers) HP StorageWorks 1210m P1224 P1228 P1228m P1224e P1228e P1228em +**cciss**: old Smart Array driver up to P420, Gen7 + + + +## IBM +**ips**: IBM ServeRAID support + + + +## Intel +**ata_piix**: Intel IDE/PATA driver PIIX3/PIIX4/ICH0/ICH/ICH2/ICH3/C-ICH/ICH4/ICH5/6300ESB/ICH6/ICH7/ICH8M, SATA in IDE mode: ICH5/6300ESB/ICH6/CE3100/ICH7/NM10/631xESB/632xESB/ICH8/ICH9/ICH10/IIC +**gdth**: Intel/ICO RAID controller support +**isci**: Intel C600 Series Chipset SAS Controller +~~[**pata_oldpiix**: Intel PATA old PIIX] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ +~~[**pata_sch**: Intel SCH PATA] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ +~~[**pata_mpiix**: Intel PATA MPIIX] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ + + + +## JMicron +~~[**pata_jmicron**: JMB361, JMB363, JMB365, JMB366, JMB368] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ + + +## LSI +**megaraid**: LSI MegaRAID legacy +**megaraid_mbox**: LSI MegaRAID Mailbox +**megaraid_mm**: LSI MegaRAID Management Module +**megaraid_sas**: LSI MegaRAID SAS 9361-8i/9361-4i9341-8i/9341-4i/9380-8e/9380-4i4e/9270-8i9271-4i/9271-8i/9271-8iCC/9286-8e/9286CV-8e/9286CV-8eCC/9265-8i/9285-8e/9240-4i/9240-8i/9260-4i/9260CV-4i/9260-8i/9260CV-8i/9260DE-8i/9261-8i/9280-4i4e/9280-8e/9280DE-8e/9280-24i4e/9280-16i4e/9260-16i/9266-4i/9266-8i/9285CV-8e +**mptsas**: LSI MPT SAS1064/SAS1068/SAS1064ET/SAS1068E/SAS8208ELP/8208ELP/SAS1078 +**mpt2sas**: LSI MPT SAS 6Gb/s Host Adapters SAS2004/SAS2008/SAS2108/SAS2116/SAS2208/SAS2308/SSS6200 +**mpt3sas**: LSI MPT SAS 12Gb/s Host Adapters SAS3004/SAS3008/SAS3108 + + + +## Marvell +**mvsas**: Marvell PCIe 88SE64XX (3Gb/s) and 88SE94XX 6Gbs) SAS/SATA support, HighPoint RocketRAID 2710/2720/2721/2722/2740/2744/2760 +**mvumi**: Marvell UMI driver +~~[**pata_marevell**: 88SE6101, 88SE6121, 88SE6123, 88SE6145] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ + + + +## Nvidia +~~[**sata_nv**: nForce MCP51, MCP55, MCP61, nForce2, nForce3, nForce4 (CK804, MCP04)] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ + + + +## Promise +~~[**sata_promise**: PDC20318 (SATA150 TX4), PDC20319 (FastTrak S150 TX4), PDC20371 (FastTrak S150 TX2plus), PDC20378 (FastTrak 378/SATA 378), PDC20375 (SATA150 TX2plus), PDC20376 (FastTrak 376), PDC40719 [FastTrak TX4300/TX4310], PDC40519 (FastTrak TX4200), PDC20771 [FastTrak TX2300], PDC20571 (FastTrak TX2200), PDC20579 SATAII 150 IDE Controller, PDC40718 (SATA 300 TX4), PDC20518/PDC40518 (SATAII 150 TX4), PDC40775 (SATA 300 TX2plus), PDC20575 (SATAII150 TX2plus), PDC20621 [SATA150 SX4] 4 Channel IDE RAID, PDC20619 (FastTrak TX4000)] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ +~~[**sata_sx4**: PDC20621] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ +**sx8**: Promise SATA SX8 support + + + +## Silicon Image +~~[**pata_sil680**: CMD/Silicon Image SiI680 PCI PATA controller] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ +~~[**sata_sil**:SiI311x, SiI3512 / SB300, SB300C, SB4x0] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ + + + +## Serverworks +~~[**pata_serverworks**: OSB4/CSB5/CSB6/HT1000 PATA] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ + + + +## VIA +**pata_via**: CX700, VT82c576, VT82c586, VT82c586A, VT82c586B, VT82c596A, VT82c596B, VT82c686, VT82c686A, VT82c686B, VT6330, VT6410, VT6415, VT6420, VT8231, VT8233, VT8233A, VT8233C, VT8235, VT8237, VT8237A, VT8237R, VT8237R Plus, VT8237S, VT8251, VT8261, VX700, VX855/875, SATA in IDE mode: CX700, VX700, VX800, VX900] -> does not load: Unknown symbol syno_libata_index_get (err 0 +~~[**sata_via**: VX900, VT642x, VT8237 family, VT8251, VT8261] -> does not load: Unknown symbol syno_libata_index_get (err 0)~~ + + + +## VMware +**vmw_pvscsi**: VMware Paravirtual SCSI Controller + + diff --git a/exts.json b/exts.json new file mode 100644 index 0000000..8f8c9cf --- /dev/null +++ b/exts.json @@ -0,0 +1,9011 @@ +{ + "pocopico": { + "ds3615xs_25556": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx*": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr*": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb*": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3*": "Adds Chelsio T3 Network Driver Support", + "cxgb4*": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf*": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev#": "Eudev binaries will assist with auto module loading", + "hpsa": "Adds Support", + "hv_netvsc*": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf*": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core*": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas*": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv*": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx*": "Adds Support", + "v9fs*": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds3615xs_41222": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev#": "Eudev binaries will assist with auto module loading", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core*": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi#": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3615xs_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core*": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3615xs_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3615xs_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbe.vanilla#": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core*": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3615xs_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core*": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3615xs_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core*": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3617xs_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a*": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601*": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3617xs_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a*": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601*": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3617xs_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a*": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601*": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3617xs_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a*": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601*": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3617xs_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a*": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601*": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3622xsp_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3622xsp_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3622xsp_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3622xsp_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3622xsp_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "rs4021xsp_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125*": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "rs4021xsp_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125*": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "rs4021xsp_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125*": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "rs4021xsp_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125*": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "rs4021xsp_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125*": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1621p_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1621p_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1621p_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1621p_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1621p_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "dva3221_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv*": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "dva3221_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "dva3221_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv*": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "dva3221_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv*": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "dva3221_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv*": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds918p_25556": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev#": "Eudev binaries will assist with auto module loading", + "hpsa": "Adds Support", + "hv_netvsc*": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf*": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv*": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds918p_41890": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev#": "Eudev binaries will assist with auto module loading", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tn40xx": "Adds Support", + "v9fs#": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds918p_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs*": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds918p_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs*": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds918p_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs*": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds918p_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs*": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds920p_42621": { + "3w-sas*": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a#": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds920p_42951": { + "3w-sas*": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a#": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds920p_42962": { + "3w-sas*": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a#": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds920p_42661": { + "3w-sas*": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a#": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds2422p_42951": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125#": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds2422p_42962": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125#": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds2422p_42661": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125#": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds2422p_42218": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125#": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds2422p_42621": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125#": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "dva1622_42661": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic#": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a#": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth*": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125#": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "dva1622_42621": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic#": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a#": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth*": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125#": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "dva1622_42951": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic#": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a#": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth*": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125#": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "dva1622_42962": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic#": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a#": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth*": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125#": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "dva1622_42218": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic#": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a#": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth*": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125#": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds920p_42218": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix#": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a#": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601#": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity#": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds3615xs_25556u2": { + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information" + }, + "ds3617xs_25556": { + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information" + }, + "ds3617xs_25556u2": { + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information" + }, + "ds3617xs_42218u2": { + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information" + }, + "ds920p_42550": { + "dtbpatch": "Update device tree binary automatically on boot" + }, + "ds923p_42962": { + "dtbpatch": "Update device tree binary automatically on boot", + "eudev#": "Eudev binaries will assist with auto module loading", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "rtc-cmos#": "Adds Driver for PC-style 'CMOS' RTCs Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support" + }, + "sa6400_42962": { + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev#": "Eudev binaries will assist with auto module loading", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support" + }, + "ds918p_42951": { + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support" + }, + "endofmodel": { + "forcedeth*": "Adds Reverse Engineered nForce ethernet driver Support", + "igc*": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "r8125*": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "tg3*": "Adds Broadcom Tigon3 ethernet driver Support" + }, + "fs3600_42218": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "fs3600_42621": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "fs3600_42661": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "fs3600_42951": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "fs3600_42962": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "ds1821p_42218": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "ds1821p_42621": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "ds1821p_42661": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "ds1821p_42951": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "ds1821p_42962": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "fs2500_42218": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "fs2500_42621": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "fs2500_42661": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "fs2500_42951": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "fs2500_42962": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "ds1520p_42218": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "ds1520p_42621": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "ds1520p_42661": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "ds1520p_42951": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "ds1520p_42962": { + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support" + }, + "ds923p_42218": { + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support" + } + }, + "wjz304": { + "ds3615xs_25556": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx*": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr*": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb*": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3*": "Adds Chelsio T3 Network Driver Support", + "cxgb4*": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf*": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev": "Eudev binaries will assist with auto module loading", + "hpsa": "Adds Support", + "hv_netvsc*": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf*": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core*": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas*": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv*": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx*": "Adds Support", + "v9fs*": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds3615xs_41222": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev": "Eudev binaries will assist with auto module loading", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core*": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3615xs_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core*": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3615xs_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "all-modules": "Adds All modules Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3615xs_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbe.vanilla": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core*": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3615xs_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core*": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3615xs_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core*": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3617xs_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a*": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601*": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3617xs_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "all-modules": "Adds All modules Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a*": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601*": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3617xs_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a*": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601*": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3617xs_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a*": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601*": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3617xs_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a*": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601*": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3622xsp_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3622xsp_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "all-modules": "Adds All modules Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3622xsp_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3622xsp_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds3622xsp_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "rs4021xsp_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "rs4021xsp_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "rs4021xsp_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "rs4021xsp_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "all-modules": "Adds All modules Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "rs4021xsp_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "fs3600_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "fs3600_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "fs3600_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "fs3600_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "fs3600_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "fs2500_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "fs2500_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "all-modules": "Adds All modules Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "fs2500_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "fs2500_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "fs2500_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1621p_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1621p_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "all-modules": "Adds All modules Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1621p_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1621p_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1621p_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1821p_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1821p_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1821p_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1821p_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds1821p_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "dva3221_42951": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv*": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "dva3221_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "all-modules": "Adds All modules Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "dva3221_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv*": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "dva3221_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv*": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "dva3221_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv*": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds918p_25556": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev": "Eudev binaries will assist with auto module loading", + "hpsa": "Adds Support", + "hv_netvsc*": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf*": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775*": "Adds Driver for NCT6775F and compatible chips Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv*": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds918p_41890": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev": "Eudev binaries will assist with auto module loading", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds918p_42962": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "all-modules": "Adds All modules Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs*": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds918p_42218": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "early-telnet": "Simple extension which starts telnet early at boot", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "raspbi-pill": "Simple extension which starts telnet early at boot", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs*": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds918p_42621": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs*": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds918p_42661": { + "3w-sas": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs*": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds920p_42621": { + "3w-sas*": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds920p_42951": { + "3w-sas*": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds920p_42962": { + "3w-sas*": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "all-modules": "Adds All modules Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds920p_42661": { + "3w-sas*": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds1520p_42621": { + "3w-sas*": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds1520p_42951": { + "3w-sas*": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds1520p_42962": { + "3w-sas*": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "all-modules": "Adds All modules Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds1520p_42661": { + "3w-sas*": "Adds Support", + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "arcmsr": "Adds Areca ARC11xx/12xx/16xx/188x SAS/SATA RAID Controller Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "hv_netvsc": "Adds Microsoft Hyper-V network driver Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "mvsas": "Adds Marvell 88SE6440 SAS/SATA controller driver Support", + "nct6775": "Adds Driver for NCT6775F and compatible chips Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sata_nv": "Adds low-level driver for NVIDIA nForce SATA controller Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds2422p_42951": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds2422p_42962": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "all-modules": "Adds All modules Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds2422p_42661": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds2422p_42218": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "ds2422p_42621": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix*": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core*": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch": "Adds Support" + }, + "dva1622_42661": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth*": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "dva1622_42621": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth*": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "dva1622_42951": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth*": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "dva1622_42962": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "all-modules": "Adds All modules Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth*": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "dva1622_42218": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth*": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds920p_42218": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds1520p_42218": { + "8139cp": "Adds RealTek RTL-8139C+ series 10/100 PCI Ethernet driver Support", + "8139too": "Adds RealTek RTL-8139 Fast Ethernet driver Support", + "aacraid*": "Adds Support", + "aic94xx": "Adds Adaptec aic94xx SAS/SATA driver Support", + "alx": "Adds Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver Support", + "asix": "Adds ASIX AX8817X based USB 2.0 Ethernet Devices Support", + "atl1": "Adds Atheros L1 Gigabit Ethernet Driver Support", + "atl1c": "Adds Qualcomm Atheros 100/1000M Ethernet Network Driver Support", + "atl1e": "Adds Atheros 1000M Ethernet Network Driver Support", + "atl2": "Adds Atheros Fast Ethernet Network Driver Support", + "atlantic": "Adds Marvell (Aquantia) Corporation(R) Network Driver Support", + "ax88179_178a": "Adds ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices Support", + "be2net": "Adds Emulex OneConnect NIC Driver 10.6.0.3 Support", + "bna": "Adds QLogic BR-series 10G PCIe Ethernet driver Support", + "bnx2": "Adds QLogic BCM5706/5708/5709/5716 Driver Support", + "bnx2x": "Adds QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver Support", + "cxgb": "Adds Chelsio 10Gb Ethernet Driver Support", + "cxgb3": "Adds Chelsio T3 Network Driver Support", + "cxgb4": "Adds Chelsio T4/T5/T6 Network Driver Support", + "cxgb4vf": "Adds Chelsio T4/T5/T6 Virtual Function (VF) Network Driver Support", + "dm9601": "Adds Davicom DM96xx USB 10/100 ethernet devices Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "hpsa*": "Adds Support", + "i40e": "Adds Intel(R) Ethernet Connection XL710 Network Driver Support", + "iavf": "Adds Intel(R) Ethernet Adaptive Virtual Function Driver Support", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igbvf": "Adds Intel(R) Gigabit Virtual Function Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "ixgbe": "Adds Intel(R) 10GbE PCI Express Linux Network Driver Support", + "ixgbevf": "Adds Intel(R) 10 Gigabit Virtual Function Network Driver Support", + "megaraid_sas": "Adds Avago MegaRAID SAS Driver Support", + "mlx4_core": "Adds MLX4 Support", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "mpt2sas*": "Adds Support", + "mpt3sas": "Adds LSI MPT Fusion SAS 3.0 Device Driver Support", + "mptsas": "Adds Fusion MPT SAS Host driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "qla2xxx*": "Adds Support", + "qlcnic": "Adds QLogic 1/10 GbE Converged/Intelligent Ethernet Driver Support", + "r8101": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150": "Adds rtl8150 based usb-ethernet driver Support", + "sfc*": "Adds Support", + "skge": "Adds SysKonnect Gigabit Ethernet driver Support", + "sky2": "Adds Marvell Yukon 2 Gigabit Ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "tn40xx": "Adds Support", + "v9fs": "Adds Support", + "via-rhine": "Adds VIA Rhine PCI Fast Ethernet driver Support", + "via-velocity": "Adds VIA Networking Velocity Family Gigabit Ethernet Adapter Driver Support", + "vmw_pvscsi": "Adds VMware PVSCSI driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support", + "vxge": "Adds Neterion's X3100 Series 10GbE PCIe I/OVirtualized Server Adapter Support", + "wch*": "Adds Support" + }, + "ds1019p_42962": { + "all-modules": "Adds All modules Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "ds1621xsp_42962": { + "all-modules": "Adds All modules Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI" + }, + "rs3413xsp_42962": { + "all-modules": "Adds All modules Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI" + }, + "rs3618xs_42962": { + "all-modules": "Adds All modules Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI" + }, + "dva3219_42962": { + "all-modules": "Adds All modules Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "ds923p_42962": { + "all-modules": "Adds All modules Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI", + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "dtbpatch": "Update device tree binary automatically on boot", + "eudev": "Eudev binaries will assist with auto module loading", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "mptspi": "Adds Fusion MPT SPI Host driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support" + }, + "ds723p_42962": { + "all-modules": "Adds All modules Support", + "cpuinfo": "Adds correct CPU Info, from FOXBI" + }, + "sa6400_42962": { + "all-modules": "Adds All modules Support", + "dtbpatch": "Update device tree binary automatically on boot", + "e1000": "Adds Intel(R) PRO/1000 Network Driver Support", + "e1000e": "Adds Intel(R) PRO/1000 Network Driver Support", + "eudev": "Eudev binaries will assist with auto module loading", + "igb": "Adds Intel(R) Gigabit Ethernet Network Driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "r8101#": "Adds RealTek RTL-8101 Fast Ethernet driver Support", + "r8125#": "Adds Realtek RTL8125 2.5Gigabit Ethernet driver Support", + "r8152": "Adds Realtek RTL8152/RTL8153 Based USB Ethernet Adapters Support", + "r8168": "Adds RealTek RTL-8168 Gigabit Ethernet driver Support", + "r8169": "Adds RealTek RTL-8169 Gigabit Ethernet driver Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtl8150#": "Adds rtl8150 based usb-ethernet driver Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support", + "vmxnet3": "Adds VMware vmxnet3 virtual NIC driver Support" + }, + "zendofmodel": { + "all-modules*": "Adds All modules Support", + "cpuinfo*": "Adds correct CPU Info, from FOXBI" + }, + "ds3615xs_25556u2": { + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information" + }, + "ds3617xs_25556": { + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information" + }, + "ds3617xs_25556u2": { + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information" + }, + "ds3617xs_42218u2": { + "dtb-patch": "An extension that will assist in collecting DSM diagnostic information", + "tcrp-diag": "An extension that will assist in collecting DSM diagnostic information" + }, + "ds920p_42550": { + "dtbpatch": "Update device tree binary automatically on boot" + }, + "ds1520p_42550": { + "dtbpatch": "Update device tree binary automatically on boot" + }, + "ds918p_42951": { + "forcedeth": "Adds Reverse Engineered nForce ethernet driver Support", + "igc": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "maxdisks": "Adjust maxdisks and internalportcfg automatically", + "mlx5_core": "Adds Mellanox Connect-IB, ConnectX-4 core driver Support", + "netxen_nic": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtc-cmos": "Adds Driver for PC-style 'CMOS' RTCs Support", + "tg3": "Adds Broadcom Tigon3 ethernet driver Support" + }, + "endofmodel": { + "forcedeth*": "Adds Reverse Engineered nForce ethernet driver Support", + "igc*": "Adds Intel(R) 2.5G Ethernet Linux Driver Support", + "maxdisks*": "Adjust maxdisks and internalportcfg automatically", + "netxen_nic*": "Adds QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver Support", + "powersched*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "rtc-cmos*": "Adds Driver for PC-style 'CMOS' RTCs Support", + "tg3*": "Adds Broadcom Tigon3 ethernet driver Support" + }, + "ds918p_42550": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "ds1019p_42218": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "ds1019p_42550": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "ds1019p_42621": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "ds1019p_42661": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "ds1019p_42951": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "ds3615xs_42550": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "ds3617xs_42550": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "ds3622xsp_42550": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "dva3219_42218": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "dva3219_42550": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "dva3219_42621": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "dva3219_42661": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "dva3219_42951": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "dva3221_42550": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "rs4021xsp_42550": { + "maxdisks": "Adjust maxdisks and internalportcfg automatically" + }, + "ds923p_42218": { + "powersched": "Adds Driver for PC-style 'CMOS' RTCs Support" + } + } +} \ No newline at end of file diff --git a/getdtb.sh b/getdtb.sh new file mode 100644 index 0000000..e6be937 --- /dev/null +++ b/getdtb.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +cd ~ +rm -rf dtbpatch dtc output.dtb output.dts +# wget --no-check-certificate https://raw.githubusercontent.com/pocopico/rp-ext/main/dtbpatch/releases/dtbpatch +wget --no-check-certificate https://fastly.jsdelivr.net/gh/pocopico/rp-ext@main/dtbpatch/releases/dtbpatch +chmod a+x dtbpatch +./dtbpatch /etc.defaults/model.dtb output.dtb + +# wget --no-check-certificate https://raw.githubusercontent.com/pocopico/rp-ext/main/dtbpatch/releases/dtc +wget --no-check-certificate https://fastly.jsdelivr.net/gh/pocopico/rp-ext@main/dtbpatch/releases/dtc +chmod a+x dtc +./dtc -I dtb -O dts output.dtb > output.dts + +echo Please enter the following link on your PC to download the dtb file: +curl -fsSL --insecure -w '\n' --upload-file output.dtb https://transfer.sh +echo + +echo Please enter the following link on your PC to download the dts file: +curl -fsSL --insecure -w '\n' --upload-file output.dts https://transfer.sh +echo diff --git a/getmap.sh b/getmap.sh new file mode 100644 index 0000000..c6e7fa2 --- /dev/null +++ b/getmap.sh @@ -0,0 +1,35 @@ +#!/usr/bin/env ash + +SataPortMap="" +DiskIdxMap="" + + +let maxIdx=`cat /sys/block/sd*/device/syno_disk_serial | cut -c1 | sort -u | tail -n 1` +for i in $(seq 0 ${maxIdx}) +do + let idx=-1 + let idx=`cat /sys/block/sd*/device/syno_disk_serial | grep "^${i}" | cut -c2 | sort -u | tail -n 1` 2>null + [ ${idx} -gt 8 ] && let idx=8 + SataPortMap=${SataPortMap}$((${idx}+1)) +done + +let num=0 +for i in $(seq 1 ${#SataPortMap}) +do + let n=${SataPortMap:${i}-1:1} + if [ ${n} -eq 0 ]; then + DiskIdxMap=${DiskIdxMap}`printf "%02x" 255` + else + DiskIdxMap=${DiskIdxMap}`printf "%02x" ${num}` + fi + let num+=n +done + +echo DiskIdxMap: ${DiskIdxMap} +if [ "$(echo ${SataPortMap} | grep '0')" != "" ]; then + echo 'SataPortMap: null # Do not fill in this parameter!' +else + echo SataPortMap: ${SataPortMap} +fi + + diff --git a/guide/Issues.md b/guide/Issues.md new file mode 100644 index 0000000..af8427b --- /dev/null +++ b/guide/Issues.md @@ -0,0 +1,36 @@ +## Issues 编译教程 + +### 登录 Github +1. 点击右上角的 "Sign in". + ![Image text](img/2022_112422_github.com.jpeg) +2. 输入账号密码。 + ![Image text](img/2022_112512_github.com.jpeg) + +### 创建 Issues +1. 点击上方的 "Issues" + ![Image text](img/2022_112541_github.com.jpeg) +2. 然后点击 "New Issues" + ![Image text](img/2022_112605_github.com.jpeg) +3. 填入相关内容后点击 "Submit new issue" + ![Image text](img/2022_112659_github.com.jpeg) +4. 出现如下所示即表示 Issue 创建好了, 等待编译信息即可。 + ![Image text](img/2022_112718_github.com.jpeg) +5. 出现如下所示时, 即表示构建完成,点击评论中的链接即跳到编译结果页面。 + ![Image text](img/2022_113023_github.com.jpeg) +### 下载 附件 +1. 点击 Artifacts 下方的附件下载即可。 + ![Image text](img/2022_113050_github.com.jpeg) + + + +## Issues 每日(循环)构建教程 + +### 添加/删除标签 +1. 评论 add schedule 将打上 schedule 标签。 +2. 删除 add schedule 的评论或者增加 del schedule 评论将删除 schedule 标签。 + `(PS: 获取最后一条含有 schedule 关键字的评论,内容为 "add schedule" 时增加标签,否则删除)` + ![Image text](img/20220812001951.png) + + + + diff --git a/guide/img/20220812001951.png b/guide/img/20220812001951.png new file mode 100644 index 0000000..00e2eaa Binary files /dev/null and b/guide/img/20220812001951.png differ diff --git a/guide/img/2022_112422_github.com.jpeg b/guide/img/2022_112422_github.com.jpeg new file mode 100644 index 0000000..1c97482 Binary files /dev/null and b/guide/img/2022_112422_github.com.jpeg differ diff --git a/guide/img/2022_112512_github.com.jpeg b/guide/img/2022_112512_github.com.jpeg new file mode 100644 index 0000000..8ccef56 Binary files /dev/null and b/guide/img/2022_112512_github.com.jpeg differ diff --git a/guide/img/2022_112541_github.com.jpeg b/guide/img/2022_112541_github.com.jpeg new file mode 100644 index 0000000..51452e4 Binary files /dev/null and b/guide/img/2022_112541_github.com.jpeg differ diff --git a/guide/img/2022_112605_github.com.jpeg b/guide/img/2022_112605_github.com.jpeg new file mode 100644 index 0000000..dcd99b6 Binary files /dev/null and b/guide/img/2022_112605_github.com.jpeg differ diff --git a/guide/img/2022_112659_github.com.jpeg b/guide/img/2022_112659_github.com.jpeg new file mode 100644 index 0000000..f30759e Binary files /dev/null and b/guide/img/2022_112659_github.com.jpeg differ diff --git a/guide/img/2022_112718_github.com.jpeg b/guide/img/2022_112718_github.com.jpeg new file mode 100644 index 0000000..d975cdf Binary files /dev/null and b/guide/img/2022_112718_github.com.jpeg differ diff --git a/guide/img/2022_112742_github.com.jpeg b/guide/img/2022_112742_github.com.jpeg new file mode 100644 index 0000000..9284bcc Binary files /dev/null and b/guide/img/2022_112742_github.com.jpeg differ diff --git a/guide/img/2022_113023_github.com.jpeg b/guide/img/2022_113023_github.com.jpeg new file mode 100644 index 0000000..d5859d3 Binary files /dev/null and b/guide/img/2022_113023_github.com.jpeg differ diff --git a/guide/img/2022_113050_github.com.jpeg b/guide/img/2022_113050_github.com.jpeg new file mode 100644 index 0000000..f357813 Binary files /dev/null and b/guide/img/2022_113050_github.com.jpeg differ diff --git a/lkms.json b/lkms.json new file mode 100644 index 0000000..723b5d1 --- /dev/null +++ b/lkms.json @@ -0,0 +1,652 @@ +{ + "pocopico": { + "ds3615xs_25556": { + "redpill": "Adds Support" + }, + "ds3615xs_41222": { + "redpill": "Adds Support" + }, + "ds3615xs_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3615xs_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3615xs_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3615xs_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3615xs_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3617xs_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3617xs_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3617xs_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3617xs_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3617xs_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3622xsp_42951": { + "redpill#": "Adds Support", + "redpilldev#": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3622xsp_42962": { + "redpill#": "Adds Support", + "redpilldev#": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3622xsp_42218": { + "redpill#": "Adds Support", + "redpilldev#": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3622xsp_42621": { + "redpill#": "Adds Support", + "redpilldev#": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3622xsp_42661": { + "redpill#": "Adds Support", + "redpilldev#": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1621p_42951": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1621p_42962": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1621p_42218": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1621p_42621": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1621p_42661": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds2422p_42951": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds2422p_42962": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds2422p_42218": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds2422p_42661": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva3221_42951": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva3221_42962": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva3221_42218": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva3221_42621": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva3221_42661": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva1622_42951": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva1622_42962": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva1622_42661": { + "redpill#": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds918p_25556": { + "redpill": "Adds Support" + }, + "ds918p_41890": { + "redpill": "Adds Support" + }, + "ds918p_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds918p_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds918p_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds918p_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds918p_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds920p_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds920p_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds920p_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds920p_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds920p_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "rs4021xsp_42951": { + "redpill#": "Adds Support", + "redpilldev#": "Adds Support", + "redpillprod": "Adds Support" + }, + "rs4021xsp_42962": { + "redpill#": "Adds Support", + "redpilldev#": "Adds Support", + "redpillprod": "Adds Support" + }, + "rs4021xsp_42218": { + "redpill#": "Adds Support", + "redpilldev#": "Adds Support", + "redpillprod": "Adds Support" + }, + "rs4021xsp_42621": { + "redpill#": "Adds Support", + "redpilldev#": "Adds Support", + "redpillprod": "Adds Support" + }, + "rs4021xsp_42661": { + "redpill#": "Adds Support", + "redpilldev#": "Adds Support", + "redpillprod": "Adds Support" + }, + "sa6400_42962": { + "redpill#": "Adds Support", + "redpilldev#": "Adds Support", + "redpillprod#": "Adds Support" + }, + "ds923p_42962": { + "redpill": "Adds Support", + "redpilldev#": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds2422p_42621": { + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva1622_42218": { + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva1622_42621": { + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "endofmodel": { + "redpilldev*": "Adds Support", + "redpillprod*": "Adds Support" + } + }, + "wjz304": { + "ds3615xs_25556": { + "redpill": "Adds Support" + }, + "ds3615xs_41222": { + "redpill": "Adds Support" + }, + "ds3615xs_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3615xs_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3615xs_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3615xs_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3615xs_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3617xs_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3617xs_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3617xs_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3617xs_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3617xs_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3622xsp_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3622xsp_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3622xsp_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3622xsp_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds3622xsp_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "rs4021xsp_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "rs4021xsp_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "rs4021xsp_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "rs4021xsp_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "rs4021xsp_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "fs3600_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "fs3600_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "fs3600_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "fs3600_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "fs3600_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "fs2500_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "fs2500_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "fs2500_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "fs2500_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "fs2500_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1621p_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1621p_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1621p_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1621p_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1621p_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1821p_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1821p_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1821p_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1821p_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1821p_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds2422p_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds2422p_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds2422p_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds2422p_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva3221_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva3221_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva3221_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva3221_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva3221_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva1622_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva1622_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva1622_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds918p_25556": { + "redpill": "Adds Support" + }, + "ds918p_41890": { + "redpill": "Adds Support" + }, + "ds918p_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds918p_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds918p_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds918p_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds918p_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds920p_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds920p_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds920p_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds920p_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds920p_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1520p_42951": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1520p_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1520p_42218": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1520p_42621": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds1520p_42661": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "sa6400_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds923p_42962": { + "redpill": "Adds Support", + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "ds2422p_42621": { + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva1622_42218": { + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "dva1622_42621": { + "redpilldev": "Adds Support", + "redpillprod": "Adds Support" + }, + "endofmodel": { + "redpilldev*": "Adds Support", + "redpillprod*": "Adds Support" + } + } +} \ No newline at end of file diff --git a/loads.json b/loads.json new file mode 100644 index 0000000..b234270 --- /dev/null +++ b/loads.json @@ -0,0 +1,317 @@ +{ + "pocopico_develop": { + "DS1520+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS1621+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS2422+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS3615xs": [ + "6.2.4-25556", + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS3617xs": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS3622xs+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS918+": [ + "6.2.4-25556", + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS920+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS923+": [ + "7.1.1-42962" + ], + "DVA1622": [ + "7.1.0-42661", + "7.1.1-42962" + ], + "DVA3221": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "FS2500": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "RS4021xs+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "SA6400": [ + "7.1.1-42962" + ] + }, + "pocopico_jun": { + "DS1621+": [ + "7.0.1-42218", + "7.1.0-42661" + ], + "DS2422+": [ + "7.0.1-42218" + ], + "DS3615xs": [ + "6.2.4-25556", + "7.0.1-42218", + "7.1.0-42661" + ], + "DS3617xs": [ + "7.0.1-42218", + "7.1.0-42661" + ], + "DS3622xs+": [ + "7.0.1-42218", + "7.1.0-42661" + ], + "DS918+": [ + "6.2.4-25556", + "7.0.1-42218", + "7.1.0-42661" + ], + "DS920+": [ + "7.0.1-42218", + "7.1.0-42661" + ], + "DVA3221": [ + "7.0.1-42218", + "7.1.0-42661" + ], + "RS4021xs+": [ + "7.0.1-42218" + ] + }, + "jumkey_develop": { + "DS1621+": [ + "7.0.1-42218" + ], + "DS2422+": [ + "7.0.1-42218" + ], + "DS3615xs": [ + "6.2.4-25556", + "7.0.1-42218" + ], + "DS3617xs": [ + "7.0.1-42218" + ], + "DS3622xs+": [ + "7.0.1-42218" + ], + "DS918+": [ + "6.2.4-25556", + "7.0.1-42218" + ], + "DS920+": [ + "7.0.1-42218" + ], + "DS923+": [ + "7.1.1-42962" + ], + "DVA1622": [ + "7.1-42661" + ], + "DVA3221": [ + "7.0.1-42218" + ] + }, + "PeterSuh-Q3_master": { + "DS1520+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS1621+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS2422+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS3615xs": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS3617xs": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS3622xs+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS918+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS920+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS923+": [ + "7.1.1-42962" + ], + "DVA1622": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DVA3221": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "FS2500": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "RS4021xs+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ] + }, + "wjz304_test-dev": { + "DS1520+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS1621+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS2422+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS3615xs": [ + "6.2.4-25556", + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS3617xs": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS3622xs+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS918+": [ + "6.2.4-25556", + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS920+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "DS923+": [ + "7.1.1-42962" + ], + "DVA1622": [ + "7.1.0-42661", + "7.1.1-42962" + ], + "DVA3221": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "FS2500": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "RS4021xs+": [ + "7.0.1-42218", + "7.1.0-42661", + "7.1.1-42962" + ], + "SA6400": [ + "7.1.1-42962" + ] + }, + "wjz304_test-jun": { + "DS1520+": [ + "7.0.1-42218" + ], + "DS1621+": [ + "7.0.1-42218" + ], + "DS2422+": [ + "7.0.1-42218" + ], + "DS3615xs": [ + "6.2.4-25556", + "7.0.1-42218" + ], + "DS3617xs": [ + "7.0.1-42218" + ], + "DS3622xs+": [ + "7.0.1-42218" + ], + "DS918+": [ + "6.2.4-25556", + "7.0.1-42218" + ], + "DS920+": [ + "7.0.1-42218" + ], + "DS923+": [ + "7.1.1-42962" + ], + "DVA3221": [ + "7.0.1-42218" + ], + "RS4021xs+": [ + "7.0.1-42218" + ], + "SA6400": [ + "7.1.1-42962" + ] + } +} \ No newline at end of file diff --git a/parameter.json b/parameter.json new file mode 100644 index 0000000..74df154 --- /dev/null +++ b/parameter.json @@ -0,0 +1,204 @@ +{ + "title": { + "name": "title", + "description": "请输入一个自定义的名称.(请具有一定的标识性, 且不要包含'(单引号),\"(双引号)等转义字符)", + "detailedinfo": "主要方便后期查找.", + "required": true, + "default": "", + "type": "string" + }, + "repository": { + "name": "repository", + "description": "请选择编译依赖的基础库.(pocopico_develop 以外均为默认jun模式)", + "detailedinfo": "请选择编译依赖的基础库.型号和版本均已库支持为准.\nwjz304_test*仅用于编译测试, 请勿选.", + "required": true, + "default": "pocopico", + "type": "choice", + "options": [ + "pocopico_develop", + "pocopico_jun", + "jumkey_develop", + "PeterSuh-Q3_master", + "wjz304_test-dev", + "wjz304_test-jun" + ] + }, + "platform": { + "name": "platform", + "description": "请选择你需要编译的型号(具体包含型号以基础库支持为准).", + "detailedinfo": "请选择你需要编译的型号(具体包含版本以基础库支持为准).", + "required": true, + "default": "DS3622xs+", + "type": "choice", + "options": [ + "DS918+", + "DS920+", + "DS923+", + "DS1520+", + "DS1621+", + "DS2422+", + "DS3615xs", + "DS3617xs", + "DS3622xs+", + "DVA1622", + "DVA3221", + "FS2500", + "RS4021xs+" + ] + }, + "version": { + "name": "version", + "description": "请选择你需要编译的版本(具体包含版本以基础库支持为准).", + "detailedinfo": "请选择你需要编译的版本(具体包含版本以基础库支持为准).", + "required": true, + "default": "7.0.1-42218", + "type": "choice", + "options": [ + "7.1.1-42962", + "7.1.0-42661", + "7.0.1-42218", + "6.2.4-25556" + ] + }, + "lkm": { + "name": "lkm", + "description": "如不了解请保持默认, 请选择 LKM 版本.(目前具体有何区别不详)", + "detailedinfo": "请选择 LKM 版本", + "required": false, + "default": "redpill", + "type": "choice", + "options": [ + "redpill", + "redpilldev", + "redpillprod" + ] + }, + "config": { + "name": "config", + "description": "如不了解请保持默认, 设置 user_config.json 的 base 参数, 默认: 无", + "detailedinfo": "config会被优先读取, 因此以下参数会覆盖config的内容. 仅建议在以下配置项无法满足需求时使用.", + "required": false, + "default": "", + "type": "string" + }, + "maxdisks": { + "name": "maxdisks", + "description": "如不了解请保持默认, 请输入最大硬盘数. 默认: 无, 范围: 1~48", + "detailedinfo": "请输入最大硬盘数.", + "required": false, + "default": "", + "type": "string" + }, + "maxlanport": { + "name": "maxlanport", + "description": "如不了解请保持默认, 请输入最大网卡索引. 默认: 7, 范围: 0~47", + "detailedinfo": "请输入最大网卡索引.", + "required": false, + "default": "7", + "type": "string" + }, + "internalportcfg": { + "name": "internalportcfg", + "description": "如不了解请保持默认, 请输入 sata 接口配置 internalportcfg(十六进制数). 默认: 0xffff", + "detailedinfo": "以上数值为16进制, 将其转换为2进制进行理解.\n群晖内使用“1”表示存在这个接口, “0”表示不存在这个接口.\n 0xffff 转为2进制为“1111,1111,1111,1111”, 即 1-16 号硬盘为内部sata硬盘\n与esataportcfg和usbportcfg不应该出现重复.", + "required": false, + "default": "0xffff", + "type": "string" + }, + "esataportcfg": { + "name": "esataportcfg", + "description": "如不了解请保持默认, 请输入 esata 接口配置 esataportcfg(十六进制数). 默认: 无", + "detailedinfo": "以上数值为16进制, 将其转换为2进制进行理解.\n群晖内使用“1”表示存在这个接口, “0”表示不存在这个接口.\n 0xf000 转为2进制为“1111,0000,0000,0000”, 即 13-16 号硬盘为内部esata硬盘\n与internalportcfg和usbportcfg不应该出现重复.", + "required": false, + "default": "", + "type": "string" + }, + "usbportcfg": { + "name": "usbportcfg", + "description": "如不了解请保持默认, 请输入 usb 接口配置 usbportcfg(十六进制数). 默认: 无", + "detailedinfo": "以上数值为16进制, 将其转换为2进制进行理解.\n群晖内使用“1”表示存在这个接口, “0”表示不存在这个接口.\n 0xf0 转为2进制为“1111,0000”, 即 5-8 号硬盘为usb硬盘\n与internalportcfg和esataportcfg不应该出现重复.", + "required": false, + "default": "", + "type": "string" + }, + "sn": { + "name": "sn", + "description": "请输入序列号. 默认: 根据型号随机生成.", + "detailedinfo": "请输入序列号.", + "required": false, + "default": "", + "type": "none" + }, + "mac": { + "name": "mac", + "description": "请输入MAC地址, 多个请以','间隔. 默认: 根据型号随机生成(个数与 netif_num 保持一致).", + "detailedinfo": "请输入MAC地址.", + "required": false, + "default": "", + "type": "none" + }, + "netif_num": { + "name": "netif_num", + "description": "请输入网卡数量 netif_num. 默认: 2, 范围: 1~8", + "detailedinfo": "请输入网卡数量, netif_num 应小于 maxlanport + 1.", + "required": false, + "default": "2", + "type": "string" + }, + "vid": { + "name": "vid", + "description": "请输入USB设备供应商识别码(Vender ID). 默认: 0x46f4", + "detailedinfo": "请输入USB设备供应商识别码(Vender ID), 应与“pid”成对设置, \n虚拟环境请保持默认.", + "required": false, + "default": "0x46f4", + "type": "string" + }, + "pid": { + "name": "pid", + "description": "请输入USB设备产品识别码(Product ID). 默认: 0x0001", + "detailedinfo": "请输入USB设备供应商识别码(Product ID), 应与“vid”成对设置, \n虚拟环境请保持默认.", + "required": false, + "default": "0x0001", + "type": "string" + }, + "diskidxmap": { + "name": "diskidxmap", + "description": "请输入SATA控制器盘序 DiskIdxMap. 部分型号不需要填写(鼠标悬停查看气泡). 默认: 无", + "detailedinfo": "不需要填写的型号: DS920+, DS923+, DS1520+, DS1621+, DS1821+, DS2422+, DVA1622, FS2500, SA6400. \n按顺序从左到右每两位数为一个控制器的盘序数值,这两位数为16进制数, 不足两位前面补0,\n比如SataPortMap=148 时 DiskIdxMap=000105 的表示:\n第一个控制器的磁盘从序号1开始往后排,\n第二个控制器的磁盘从序号2开始往后排,\n第三个驱动器的磁盘从序号6开始往后排.\n此时在群晖系统里面看到磁盘序号就是1-13连续的.", + "required": false, + "default": "", + "type": "string" + }, + "sataportmap": { + "name": "sataportmap", + "description": "请输入SATA控制器盘数 SataPortMap. 部分型号不需要填写(鼠标悬停查看气泡). 默认: 无", + "detailedinfo": "不需要填写的型号: DS920+, DS923+, DS1520+, DS1621+, DS1821+, DS2422+, DVA1622, FS2500, SA6400. \n在群辉系统中, 一个控制器默认只能控制9个硬盘, 所以SataPortMap=的数值范围只能是0-9,\n0则表示屏蔽该控制器, 不可以设为SataPortMap=0来隐藏引导盘!\nSataPortMap=148表示第一个控制器有1个硬盘, 第二个控制器有4个硬盘, 第三个控制器有8个硬盘.", + "required": false, + "default": "", + "type": "string" + }, + "sasidxmap": { + "name": "sasidxmap", + "description": "请输入SAS控制器盘数 SasIdxMap. 部分型号不需要填写(鼠标悬停查看气泡). 默认: 无", + "detailedinfo": "不需要填写的型号: DS920+, DS923+, DS1520+, DS1621+, DS1821+, DS2422+, DVA1622, FS2500, SA6400. \n默认使用SATA硬盘的时候设置为0.", + "required": false, + "default": "", + "type": "string" + }, + "dtb": { + "name": "dtb", + "description": "请输入 dtb 文件的下载链接(空:自动), 仅部分型号需要填写(鼠标悬停查看气泡). ", + "detailedinfo": "需要填写的型号: DS920+, DS923+, DS1520+, DS1621+, DS1821+, DS2422+, DVA1622, FS2500, SA6400. \n需要自行制作dts/dtb 文件, 制作方法参考主页说明. (支持的文件类型: .dts,.dtb,.tar.gz,.zip)\n该字段可填入三种类型:\n空(不填写): 将自动编译.(适用于硬盘数<=4个 且不需要插满.).\n空(不填写)且ext中加入‘-dtb,dtbpatch’: 将自动编译.(自动识别已插入硬盘(增加硬盘重启即可)).\nURL(dtb的下载链接): 将在编译时植入使用.", + "required": false, + "default": "", + "type": "string" + }, + "ext": { + "name": "ext", + "description": "请输入需要集成的扩展, 多个请以','间隔(请酌情添加, 太多编不过). eg: r8125, tg3", + "detailedinfo": "普通模式默认使用pocopico的驱动库,\ndev模式默认使用我fork的驱动库(如果报 Checksum 错, 请尝试使用(dev)模式)\n第三方驱动请在issues页面手动加入.", + "required": false, + "default": "", + "type": "string" + } +} diff --git a/platforms.md b/platforms.md new file mode 100644 index 0000000..1e41e43 --- /dev/null +++ b/platforms.md @@ -0,0 +1,63 @@ +> 摘自 https://xpenology.com/forum/topic/61634-dsm-7x-loaders-and-platforms/ + + +7.x Loaders and Platforms as of 06-June-2022 + + + +选项 | 1a | 1b | 2a | 2b | 2c | 3a | 3b +-|-|-|-|-|-|-|- +DSM 型号 | DS918+ | DS3622xs+ | DS920+ | DS1621+ | DS3617xs | DVA3221 | DS3615xs +Architecture | apollolake | broadwellnk | geminilake | v1000 | broadwell | denverton | bromolow +DSM 版本 | 7.0.1-7.1.0-42661 | 7.0.1-7.1.0-42661 | 7.0.1-7.1.0-42661 | 7.0.1-7.1.0-42661 | 7.0.1-7.1.0-42661 | 7.0.1-7.1.0-42661 | 7.0.1-7.1.0-42661 +驱动器映射 | sataportmap/diskidxmap | sataportmap/diskidxmap | device tree | device tree | sataportmap/diskidxmap | sataportmap/diskidxmap | ataportmap/diskidxmap +QuickSync 转码 | Yes | No | Yes | No | No | No | No +NVMe 缓存支持 | Yes | Yes | Yes | Yes | Yes (as of 7.0) | Yes | No +RAIDF1 支持 | No | Yes | No | No | Yes | No | Yes +最低 CPU 支持 | Haswell * | any x86-64 | Haswell * | any x86-64 | any x86-64 | Haswell * | any x86-64 +最大 CPU 线程 | 8 | 24 | 8 | 16 | 24 (as of 7.0) | 16 | 16 +注意事项 | 适合大多数用户 | 适合大型环境安装 | 需要了解dts | AMD Ryzen, 需要了解dts | 过时(建议使用DS3622xs+) | AI/深度学习 nVIDIA GPU | 过时(建议使用DS3622xs+) + + +* \* 需要 FMA3 指令支持。所有 Haswell Core 处理器(4代)或更高版本都支持它; Pentiums/Celerons(J系列的 CPUs 除外) 很少支持. Piledriver 是与 Intel Haswell 相当的最低 AMD CPU 架构. + + +建议: +## 1a. 默认安装 DS918+ 7.1.0 +优势:硬件转码、NVMe 缓存支持、从 6.2.x 直接迁移平台 +先决条件:英特尔 Haswell(又名第 4 代)或更新的 CPU 架构(或 AMD 等效产品) +兼容性故障排除选项:虚拟化、DS3622xs+、DS1621+(适用于 AMD 系统) + +## 1b. 大型系统安装 DS3622xs+ 7.1.0 +优点:支持 RAIDF1、多达 24 个 CPU 线程、增强的 SAS 支持、NVMe 缓存支持 +兼容性故障排除选项:虚拟化、DS1621+(适用于 AMD 系统) + +## 2a. 最新平台安装 DS920+ 7.1.0 +优点:支持 NVMe 高速缓存,如果需要最新版本的 DS9xx+ 平台 +先决条件:英特尔 Haswell(又名第 4 代)或更新的 CPU 架构(或 AMD 等效产品) +兼容性故障排除选项:虚拟化、DS3622xs+、DS1621+(适用于 AMD 系统) +注:此型号需要设备树配置,但尚未 100% 正常工作 +与 DS918+ 相比没有额外的功能特性 + +## 2b. AMD 平台安装 DS1621+ 7.1.0 +优点:NVMe缓存支持,使用AMD芯片组和Ryzen CPU的AMD特定构建(似乎在英特尔上运行良好) +注:此型号需要设备树配置,但尚未 100% 正常工作 +兼容性故障排除选项:虚拟化 +与其他平台相比没有额外的功能特性 + +## 2c. 备用安装 DS3617xs 7.1.0 +优势:RAIDF1 支持、增强的 SAS 支持、从 6.2.x 直接迁移平台 +注:技术上已过时,由DS3622xs+取代 +兼容性故障排除选项:虚拟化、DS1621+(适用于 AMD 系统) + +## 3a. 深度学习/人工智能平台安装 DVA3221 7.1.0 +优点:原生 nVIDIA GPU 支持(用于 AI,没有明显的转码功能),NVME 缓存支持 +先决条件:英特尔 Haswell(又名第 4 代)或更新的 CPU 架构(或 AMD 等效产品) +兼容性故障排除选项:虚拟化 + +## 3b. 传统安装 DS3615xs 7.1.0 +优势:RAIDF1 支持、增强的 SAS 支持、从 6.2.x 直接迁移平台 +注:技术上已过时,由DS3622xs+取代 +注意:已知此平台在负载下会出现内核崩溃 +注:7.1.0 是 DS3615xs 的最后一个 DSM 版本,群晖科技不会提供进一步更新 +兼容性故障排除选项:虚拟化、DS1621+(适用于 AMD 系统) \ No newline at end of file diff --git a/serialnumbergen.sh b/serialnumbergen.sh new file mode 100644 index 0000000..3384b05 --- /dev/null +++ b/serialnumbergen.sh @@ -0,0 +1,189 @@ +#!/bin/bash + +function beginArray() { + + case $1 in + DS916+) + permanent="NZN" + serialstart="1130 1230 1330 1430" + ;; + DS918+) + permanent="PDN" + serialstart="1780 1790 1860 1980" + ;; + DS920+) + permanent="SBR" + serialstart="2030 2040 20C0 2150" + ;; + DS923+) + permanent="SBR" + serialstart="2030 2040 20C0 2150" + ;; + DS1520+) + permanent="TRR" + serialstart="2270" + ;; + DS1621+) + permanent="S7R" + serialstart="2080" + ;; + DS2422+) + permanent="SLR" + serialstart="2140 2180" + ;; + DS3615xs) + permanent="LWN" + serialstart="1130 1230 1330 1430" + ;; + DS3617xs) + permanent="ODN" + serialstart="1130 1230 1330 1430" + ;; + DS3622xs+) + permanent="SQR" + serialstart="2030 2040 20C0 2150" + ;; + DVA1622) + permanent="SJR" + serialstart="2030 2040 20C0 2150" + ;; + DVA3219) + permanent="RFR" + serialstart="1930 1940" + ;; + DVA3221) + permanent="SJR" + serialstart="2030 2040 20C0 2150" + ;; + FS6400) + permanent="PSN" + serialstart="1960" + ;; + RS4021xs+) + permanent="SQR" + serialstart="2030 2040 20C0 2150" + ;; + *) + permanent="XXX" + serialstart="0000" + ;; + esac + +} + +function random() { + printf "%06d" $(($RANDOM % 30000 + 1)) +} +function randomhex() { + val=$(($RANDOM % 255 + 1)) + echo "obase=16; $val" | bc +} + +function generateRandomLetter() { + for i in a b c d e f g h j k l m n p q r s t v w x y z; do + echo $i + done | sort -R | tail -1 +} + +function generateRandomValue() { + for i in 0 1 2 3 4 5 6 7 8 9 a b c d e f g h j k l m n p q r s t v w x y z; do + echo $i + done | sort -R | tail -1 +} + +function toupper() { + + echo $1 | tr '[:lower:]' '[:upper:]' + +} + +function generateMacAddress() { + + #toupper "Mac Address: 00:11:32:$(randomhex):$(randomhex):$(randomhex)" + printf '00:11:32:%02X:%02X:%02X' $((RANDOM % 256)) $((RANDOM % 256)) $((RANDOM % 256)) + +} + +function generateSerial() { + + beginArray $1 + + case $1 in + DS916+) + serialnum="$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(random) + ;; + DS918+) + serialnum="$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(random) + ;; + DS920+) + serialnum=$(toupper "$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(generateRandomLetter)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomLetter)) + ;; + DS923+) + serialnum=$(toupper "$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(generateRandomLetter)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomLetter)) + ;; + DS1520+) + serialnum=$(toupper "$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(generateRandomLetter)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomLetter)) + ;; + DS1621+) + serialnum=$(toupper "$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(generateRandomLetter)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomLetter)) + ;; + DS2422+) + serialnum=$(toupper "$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(generateRandomLetter)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomLetter)) + ;; + DS3615xs) + serialnum="$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(random) + ;; + DS3617xs) + serialnum="$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(random) + ;; + DS3622xs+) + serialnum=$(toupper "$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(generateRandomLetter)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomLetter)) + ;; + DVA1622) + serialnum=$(toupper "$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(generateRandomLetter)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomLetter)) + ;; + DVA3219) + serialnum=$(toupper "$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(generateRandomLetter)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomLetter)) + ;; + DVA3221) + serialnum=$(toupper "$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(generateRandomLetter)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomLetter)) + ;; + FS6400) + serialnum="$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(random) + ;; + RS4021xs+) + serialnum=$(toupper "$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(generateRandomLetter)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomValue)$(generateRandomLetter)) + ;; + *) + serialnum="$(echo "$serialstart" | tr ' ' '\n' | sort -R | tail -1)$permanent"$(random) + ;; + esac + + echo $serialnum + +} + +function showhelp() { + + cat < + +Available platforms : +---------------------------------------------------------------------------------------- +DS916+ DS918+ DS920+ DS923+ DS1520+ DS1621+ DS2422+ DS3615xs DS3617xs DS3622xs+ DVA1622 DVA3219 DVA3221 FS6400 RS4021xs+ + +e.g. $(basename ${0}) DS3615xs +---------------------------------------------------------------------------------------- +EOF + +} + +if [ -z "$1" ]; then + showhelp +else + echo $(generateMacAddress) + echo $(generateSerial $1) +fi diff --git a/syno-extractor.sh b/syno-extractor.sh new file mode 100644 index 0000000..56d21a6 --- /dev/null +++ b/syno-extractor.sh @@ -0,0 +1,50 @@ +#!/usr/bin/env bash + +ROOT_PATH=$PWD +TOOL_PATH="$(dirname $(readlink -f "$0"))/syno-extractor" + +# GITHUB_URL="https://raw.githubusercontent.com/wjz304/Redpill_CustomBuild/main/syno-extractor" +GITHUB_URL="https://fastly.jsdelivr.net/gh/wjz304/Redpill_CustomBuild@main/syno-extractor" +[ ! -d "${TOOL_PATH}" ] && mkdir -p "${TOOL_PATH}" +for f in libcurl.so.4 libmbedcrypto.so.5 libmbedtls.so.13 libmbedx509.so.1 libmsgpackc.so.2 libsodium.so libsynocodesign-ng-virtual-junior-wins.so.7 syno_extract_system_patch; do + [ ! -e "${TOOL_PATH}/${f}" ] && curl -L "${GITHUB_URL}/${f}" -o "${TOOL_PATH}/${f}" +done +sudo chmod -R a+x "${TOOL_PATH}" +sudo LD_LIBRARY_PATH="${TOOL_PATH}" "${TOOL_PATH}/syno_extract_system_patch" $@ + + +# GET +# +# #!/usr/bin/env bash +# +# TOOL_PATH="$(dirname $(readlink -f "$0"))/syno-extractor" +# CACHE_DIR="${TOOL_PATH}/cache" +# +# [ -d "${CACHE_DIR}" ] && rm -rf "${CACHE_DIR}" +# mkdir -p "${CACHE_DIR}" +# +# OLDPAT_URL="https://cndl.synology.cn/download/DSM/release/7.0.1/42218/DSM_DS3622xs%2B_42218.pat" +# #OLDPAT_URL="https://global.download.synology.com/download/DSM/release/7.0.1/42218/DSM_DS3622xs%2B_42218.pat" +# OLDPAT_FILE="DSM_DS3622xs+_42218.pat" +# STATUS=`curl -w "%{http_code}" -L "${OLDPAT_URL}" -o "${CACHE_DIR}/${OLDPAT_FILE}" --progress-bar` +# if [ $? -ne 0 -o ${STATUS} -ne 200 ]; then +# echo "[E] DSM_DS3622xs%2B_42218.pat download error!" +# rm -rf ${CACHE_DIR} +# exit 1 +# fi +# +# mkdir "${CACHE_DIR}/ramdisk" +# tar -C "${CACHE_DIR}/ramdisk/" -xf "${CACHE_DIR}/${OLDPAT_FILE}" rd.gz 2>&1 +# if [ $? -ne 0 ]; then +# echo "[E] extractor rd.gz error!" +# rm -rf ${CACHE_DIR} +# exit 1 +# fi +# (cd "${CACHE_DIR}/ramdisk"; xz -dc < rd.gz | cpio -idm) >/dev/null 2>&1 || true +# +# # Copy only necessary files +# for f in libcurl.so.4 libmbedcrypto.so.5 libmbedtls.so.13 libmbedx509.so.1 libmsgpackc.so.2 libsodium.so libsynocodesign-ng-virtual-junior-wins.so.7; do +# cp "${CACHE_DIR}/ramdisk/usr/lib/${f}" "${TOOL_PATH}" +# done +# cp "${CACHE_DIR}/ramdisk/usr/syno/bin/scemd" "${TOOL_PATH}/syno_extract_system_patch" +# rm -rf ${CACHE_DIR} diff --git a/syno-extractor/libcurl.so.4 b/syno-extractor/libcurl.so.4 new file mode 100644 index 0000000..9a6b7b2 Binary files /dev/null and b/syno-extractor/libcurl.so.4 differ diff --git a/syno-extractor/libmbedcrypto.so.5 b/syno-extractor/libmbedcrypto.so.5 new file mode 100644 index 0000000..f29e822 Binary files /dev/null and b/syno-extractor/libmbedcrypto.so.5 differ diff --git a/syno-extractor/libmbedtls.so.13 b/syno-extractor/libmbedtls.so.13 new file mode 100644 index 0000000..94a7850 Binary files /dev/null and b/syno-extractor/libmbedtls.so.13 differ diff --git a/syno-extractor/libmbedx509.so.1 b/syno-extractor/libmbedx509.so.1 new file mode 100644 index 0000000..ea8ce16 Binary files /dev/null and b/syno-extractor/libmbedx509.so.1 differ diff --git a/syno-extractor/libmsgpackc.so.2 b/syno-extractor/libmsgpackc.so.2 new file mode 100644 index 0000000..66f48e3 Binary files /dev/null and b/syno-extractor/libmsgpackc.so.2 differ diff --git a/syno-extractor/libsodium.so b/syno-extractor/libsodium.so new file mode 100644 index 0000000..8cb3f3a Binary files /dev/null and b/syno-extractor/libsodium.so differ diff --git a/syno-extractor/libsynocodesign-ng-virtual-junior-wins.so.7 b/syno-extractor/libsynocodesign-ng-virtual-junior-wins.so.7 new file mode 100644 index 0000000..559677c Binary files /dev/null and b/syno-extractor/libsynocodesign-ng-virtual-junior-wins.so.7 differ diff --git a/syno-extractor/syno_extract_system_patch b/syno-extractor/syno_extract_system_patch new file mode 100644 index 0000000..43a659c Binary files /dev/null and b/syno-extractor/syno_extract_system_patch differ diff --git a/tips.md b/tips.md new file mode 100644 index 0000000..984fc74 --- /dev/null +++ b/tips.md @@ -0,0 +1,14 @@ +```diff ++ 注意事项: +- 现在型号和版本号均为根据基础库自动拉取. +- jun编译尽量选择jumkey的库, 新型号可选择PeterSuh-Q3库. +- dtb 没有制作就不要写, 不要再只填个 .zip, 或者复制示例的地址了. 四盘位以下可尝试不填写, 将自动编译, 更多信息参考 Issues页的置顶Issue. +- DS3615xs/DS3617xs 或者 6.2.4 现有驱动全选会编不过, 空间不足. +- 整个编译过程一般在5分钟左右(受驱动数量和版本影响), 并发较多时有概率出现未触发或者网络阻塞的情况, 如长时间未收到[bot]的回复, 请reopen或者重新创建Issue. +- igc驱动已更新1.3.0修复内存问题。(原库地址): https://raw.githubusercontent.com/jim3ma/synology-igc/main/igc/rpext-index.json. +- 如果有 8125b 驱动出现假死等问题的小伙, 可测试 https://raw.githubusercontent.com/wjz304/synology-r8125/main/r8125/rpext-index.json 并反馈. +- 如果你看不懂, 或者其他疑难杂症, 请不要浪费时间. 尝试使用arpl构建. https://github.com/fbelavenuto/arpl +- 初入黑裙的童鞋们, 不要用DS920+测试!!!, 不要用DS920+测试!!!, 不要用DS920+测试!!! +- 初入黑裙的童鞋们, 不要用DS920+测试!!!, 不要用DS920+测试!!!, 不要用DS920+测试!!! +- 初入黑裙的童鞋们, 不要用DS920+测试!!!, 不要用DS920+测试!!!, 不要用DS920+测试!!! +``` diff --git a/typo.sh b/typo.sh new file mode 100644 index 0000000..7f8c4e1 --- /dev/null +++ b/typo.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env bash + +# 修复 pocopico 大的一个 typo +if [ ${repo} == 'pocopico' -a ${branch} == 'develop' ]; then + # cd redpill-load && git reset --hard d810a64a33fdc84287ab68e2d5919763c725ebeb && cd .. + #find redpill-load/config/DS3622xs+ -type d -name '*3622xs*' -execdir rename 's/3622xs\+/3622xsp/' '{}' + + find redpill-load/config/DS3622xs+ -type f -name '*3622xs*' -exec rename 's/-3622xs\+/-3622xsp/' '{}' + + sed -i 's/DS3622xs /DS3622xs+ /g; s/-3622xs+/-3622xsp/g' `find redpill-load/config/DS3622xs+ -type f -name '*config.json'` +fi + +# 容错 +[ -e redpill-load/config/DS1019+/7.0.1-42218/config.json ] && sed -i 's/920b53b9022ebd4675049b43c493455a1307ec97344846ca9dfd25d964b75684/b029393ea7b7cf644fb1c9f984f57c1980077562ee2e15d0ffd049c4c48098d3/g' redpill-load/config/DS1019+/7.0.1-42218/config.json +[ -e redpill-load/config/DS1019+/7.0.1-42218/config.json ] && sed -i 's/338ba514066da01d0c1f770418916b9b96f5355d88a7b55b398d2726db591fdb/7311b04f7462847f529cf966c7b332097354692485c8157643d89441e2a81cd0/g' redpill-load/config/DS1019+/7.0.1-42218/config.json +[ -e redpill-load/config/DS1019+/7.0.1-42218/config.json ] && sed -i 's/f17be89d59b0e59df4093df7e5d1ac1cf199f3b22413fe62e1a792c543d6172d/a8bcb6c36e8657a8723882b19ec3e76149dc67df3650f6db0af1958637e7f565/g' redpill-load/config/DS1019+/7.0.1-42218/config.json +[ -e redpill-load/config/DS1520+/7.0.1-42218/config.json ] && sed -i 's/06947c58f25bd591f7fa3c58ad9473777481bdd7a049b42d1cb585ca01b053ee/b8864e2becd8ce5a6083db993564c8c0b982df8300a006b56695a0495a670aa3/g' redpill-load/config/DS1520+/7.0.1-42218/config.json +[ -e redpill-load/config/DS1520+/7.0.1-42218/config.json ] && sed -i 's/74d513aaa3e30d8aa4f80e202d94a68a552e9c0472f8470e133ad29080556f55/70e93678f3932c35c5e884f950e50b36f8dc6366f96dd9a454c8d47ecbaee5de/g' redpill-load/config/DS1520+/7.0.1-42218/config.json +[ -e redpill-load/config/DS1520+/7.0.1-42218/config.json ] && sed -i 's/f0a275587c51acdb4d58a7f0d82d70f31e54228d0fbf7575d5d425dae75d1969/7679ab11e895302425533c64e0dded211b38b8af71f2dd268c47a68bc9f6818a/g' redpill-load/config/DS1520+/7.0.1-42218/config.json +[ -e redpill-load/config/DS1621+/7.0.1-42218/config.json ] && sed -i 's/19f56827ba8bf0397d42cd1d6f83c447f092c2c1bbb70d8a2ad3fbd427e866df/396144fdcd94d441b4ad665099395cf24a14606742bee9438745ea30bf12b9ef/g' redpill-load/config/DS1621+/7.0.1-42218/config.json +[ -e redpill-load/config/DS1621+/7.0.1-42218/config.json ] && sed -i 's/f4648d0dd6b29ef6149b0ff46afe1fe32f81730aa79af72f37ffd3647c76f586/0ab3bf0ff027fb94863ef8822df787194f2d21079ecc66c0b0d4e46d24598855/g' redpill-load/config/DS1621+/7.0.1-42218/config.json +[ -e redpill-load/config/DS1621+/7.0.1-42218/config.json ] && sed -i 's/73512c7bceb34cf7f7f93c2703db60496da0e27274fc45e5aefa0366c9734d6e/127a12bab3835cdf5af4e7ad2a23e78f889408302c55e5052080671cff6da5b7/g' redpill-load/config/DS1621+/7.0.1-42218/config.json +[ -e redpill-load/config/DS1621xs+/7.0.1-42218/config.json ] && sed -i 's/5db4e5943d246b1a2414942ae19267adc94d2a6ab167ba3e2fc10b42aefded23/12bcfd44b4aaa6c3439b1404b7f07760373d816724ef672884d5187f27ccd70f/g' redpill-load/config/DS1621xs+/7.0.1-42218/config.json +[ -e redpill-load/config/DS1621xs+/7.0.1-42218/config.json ] && sed -i 's/17607e1739c8acc9903272ebd981bccb27b51057cdcb3cc446e5c5149db452d3/3697732b2f29a4b7020f4994ff06c2d06309894ab568e264716bf7d5d02ae685/g' redpill-load/config/DS1621xs+/7.0.1-42218/config.json +[ -e redpill-load/config/DS1621xs+/7.0.1-42218/config.json ] && sed -i 's/4a3af151b313ca15f65195e63592aa1ef91351c54cc82b66dfb3457833af8e19/5727d99522a8d7e8e31cdc353e295ce4280b956391396d080d02fcde1e07c029/g' redpill-load/config/DS1621xs+/7.0.1-42218/config.json +[ -e redpill-load/config/DS2422+/7.0.1-42218/config.json ] && sed -i 's/415c54934d483a2557500bc3a2e74588a0cec1266e1f0d9a82a7d3aace002471/5a6cfbc690facdfaef9fbcc55215eac38c73ca6a85965a910af11cede5e2cd5d/g' redpill-load/config/DS2422+/7.0.1-42218/config.json +[ -e redpill-load/config/DS2422+/7.0.1-42218/config.json ] && sed -i 's/38281a90036fffcb41cd17f05a6c7e9a1d5740a78c135980fb0c3a6d0ca1485f/e083a8aec10537582ed0dd6d79bc358d9aff828b3e256996ef1e4f4bf418dd5d/g' redpill-load/config/DS2422+/7.0.1-42218/config.json +[ -e redpill-load/config/DS2422+/7.0.1-42218/config.json ] && sed -i 's/2b5b8dd90b2e6020ffccc2719d8bc16d9935421754a8c088d6b31dbca4e4ff7b/57bcadf9699252aa68dac40b5c48f362169b51fda9f77a7f1b51e3336a551f8f/g' redpill-load/config/DS2422+/7.0.1-42218/config.json +[ -e redpill-load/config/DS3615xs/7.0.1-42218/config.json ] && sed -i 's/dddd26891815ddca02d0d53c1d42e8b39058b398a4cc7b49b80c99f851cf0ef7/ae1aca3b178a00689b93e97cca680b56af3f453174b852e0047496120dee2ee3/g' redpill-load/config/DS3615xs/7.0.1-42218/config.json +[ -e redpill-load/config/DS3615xs/7.0.1-42218/config.json ] && sed -i 's/d29b695612710376734cb5c5b5ae4f2d8afc49ffd640387e1c86010f6c7d2c8a/354f0bb13c898a7b24f2942d8015f591f7acce1739e2060580c0f38c41addaf7/g' redpill-load/config/DS3615xs/7.0.1-42218/config.json +[ -e redpill-load/config/DS3615xs/7.0.1-42218/config.json ] && sed -i 's/4c90c3c7ee25b5fcc651552e80a9364d22823c863c834c5f43e3344a3a68af78/3a8c2fe60142d3eb3a7ed2381819faa1db2cda30ff163288dd0a6c85a25815c1/g' redpill-load/config/DS3615xs/7.0.1-42218/config.json +[ -e redpill-load/config/DS3617xs/7.0.1-42218/config.json ] && sed -i 's/d65ee4ed5971e38f6cdab00e1548183435b53ba49a5dca7eaed6f56be939dcd2/f7e846e2a22b62613ac5e9d6e154df0213ba4ae64a6556297af627cd1e643e5c/g' redpill-load/config/DS3617xs/7.0.1-42218/config.json +[ -e redpill-load/config/DS3617xs/7.0.1-42218/config.json ] && sed -i 's/28a75e0b680517d39374260eb981b8ca9ace8810b121a30b8036fa09cfcb77fc/8e0ab965c85b348dfc9dc17392b9cf0a117756f1d1bc4c0f0d19bb610350659d/g' redpill-load/config/DS3617xs/7.0.1-42218/config.json +[ -e redpill-load/config/DS3617xs/7.0.1-42218/config.json ] && sed -i 's/1b2e86fbf4006f6aa40dcd674ad449feed8b0b8317a71e2bb8bb986a74e08c57/eaddd97c40a35bbcf4092417364ca4376925fb3eb322cad0cf602d4c7973d147/g' redpill-load/config/DS3617xs/7.0.1-42218/config.json +[ -e redpill-load/config/DS3622xs+/7.0.1-42218/config.json ] && sed -i 's/f38329b8cdc5824a8f01fb1e377d3b1b6bd23da365142a01e2158beff5b8a424/a222d37f369d71042057ccb592f40c7c81e9b988a95d69fa166c7c2a611da99c/g' redpill-load/config/DS3622xs+/7.0.1-42218/config.json +[ -e redpill-load/config/DS3622xs+/7.0.1-42218/config.json ] && sed -i 's/06964b68e5ccdedd4363dff3986f99686d3c9cb5225e8e4c3d840a1d9cd1330b/d6059bcd7160ed1f775a9323599ac8860b60ada32f0a4f3e5ca166c15a17784e/g' redpill-load/config/DS3622xs+/7.0.1-42218/config.json +[ -e redpill-load/config/DS3622xs+/7.0.1-42218/config.json ] && sed -i 's/a95d4ab06189460f3b3d13a33e421887b5f3ea09a10535ae0d4c92beb7ff631d/11ebadba5d831ad6f31258ab317ed1f7cbfe18243413f9f81291b894b5f7a591/g' redpill-load/config/DS3622xs+/7.0.1-42218/config.json +[ -e redpill-load/config/DS918+/7.0.1-42218/config.json ] && sed -i 's/a403809ab2cd476c944fdfa18cae2c2833e4af36230fa63f0cdee31a92bebba2/a662d11999c266dfa86c54f7ba01045c6644c191124195a22d056d618790dffe/g' redpill-load/config/DS918+/7.0.1-42218/config.json +[ -e redpill-load/config/DS918+/7.0.1-42218/config.json ] && sed -i 's/338ba514066da01d0c1f770418916b9b96f5355d88a7b55b398d2726db591fdb/7311b04f7462847f529cf966c7b332097354692485c8157643d89441e2a81cd0/g' redpill-load/config/DS918+/7.0.1-42218/config.json +[ -e redpill-load/config/DS918+/7.0.1-42218/config.json ] && sed -i 's/4b7a7a271a3b2158d9193a4f0e75c59590949ad7b4e26d546f46cc2ee8504d51/d27320b536da0ac82d7959e0492180b3a25ef78a3997f65cc4ccddc426b921bd/g' redpill-load/config/DS918+/7.0.1-42218/config.json +[ -e redpill-load/config/DS920+/7.0.1-42218/config.json ] && sed -i 's/fe2a4648f76adeb65c3230632503ea36bbac64ee88b459eb9bfb5f3b8c8cebb3/b9b77846e0983f50496276bec6bcdfcfadd4c1f9f0db8ed2ca5766f131ddf97f/g' redpill-load/config/DS920+/7.0.1-42218/config.json +[ -e redpill-load/config/DS920+/7.0.1-42218/config.json ] && sed -i 's/346b68f662b50f47d3ee6c2bc9de6302e4b60436142c24ee88b620c7afd1ba06/70e93678f3932c35c5e884f950e50b36f8dc6366f96dd9a454c8d47ecbaee5de/g' redpill-load/config/DS920+/7.0.1-42218/config.json +[ -e redpill-load/config/DS920+/7.0.1-42218/config.json ] && sed -i 's/f7dd1317f24ec6b9bac839e37f66b59030218c7f97c06f73f1f54ed0f892c4aa/8607c34fff3a13c75dbc1a9c730de2b2cf649697d6244fd37047090d2e2ba897/g' redpill-load/config/DS920+/7.0.1-42218/config.json +[ -e redpill-load/config/DVA3219/7.0.1-42218/config.json ] && sed -i 's/3557df23ff6af9bbb0cf46872ba2fc09c344eb303a38e8283dbc9a46e5eae979/b3498a20aeb7c7c36deca0f4393172d4db7b51aa4fb87eaace83fe224d935e3b/g' redpill-load/config/DVA3219/7.0.1-42218/config.json +[ -e redpill-load/config/DVA3219/7.0.1-42218/config.json ] && sed -i 's/ef97f2d64f3f7f8c5e3f4e8fee613d385d7888826f56e119f1885a722c95c7cc/8b58e602317286bdd25481c4927a791507589ce0b7c29f1ad394d08b634d41a3/g' redpill-load/config/DVA3219/7.0.1-42218/config.json +[ -e redpill-load/config/DVA3219/7.0.1-42218/config.json ] && sed -i 's/6820f900bf2870660541b83f9741a0b70e05e8871bc41c006c9d688105c97f7c/5b301519fe08200e4cb368b7d23e4ce460d5412428126b9496084ceae3f6d67e/g' redpill-load/config/DVA3219/7.0.1-42218/config.json +[ -e redpill-load/config/DVA3221/7.0.1-42218/config.json ] && sed -i 's/01f101d7b310c857e54b0177068fb7250ff722dc9fa2472b1a48607ba40897ee/6722c73c51070dde2f542659d7728c497fc846256da2c9cf017177476de0bb09/g' redpill-load/config/DVA3221/7.0.1-42218/config.json +[ -e redpill-load/config/DVA3221/7.0.1-42218/config.json ] && sed -i 's/ef97f2d64f3f7f8c5e3f4e8fee613d385d7888826f56e119f1885a722c95c7cc/8b58e602317286bdd25481c4927a791507589ce0b7c29f1ad394d08b634d41a3/g' redpill-load/config/DVA3221/7.0.1-42218/config.json +[ -e redpill-load/config/DVA3221/7.0.1-42218/config.json ] && sed -i 's/0825958923a5e67d967389769cff5fb7a04a25b98a2826c4c1e8aa7b8146dc8b/86a7450cdc461049c4cefe3fe3a1f9d241ea3c484f72f5667d7cd27f2842c8d6/g' redpill-load/config/DVA3221/7.0.1-42218/config.json +[ -e redpill-load/config/FS2500/7.0.1-42218/config.json ] && sed -i 's/4d060be8afec548fdb042bc8095524f10ff200033cab74df37ae07f3de5eaa69/3fbd5defbc0fef0d152494033f3e817c330525b70e356a9e9acd2b72d9806b59/g' redpill-load/config/FS2500/7.0.1-42218/config.json +[ -e redpill-load/config/FS2500/7.0.1-42218/config.json ] && sed -i 's/f6816165a52b1f53ce44a45878fe06641da34e9478947f826a236c1a6548f8fd/e083a8aec10537582ed0dd6d79bc358d9aff828b3e256996ef1e4f4bf418dd5d/g' redpill-load/config/FS2500/7.0.1-42218/config.json +[ -e redpill-load/config/FS2500/7.0.1-42218/config.json ] && sed -i 's/cbe9099c57f23ba53415574b011580218fa55a0bdb83c4e4bba9e27100e5379d/8d66ddfa947b38c0e407d4c5efd7558b1a9392e04fd83fe9f162e1aa546f8da8/g' redpill-load/config/FS2500/7.0.1-42218/config.json +[ -e redpill-load/config/FS6400/7.0.1-42218/config.json ] && sed -i 's/0e5e15398fb50d21ac52e0fbae199d5bacebc52f04933be5825c710f9de874ea/3437cc14ba919f13e37691d31d960f3f48cd3d734c015001ad2a7679636a5e9d/g' redpill-load/config/FS6400/7.0.1-42218/config.json +[ -e redpill-load/config/FS6400/7.0.1-42218/config.json ] && sed -i 's/cbed16da4970c41e9b9c6797c57c70b12f55ab497756cb050247d1c155c8a8f6/67a5c04ba47cbef148195816412f88248b86a58e021e1c8196e31fbd375d0b50/g' redpill-load/config/FS6400/7.0.1-42218/config.json +[ -e redpill-load/config/FS6400/7.0.1-42218/config.json ] && sed -i 's/eebaf0236230956fc1a9d8ca8c8f86143da959b631cad9c311152a4e644d17a0/ec1e1ea2022ac4af7dfbf2f72b64219b0c8ef747278a0b5c37d50ac7b07195ed/g' redpill-load/config/FS6400/7.0.1-42218/config.json +[ -e redpill-load/config/RS3413xs+/7.0.1-42218/config.json ] && sed -i 's/9796536979407817ca96aef07aaabb3f03252a8e54df0f64ff7caf3c737f0da9/b5f5505a4ee0d623c562db43a0be6aba64a5bc57c6d6dcb796d80a60ea5fc7cd/g' redpill-load/config/RS3413xs+/7.0.1-42218/config.json +[ -e redpill-load/config/RS3413xs+/7.0.1-42218/config.json ] && sed -i 's/d29b695612710376734cb5c5b5ae4f2d8afc49ffd640387e1c86010f6c7d2c8a/354f0bb13c898a7b24f2942d8015f591f7acce1739e2060580c0f38c41addaf7/g' redpill-load/config/RS3413xs+/7.0.1-42218/config.json +[ -e redpill-load/config/RS3413xs+/7.0.1-42218/config.json ] && sed -i 's/bd9ceaaffbdbca676029797386262b262f101d469ecb7d8b709b59070cc6a050/ad2b7c6ffabf348a14df0558ab89bc2ac62226b33dfe5b19114f7beed11ae41f/g' redpill-load/config/RS3413xs+/7.0.1-42218/config.json +[ -e redpill-load/config/RS3618xs/7.0.1-42218/config.json ] && sed -i 's/2b7623a6781fe10e0eface1665d41dfe2e5adb033b26e50e27c3449aee5fe4b0/941886bee9a0929c6bd078c5f2c465d9599721fc885a1e3835d6b60631f419af/g' redpill-load/config/RS3618xs/7.0.1-42218/config.json +[ -e redpill-load/config/RS3618xs/7.0.1-42218/config.json ] && sed -i 's/58e6c4b8068cc7e5cc21d3bfce579669f891607f30f0dd6d58fba18fce695143/41993de949af53def17ca6190bfff503044b9ebc0beccf7a3d54ab050998e9db/g' redpill-load/config/RS3618xs/7.0.1-42218/config.json +[ -e redpill-load/config/RS3618xs/7.0.1-42218/config.json ] && sed -i 's/ded7d2d33b006b1ff554e6f59c28e52d4277c14146679cba7fdfacf8f309d14a/cd7c7ed0fba15b2d3eae70b9d6f680a8dfbe1138164e6312d98482177746f544/g' redpill-load/config/RS3618xs/7.0.1-42218/config.json +[ -e redpill-load/config/RS4021xs+/7.0.1-42218/config.json ] && sed -i 's/7afca3970ac7324d7431c1484d4249939bedd4c18ac34187f894c43119edf3a1/2a32266b7bcf0b2582b5afd9e39dc444e7cb40eaf4ccfdbfedf4743af821f11c/g' redpill-load/config/RS4021xs+/7.0.1-42218/config.json +[ -e redpill-load/config/RS4021xs+/7.0.1-42218/config.json ] && sed -i 's/b4cc62e9953f226960de98b65887e17dd6df5fa0ad28f665e0b4660dbd5f2fa8/d6059bcd7160ed1f775a9323599ac8860b60ada32f0a4f3e5ca166c15a17784e/g' redpill-load/config/RS4021xs+/7.0.1-42218/config.json +[ -e redpill-load/config/RS4021xs+/7.0.1-42218/config.json ] && sed -i 's/3510afe5b3dfe3662bfe054c1728c8794911da431718b533cd03d2a2c061ffd5/f2b99b4c05559376d34d30d6446c30a8b3f44f516e5a041299d03be9c7fd0095/g' redpill-load/config/RS4021xs+/7.0.1-42218/config.json + +[ -d redpill-load/config/SA6400/7.1.1-42962 -a ! -f redpill-load/config/SA6400/7.1.1-42962/zImage-001-SA6400-42962-ramdisk-and-header.bsp ] && curl -L https://raw.githubusercontent.com/wjz304/redpill-load/test-dev/config/SA6400/7.1.1-42962/zImage-001-SA6400-42962-ramdisk-and-header.bsp -o redpill-load/config/SA6400/7.1.1-42962/zImage-001-SA6400-42962-ramdisk-and-header.bsp +[ -e redpill-load/config/SA6400/7.1.1-42962/config.json ] && sed -i 's/redpill-linux-v4.4.180+.ko/redpill-linux-v5.10.55+.ko/g' redpill-load/config/SA6400/7.1.1-42962/config.json + +if [ ${repo} == 'pocopico' -a ${branch} == 'develop' ]; then + # 容错 + [ -e redpill-load/config/DS1520+/7.1.1-42962/config.json ] && sed -i 's/DSM_ds1520p_42962.pat/DSM_DS1520%2B_42962.pat/g' redpill-load/config/DS1520+/7.1.1-42962/config.json + [ -e redpill-load/redpill-misc/recipes/universal.json ] && sed -i 's/856331415d6980d9ef03a75eae4b9c5c927d1083266e1d7038ad8c62fbc2d570/625daf8507141d055b60b9e5ffd633cde1302d68387d611ac97a98a92f820501/g' redpill-load/redpill-misc/recipes/universal.json +fi + +if [ ${repo} == 'PeterSuh-Q3' -a ${branch} == 'master' ]; then + # 容错 + [ -e redpill-load/config/DS1520+/7.1.1-42962/config.json ] && sed -i 's/DSM_ds1520p_42962.pat/DSM_DS1520%2B_42962.pat/g' redpill-load/config/DS1520+/7.1.1-42962/config.json +fi + +if [ ${repo} == 'pocopico' -a ${branch} == 'jun' ]; then + # 容错 + [ -e redpill-load/config/DVA3221/7.0.1-42218/config.json ] && sed -i 's/cndl.synology.cn/global.download.synology.com/g' redpill-load/config/DVA3221/7.0.1-42218/config.json + [ -e redpill-load/config/FS6400/7.0.1-42218/config.json ] && sed -i 's/global.synology.com/global.download.synology.com/g' redpill-load/config/FS6400/7.0.1-42218/config.json + [ -e redpill-load/config/RS4021xs+/7.0.1-42218/config.json ] && sed -i 's/global.synology.com/global.download.synology.com/g' redpill-load/config/RS4021xs+/7.0.1-42218/config.json + [ -e redpill-load/config/RS4021xs+/7.0.1-42218/config.json ] && sed -i 's/a72076b1a5c148e775e9542916e2f07fe18d8676dc7396ed69355a9a0a38b36c/7afca3970ac7324d7431c1484d4249939bedd4c18ac34187f894c43119edf3a1/g' redpill-load/config/RS4021xs+/7.0.1-42218/config.json + [ -e redpill-load/config/RS4021xs+/7.0.1-42218/config.json ] && sed -i 's/17607e1739c8acc9903272ebd981bccb27b51057cdcb3cc446e5c5149db452d3/b4cc62e9953f226960de98b65887e17dd6df5fa0ad28f665e0b4660dbd5f2fa8/g' redpill-load/config/RS4021xs+/7.0.1-42218/config.json + [ -e redpill-load/config/RS4021xs+/7.0.1-42218/config.json ] && sed -i 's/3aa9d810064747fca6d0a3ab4c979bd82b49fc0d166dfe714261c2a22145cc70/3510afe5b3dfe3662bfe054c1728c8794911da431718b533cd03d2a2c061ffd5/g' redpill-load/config/RS4021xs+/7.0.1-42218/config.json +fi + +if [ ${repo} == 'jumkey' -a ${branch} == 'develop' ]; then + # 容错 + [ -e redpill-load/config/DS923+/7.1.1-42962/config.json ] && sed -i 's|file://localhost/root/DSM_DS923%2B_42962.pat|https://global.download.synology.com/download/DSM/release/7.1.1/42962/DSM_DS923%2B_42962.pat|g' redpill-load/config/DS923+/7.1.1-42962/config.json + [ -e redpill-load/config/DS923+/7.1.1-42962/config.json ] && sed -i 's|a2bcfae34eda13f65bc7ee453b63bab982e2db9891a680968bc24ef5035ae8d8|e33b47df446ce0bd99c5613767c9dba977915e25acfb5ccb9f5650b14459458f|g' redpill-load/config/DS923+/7.1.1-42962/config.json + [ -e redpill-load/config/DVA1622/7.1-42661/config.json ] && sed -i 's|file://localhost/root/content.tar|https://global.download.synology.com/download/DSM/release/7.1/42661-1/DSM_DVA1622_42661.pat|g' redpill-load/config/DVA1622/7.1-42661/config.json + [ -e redpill-load/config/DVA1622/7.1-42661/config.json ] && sed -i 's|99f60f0c2b54c0a2adbc01d79e872273488ba43296a7a74904c462bc423b7dfe|f1484cf302627072ca393293cd73e61dc9e09d479ef028b216eae7c12f7b7825|g' redpill-load/config/DVA1622/7.1-42661/config.json + [ -e redpill-load/config/DVA1622/7.1-42661/config.json ] && sed -i 's|a31e91a62ab6f3ff986bc7fcfde0a56a292c15e17735e7b5fad573d333cf7de4|1d0e5b76e08e3483f6bf06d23b5978ec498b855bde23db1f96f343db4c43337d|g' redpill-load/config/DVA1622/7.1-42661/config.json + [ -e redpill-load/config/DVA1622/7.1-42661/config.json ] && sed -i 's|32ee25e7a806eb481cc858edd7f1e341c85c7627ea03788f8466716432830d33|6290945ba61f652aec83725f81f5a47bd5e4cdbeb86241c33825154140e164ec|g' redpill-load/config/DVA1622/7.1-42661/config.json +fi \ No newline at end of file