summaryrefslogtreecommitdiff
path: root/tools/binman/test/alt_dts/model2.dts
blob: 7829c519772c7993b83c102d78100b52a976964a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: GPL-2.0+
// Copyright 2024 Google LLC
// Written by Simon Glass <sjg@chromium.org>

/dts-v1/;

/ {
	model = "Model Two";
	compatible = "u-boot,model-two";

	/* this node remains due to bootph-pre-sram tag */
	node {
		some-prop;
		prop-to-remove;
		another-prop-to-get-rid-of;
		not-a-prop-to-remove;
		bootph-pre-sram;

		/* this node get removed by fdtgrep */
		other-node {
			another-prop;
		};
	};
};