Nrfconnect 2.4.0 + added qspi for when using spi nor for mcuboot breaking build

I have been using an nrf52833 with spi nor for mcuboot.  I recently updated the code to 2.4.2 and when I do that nrf_qspi_nor.c gets added and breaks the compile after I add the new bootloader config "CONFIG_NCS_SAMPLE_MCUMGR_BT_OTA_DFU=y"  This seems very odd given that this chip does not have qpsi and now the project is looking for the qspi node.  Below is the pi node that has been working until now

&spi3 {
    compatible = "nordic,nrf-spim";
    status = "okay";
    cs-gpios = <&gpio0 15 GPIO_ACTIVE_LOW>; /* D10 */
    pinctrl-0 = <&spi3_default>;
    pinctrl-1 = <&spi3_sleep>;
    pinctrl-names = "default", "sleep";
    MX25U8035F: MX25U8035F@0 {
        compatible = "jedec,spi-nor";
        label = "MX25U8035F";
        reg = <0>;
        spi-max-frequency = <16000000>;
        //wp-gpios = <&gpio0 5 GPIO_ACTIVE_LOW>;
        //hold-gpios = <&gpio1 2 GPIO_ACTIVE_LOW>;
        size = <0x0800000>;
        has-dpd;
        t-enter-dpd = <10000>;
        t-exit-dpd = <35000>;
        jedec-id = [c2 25 34];
//      has-be32k;
    };
};
Related