Home
last modified time | relevance | path

Searched refs:imageType (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/poky/meta/classes-recipe/
H A Dkernel.bbclass304 for imageType in ${KERNEL_IMAGETYPE_FOR_MAKE} ; do
305 if [ -h ${KERNEL_OUTPUT_DIR}/$imageType ] ; then
306 linkpath=`readlink -n ${KERNEL_OUTPUT_DIR}/$imageType`
307 realpath=`readlink -fn ${KERNEL_OUTPUT_DIR}/$imageType`
309 tmp_path=$tmp_path" "$imageType"#"$linkpath"#"$realpath
310 elif [ -f ${KERNEL_OUTPUT_DIR}/$imageType ]; then
311 mv -f ${KERNEL_OUTPUT_DIR}/$imageType ${KERNEL_OUTPUT_DIR}/$imageType.bak
312 tmp_path=$tmp_path" "$imageType"##"
319 imageType=`echo $tp|cut -d "#" -f 1`
325 ln -sf $linkpath.initramfs ${B}/${KERNEL_OUTPUT_DIR}/$imageType.initramfs
[all …]
/openbmc/phosphor-webui/app/common/directives/
H A Dfirmware-list.js16 $scope.activate = function(imageId, imageVersion, imageType) {
17 $scope.$parent.activateImage(imageId, imageVersion, imageType);
/openbmc/phosphor-webui/app/configuration/controllers/
H A Dfirmware-controller.js49 $scope.activateImage = function(imageId, imageVersion, imageType) { argument
52 $scope.activate_image_type = imageType;
311 $scope.filters = {bmc: {imageType: 'BMC'}, host: {imageType: 'Host'}}; property in $scope.filters.bmc
/openbmc/phosphor-webui/app/common/services/
H A Dapi-utils.js1082 var imageType = '';
1138 imageType = content.data[key].Purpose.split('.').pop();
1151 imageType: imageType, property in AnonymousClass1ea782bb8801
1160 imageType == 'BMC') {
1165 imageType == 'Host') {
/openbmc/openbmc-tools/openbmctool/
H A Dopenbmctool.py2672 def extractFWimage(path, imageType): argument
2694 if imageType not in purpose.split('.')[-1]:
2695 print('The specified image is not for ' + imageType)
2696 print('Please try again with the image for ' + imageType)