Lines Matching defs:install

121  *		  --        package to install.  If not present, then
131 * Individual u-boot packages install their own overlay property list
188 * -- Key: "u-boot-install".
190 * -- "u-boot-install-emmc", etc.).
197 * -- types, then it should provide just "u-boot-install".
201 * -- "u-boot-install-sdmmc" (for SD cards)
202 * -- "u-boot-install-emmc" (for eMMC modules)
203 * -- "u-boot-install-usb" (for USB block storage)
204 * -- "u-boot-install-spi" (for SPI NOR flash)
209 * <key>u-boot-install</key>
217 * -- binary files needed to install the boot loader.
233 * to install u-boot on the boot media. Each installation object it
240 * <key>u-boot-install</key>
269 * <key>u-boot-install</key>
333 * <key>u-boot-install-spi</key>
400 * <key>u-boot-install-spi</key>
406 * <key>u-boot-install-sdmmc</key>
413 * <key>u-boot-install-emmc</key>
414 * <string>u-boot-install-sdmmc</string>
681 static const char board_u_boot_install_key[] = "u-boot-install";
695 * Either this key and no other "u-boot-install*" keys:
696 * "u-boot-install" (string) (required, overlay only)
699 * "u-boot-install-*" (string) (required, overlay only)
751 * Overlays must have only a default install key OR one or more
752 * media install keys.
1317 * need to install. You get the full monty in verbose mode.
1340 "\t(install the sysutils/u-boot-%s package)\n",
1392 * Return the u-boot install object for the specified board,
1398 evb_ubinstall install;
1400 install = prop_dictionary_get(board, board_u_boot_install_key);
1403 if (install == NULL) {
1408 return install;
1413 if (install) {
1424 install = prop_dictionary_get(board, install_key);
1425 if (install != NULL) {
1426 if (prop_object_type(install) == PROP_TYPE_STRING) {
1432 install = prop_dictionary_get(board,
1433 prop_string_value((prop_string_t)install));
1435 return install;
1491 * Get the install steps for a given install object.
1494 evb_ubinstall_get_steps(ib_params *params, evb_ubinstall install)
1496 return prop_array_iterator(install);
1501 * Return the next step in the install object.
1875 * install it.
1882 warnx("Please install the sysutils/u-boot-%s package.",
1887 evb_ubinstall install = evb_board_get_uboot_install(params, board);
1891 if (install == NULL)
1899 steps = evb_ubinstall_get_steps(params, install);
1953 steps = evb_ubinstall_get_steps(params, install);