diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2018-11-30 09:11:39 +0800 |
---|---|---|
committer | Jia Zhang <zhang.jia@linux.alibaba.com> | 2018-11-30 13:46:35 +0800 |
commit | deed416dd82fb85da5a89d80990431fe87fae97b (patch) | |
tree | 8cd71a197731a7565eaf03e78855d07e76be3a68 | |
parent | 627475766502fd1f0c957ec9c6927d18a16b3aa8 (diff) | |
download | meta-secure-core-deed416dd82fb85da5a89d80990431fe87fae97b.tar.gz |
kernel-initramfs: fix inconsistent indentation
Use spaces consistently to indent do_install()
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
-rw-r--r-- | meta/recipes-core/images/kernel-initramfs.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-core/images/kernel-initramfs.bb b/meta/recipes-core/images/kernel-initramfs.bb index dffd614..cce46ab 100644 --- a/meta/recipes-core/images/kernel-initramfs.bb +++ b/meta/recipes-core/images/kernel-initramfs.bb | |||
@@ -42,12 +42,12 @@ do_install() { | |||
42 | 42 | ||
43 | install -m 0644 "$img" \ | 43 | install -m 0644 "$img" \ |
44 | "${D}/boot/${INITRAMFS_IMAGE}${INITRAMFS_EXT_NAME}.$suffix" | 44 | "${D}/boot/${INITRAMFS_IMAGE}${INITRAMFS_EXT_NAME}.$suffix" |
45 | done | 45 | done |
46 | else | 46 | else |
47 | if [ -e "${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-initramfs-${MACHINE}.bin" ]; then | 47 | if [ -e "${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-initramfs-${MACHINE}.bin" ]; then |
48 | install -m 0644 "${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-initramfs-${MACHINE}.bin" \ | 48 | install -m 0644 "${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-initramfs-${MACHINE}.bin" \ |
49 | "${D}/boot/${KERNEL_IMAGETYPE}-initramfs${INITRAMFS_EXT_NAME}" | 49 | "${D}/boot/${KERNEL_IMAGETYPE}-initramfs${INITRAMFS_EXT_NAME}" |
50 | fi | 50 | fi |
51 | fi | 51 | fi |
52 | } | 52 | } |
53 | 53 | ||