Ok, thanks, yes per the HWID tool PCI\VEN_8086&DEV_2652&CC_0104 is one of the four HWID's for the 82801FR SATA RAID controller
Can you post your entire HWID list? Tool is linked in my signature.
You are not logged in. Please login or register.
DriverPacks.net Forum » Posts by mr_smartepants
Ok, thanks, yes per the HWID tool PCI\VEN_8086&DEV_2652&CC_0104 is one of the four HWID's for the 82801FR SATA RAID controller
Can you post your entire HWID list? Tool is linked in my signature.
You got it! Good luck.
It doesn't matter what HWIDS are supported by the Dell driver you have. What matters when using DriverPacks are the HWIDs of the target machine.
If you have PCI\VEN_8086&DEV_2652&CC_0104 then section [I2] is correct and is version 7.0.0.1020.
Moving this thread to the BartPE section...
Merry Christmas to you too.
1. Since the Chipset drivers seem to be the ones that contain USB 3 drivers, won't I need to add those to BOOT.WIM as well as the Mass Storage ones?
Yes. We typically recommend users only integrate dpms into boot.wim but in reality you can integrate whatever you want (Chipset, LAN, etc.). But keep in mind that the more drivers you integrate into the boot.wim, the LONGER the boot process will take as ALL those drivers are loaded into RAM. In the past, some users went through the ridiculous process of loading ALL the DriverPacks into the boot.wim. While that would work, it would be very stupid.
2. Do drivers added to BOOT.WIM 'carry over' to INSTALL.WIM and the final installation, or is it necessary to add Mass Storage (and possibly Chipset) to both WIM files?
No. Drivers added to boot.wim only allow the installation utility to "see" the installation target (hard drive) or sources (DVD, USB, network share, etc.). If a driver is needed by the system to "see" a drive controller, and the driver is only loaded into the boot.wim, then the installation (file copy stage) will go OK, but you'll likely get a BSOD during the later stages when no driver is found and the installer can't find the drive anymore.
Jeff and I were doing all the work for a while. I've been ludicrously busy over the past few months, so luckily these guys have jumped in and have been doing a great job.
Texas Instruments USB3 xHCI Host Controller/Hub
updated to {DriverVer=11/26/2012, 1.16.2.0} WHQL'ed for Vista & Win7 (x86 & x64)
here --> http://www.ti.com/lit/sw/sllc423d/sllc423d.zip
Link is dead. "It's dead Jim!"
*Edit
Link is here: http://www.ti.com/lit/sw/sllc423e/sllc423e.zip
Yes.
I'm working on these NT6 dpms packs now.
I'll see what I can do.
You'll notice that Sony themselves don't support XP with that model.
If the manufacturer doesn't have a XP driver, finding a workable driver elsewhere will be like finding a needle in a haystack.
Upgrade to Win7 and call it a day. You'll be much happier.
So you're saying that you tried the driver from Sony here and it didn't work?
The .inf has XP indicators in it.
Damnation wrote:OEM LINK
http://downloadcenter.intel.com/Detail_ … ldID=20963
If he ever comes back, I've noticed that this hardware ID
PCI\VEN_8086&DEV_2826
only uses megasr.sys in the OEM driver, same in driverpacks. but driverpacks has the addition of iaStorA.sys also with that HWID.
If mass-storage.ini is edited to remove this HWID from iaStorA.sys I think it'll work.
Duplicate HWIDs are not permitted... this is an error in the pack.
I haven't been looking at the test packs that you guys have been posting lately, but the last pack I built was 1210r1 and it does NOT have that generic HWID in the .ini. That partial HWID (with either &CC*** or &SUBSYS***) is listed in these sections: [L](sub-section-8) and [I4](sub-section-1). There's no overlap.
Changing the controller from AHCI to RAID would also change the HWID of the controller itself.
...moved from "Software" to "Universal Imaging"...
Have you changed the HAL? I'm not sure DriverPacks is breaking your install.
Hopefully one of our users more versed in WDS will chime in here.
I have very VERY little free time as of late. I'll try and put something together this weekend but please continue the discussion between yourselves. I AM following...
CD\WXPS\I386\presetup.cmd and WXPS\presetup.cmd, added 1 line after the SET command:
SET TAGFILE=\OEM FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y) DO IF EXIST "%%i:\CD\WXPS\OEM SET CDDRIVE=%%i:\CD\WXPS & GOTO DPsFound FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y) DO IF EXIST "%%i:%TAGFILE%" SET CDDRIVE=%%i:& GOTO DPsFound :DPsFound
Your first "for" loop is missing the end-quotes. Change to read as below:
SET TAGFILE=\OEM
FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y) DO IF EXIST "%%i:\CD\WXPS\OEM" SET "CDDRIVE=%%i:\CD\WXPS" & GOTO DPsFound
FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y) DO DIR %%i: && IF EXIST "%%i:%TAGFILE%" SET "CDDRIVE=%%i:" & GOTO DPsFound
IF EXIST "\$win_nt$.~ls" SET CDDRIVE=\$win_nt$.~ls
:DPsFound
CD\WXPS\OEM\DP_Install_Tool.cmd and WXPS\OEM\DP_Install_Tool.cmd, added 1 line before the last IF:
FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y) DO ( IF Exist "%%i:\OEM\bin\un7zip.exe" SET "DPLoc=%%i:\OEM" & Set "M=2" IF Exist "%%i:\$OEM$\$1\D\" SET "DPLoc=%%i:\$OEM$\$1" & Set "M=1" & %%i IF Exist "%%i:\CD\WXPS\OEM\bin\un7zip.exe" SET "DPLoc=%%i:\CD\WXPS\OEM" & Set "M=2" IF "%M%">="1" GoTo Found)
Here's a more refined expression of your mods:
FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y) DO (
IF Exist "%%i:\OEM\bin\un7zip.exe" SET "DPLoc=%%i:\OEM" & Set "M=2"
IF Exist "%%i:\$OEM$\$1\D\" (SET "DPLoc=%%i:\$OEM$\$1" & Set "M=1" & %%i)
IF Exist "%%i:\CD\WXPS\OEM\bin\un7zip.exe" (SET "DPLoc=%%i:\CD\WXPS\OEM" & Set "M=2")
IF "!M!" GEQ "1" GoTo Found
)
Is it possible that you are affected by this problem?
Actually, dpinst.exe is one of the few M$ products that they actively encourage free distribution. They wrote that into their EULA in the "driver distribution kit" (can't remember the name).
Thank you very much!
I'll take a look. I'll be away on a business trip all next week so hopefully I can get this reviewed by then.
Wow, that's awesome. This is a collaborative effort. Of course I don't mind!
Please upload it to mediafire or other free hosting service and I'll verify it.
The sound function should be disabled. I'll delete it entirely just to be sure.
Yes, that touchpad bug is already known.
Yes. I've seen that happen too. I am working on a new revision and hopefully will have that sorted out.
In the meantime, the easiest method to avoid the problem is to hit the Windows key, type "cmd", then right click on cmd.exe and "run as administrator", then execute DP_Install_Tool.cmd /S
We do not mention that place here!
That is not a valid OEM source.
The instructions are in the first post of the SAD2 thread and in the "readme.txt" included in the download.
The hotfix is KB888111 but there's no reason not to use SP3.
DriverPacks.net Forum » Posts by mr_smartepants
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 3 official extensions. Copyright © 2003–2009 PunBB.
[ Generated in 0.093 seconds, 5 queries executed ]