1/* 2 * Copyright (c) 2022, Commonwealth Scientific and Industrial Research 3 * Organisation (CSIRO) ABN 41 687 119 230. 4 * 5 * SPDX-License-Identifier: Apache-2.0 6 * 7 * Test compilation with disabled flash nodes. 8 */ 9 10/{ 11 disabled_flash@0 { 12 compatible = "vnd,flash"; 13 reg = <0x00 0x1000>; 14 status = "disabled"; 15 16 partitions { 17 compatible = "fixed-partitions"; 18 #address-cells = <1>; 19 #size-cells = <1>; 20 21 disabled_a: partition@0 { 22 label = "disabled_a"; 23 reg = <0x00000000 0x00001000>; 24 }; 25 disabled_b: partition@1000 { 26 label = "disabled_b"; 27 reg = <0x00001000 0x00001000>; 28 }; 29 }; 30 }; 31}; 32