summaryrefslogtreecommitdiff
path: root/meta-phosphor/classes
diff options
context:
space:
mode:
authorAndrew Jeffery <andrew@aj.id.au>2016-02-23 03:40:39 +0300
committerAndrew Jeffery <andrew@aj.id.au>2016-02-24 07:01:34 +0300
commitf983c5a7089d4b63d66c8bb3f159b8ddbc41ab0d (patch)
tree054721d7b5c5fcceff40f55e09cd30b48ba579f7 /meta-phosphor/classes
parent83ebfb222946264fd1fd0e363fb22b8c42b4b7b9 (diff)
downloadopenbmc-f983c5a7089d4b63d66c8bb3f159b8ddbc41ab0d.tar.xz
oe_mkimage: Use consistent indentation
It was inconsistent with the rest of the file, which seems to use 7 spaces. In particular, vim-sleuth was detecting the indentation style from the first indent(s) in the file, which were in the oe_mkimage function. Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Diffstat (limited to 'meta-phosphor/classes')
-rw-r--r--meta-phosphor/classes/obmc-phosphor-image_types_uboot.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-phosphor/classes/obmc-phosphor-image_types_uboot.bbclass b/meta-phosphor/classes/obmc-phosphor-image_types_uboot.bbclass
index c390c3660..bf987bb68 100644
--- a/meta-phosphor/classes/obmc-phosphor-image_types_uboot.bbclass
+++ b/meta-phosphor/classes/obmc-phosphor-image_types_uboot.bbclass
@@ -4,9 +4,9 @@ inherit image_types_uboot
# the image load address and entry point. Override it here.
oe_mkimage () {
- mkimage -A ${UBOOT_ARCH} -O linux -T ramdisk -C $2 -n ${IMAGE_BASENAME} \
- -a ${INITRD_IMAGE_LOADADDRESS} -e ${INITRD_IMAGE_ENTRYPOINT} \
- -d ${DEPLOY_DIR_IMAGE}/$1 ${DEPLOY_DIR_IMAGE}/$1.u-boot
+ mkimage -A ${UBOOT_ARCH} -O linux -T ramdisk -C $2 -n ${IMAGE_BASENAME} \
+ -a ${INITRD_IMAGE_LOADADDRESS} -e ${INITRD_IMAGE_ENTRYPOINT} \
+ -d ${DEPLOY_DIR_IMAGE}/$1 ${DEPLOY_DIR_IMAGE}/$1.u-boot
}
INITRD_IMAGE_ENTRYPOINT ?= "0x40800000"