Hi Paul Gerhardt,
I got a Rev C board, I reproduced this issue. I believe Rev B board use 0.12 bootloader version and Rev C board use 0x14 boodloader version.
Con Verse's suggestion is right. to get pass the BOOT ROOM checksum, checksum value at address 0x1C need to be filled at vector table. There are at least two methods to get the checksum value:
Method 1. Use Keil tool elfdwt.exe generate checksum value
You need install Keil IDE fist. the tool is under: C:\Keil_v5\ARM\BIN
input command: >elfdwt.exe app_demo.axf
here, "app_demo.axf" is the mcuxpresso demo code generated executable file
After executing this command, checksum will be displayed as 0xEFFF5F75.

Method 2. calculate checksum value by hand
- launch debugger, add first 7 vector values together, then reverse:

0x10001FF0+0x00001C5+0x00003F6B+0x00003F6B+0+0+0=0x1000A08B
0-1000A08B = 0xEFFF5F75
Next, fill the checksum value at address 0x1C in vector table:

build and launch debugger, This revision should fix the problem.
Have a great day,
Jun Zhang
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------