Home | History | Annotate | Download | only in tests

Lines Matching defs:fdt

43 	void *fdt, *buf;
48 fdt = load_blob_arg(argc, argv);
51 CHECK(fdt_open_into(fdt, buf, SPACE));
52 fdt = buf;
54 CHECK(fdt_appendprop(fdt, 0, "prop-bytes", bytes, sizeof(bytes)));
55 CHECK(fdt_appendprop_cell(fdt, 0, "prop-int", TEST_VALUE_2));
56 CHECK(fdt_appendprop_u64(fdt, 0, "prop-int64", TEST_VALUE64_1));
57 CHECK(fdt_appendprop_string(fdt, 0, "prop-str", TEST_STRING_2));
59 CHECK(fdt_pack(fdt));
61 save_blob("appendprop2.test.dtb", fdt);