I am trying to modify my BIOS to add an option to one of the submenus. Currently it is like this according to IFR:
2
3
4
5
6
7
8
9
0x3687D Suppress If: {0A 82}
0x3687F Variable 0xE3D equals 0x0 {12 06 3D 0E 00 00}
0x36885 Setting: GPU MODE, Variable: 0x127 {05 91 EB 1B EC 1B 4A 27 16 00 27 01 14 10 01 04 00}
0x36896 Option: Dedicated GPU only, Value: 0x1 {09 07 ED 1B 00 00 01}
0x3689D Option: NVIDIA(R) Optimus(TM), Value: 0x4 {09 07 EE 1B 30 00 04}
0x368A4 End of Options {29 02}
0x368A6 End If {29 02}
My goal is to get it like this:
2
3
4
5
6
7
8
9
10
0x3687D Suppress If: {0A 82}
0x3687F Variable 0xE3D equals 0x0 {12 06 3D 0E 00 00}
0x36885 Setting: GPU MODE, Variable: 0x127 {05 91 EB 1B EC 1B 4A 27 16 00 27 01 14 10 01 04 00}
0x36896 Option: Dedicated GPU only, Value: 0x1 {09 07 ED 1B 00 00 01}
0x3689D Option: NVIDIA(R) Optimus(TM), Value: 0x4 {09 07 EE 1B 30 00 04}
****** Option: Integrated GPU only, Value: 0x0 {09 07 EE 1B 30 00 00} ******************
0x368A4 End of Options {29 02}
0x368A6 End If {29 02}
How can I insert this option into my submenu? Also second question, is there a way to unlock flash descriptor region in BIOS to allow flashing with FPTW64? Its annoying to have to constantly take my computer apart to reflash the BIOS with new changes. It has secure flash so AFUWin is not an option for me.