Home | History | Annotate | Download | only in tests

Lines Matching defs:fdt

32 	void *fdt, *buf;
37 fdt = load_blob_arg(argc, argv);
40 CHECK(fdt_open_into(fdt, buf, SPACE));
41 fdt = buf;
43 CHECK(fdt_appendprop(fdt, 0, "prop-bytes", bytes, sizeof(bytes)));
44 CHECK(fdt_appendprop_cell(fdt, 0, "prop-int", TEST_VALUE_2));
45 CHECK(fdt_appendprop_u64(fdt, 0, "prop-int64", TEST_VALUE64_1));
46 CHECK(fdt_appendprop_string(fdt, 0, "prop-str", TEST_STRING_2));
48 CHECK(fdt_pack(fdt));
50 save_blob("appendprop2.test.dtb", fdt);