Home | History | Annotate | Download | only in installboot

Lines Matching defs:overlay

131  * Individual u-boot packages install their own overlay property list
132 * files that installboot(8) then scans for. These overlay files are
140 * overlay files one directory deep. For example:
163 * Each overlay includes complete board objects that entirely replace
165 * overlay board objects are computed at run-time and should not appear
168 * The schema of the overlay board plists are as follows:
223 * -- will cause the overlay to be rejected.
691 * "runtime-u-boot-path" (string) (required, overlay only)
696 * "u-boot-install" (string) (required, overlay only)
699 * "u-boot-install-*" (string) (required, overlay only)
720 * "runtime-u-boot-path" is added to an overlay after we've
765 * Load boards from an overlay file into the db.
771 prop_dictionary_t overlay;
781 overlay = prop_dictionary_internalize_from_file(path);
782 if (overlay == NULL) {
783 warnx("unable to parse overlay '%s'", path);
792 prop_object_iterator_t iter = prop_dictionary_iterator(overlay);
796 board = prop_dictionary_get_keysym(overlay, key);
815 prop_object_release(overlay);