Its okay, tomorrow I should get the parts (latest friday) and I just rebuild and hope for the best.
post #81 of 234
6/21/07 at 5:08am
|
First off, I want to thank you for the write up zzpulp. You have the easiest to follow guide on blind flashing on all of the entire web that I could find. It's hard enough to find anyone who is enough of a samaritan to even say anything about something like this, let alone have a full write up. I bad flashed my XPS Gen 2 myself, running on a 6800 Go. The only issue I'm having right now is I actually can't find the actual rom name to place into the command line. Like a fool, I tried just [romname].rom thinking that would work--and of course it doesn't. Would you know where one could find the actual rom name, since I'm having a hard time finding it anywhere on the forum or on google for that matter? Thank you in advance and karma smile upon you.
|
nvflash -r nvflash --list > output1.txt nvflash -c > output2.txt nvflash -b diag.rom nvflash -k diag.rom > output3.txt nvflash -4 -5 -6 -A -y temp.rom del temp.rom
|
[T]here are a number of tricks that will allow you to flash or know whether your card is flashable. I am a minimalist, so we will do both of these in the same step. First step first…Unplug your HD and remove all bootable media from your devices except the device you wish to boot to (i.e. remove cd from the dvd drive if you are planning on using the flash drive) Your system is a [XPS] and has bios customizable led’s which is perfect This step requires you have access to another gpu unless you are super leet or already have your computer setup this way. Go into the bios and set the system led’s to turn on upon bootup. This option is under “Onboard Devices” in my bios. Set the led’s to your favorite color
How is this helpful you ask? Well the system leds turn on when the bios is started and sometimes with a corrupt gpu, the bios will not start on every boot. The numlock led will turn on only after the system leds and can take up to 1.5 hr to turn on (mainly if you have flashed a bios that uses a different core than your original gpu). The system led indicates when the bios is started and the numlock led indicates when a device is being booted (i.e. hard drive, flash drive, etc) I have noticed on my system, that if the system leds don’t turn on within about 45 seconds of booting the system, they just aren’t gonna turn on and hence the system isn’t going to boot. If this happens, just perform a hard reboot and try again. Once the system leds come on, just chill and wait for the numlock led to turn on. When the numlock turns on, its only a matter of time before your media is booted and your autoexec is run. Since you cannot see your screen, you are going to have to pipe the output of the commands. This simply redirects the output that would be shown on the screen to somewhere else, in our case a file. Therefore, your autoexec should look like this: nvflash --list > output1.txt nvflash -c > output2.txt nvflash -r > output3.txt nvflash -4 -5 -6 -A -y [bios].rom > output4.txt These commands generate an output[1-4].txt that will allow you to know what’s happening without physically seeing the screen. The first command is perhaps the most important. It lets you know whether nvflash recognizes your gpu as nvidia. The second command checks for compatibility of your eeprom with the particular version of nvflash. Hence, the program may recognize your card as nvidia but still may not be able to tamper with it for sake of compatibility. The third command will attempt to remove write protect from the card just in case it’s on for some reason. The fourth command will attempt to force-auto flash and reboot the computer. Note: If the fourth command did work, the computer would reboot and do everything over and over until you stopped it but in that case you’d have a fixed graphics card and what is there to worry about? Again though, this process should take you about 2-3 min unless you flashed a bios with a different core, in which case, I believe the bios starts instantaneously and you just have to wait for the numlock for about an hour and another 30 min to boot the device. If any of the commands give an error, the output file will only show the version of nvflash used and nothing else. Anyway, report back here with your file outputs and I can try to assist you. |