diff options
author | Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> | 2014-10-25 20:29:31 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-10-26 05:47:05 +0100 |
commit | 1769933d98cc4891df571453f0380a4aef5aefcc (patch) | |
tree | 41154f90c4b343f3c693e439665922adaa36e29e /fs/cpio/cpio.mk | |
parent | 28a0054bea79eafc0caa70c2364a15113af03f6e (diff) | |
download | buildroot-1769933d98cc4891df571453f0380a4aef5aefcc.tar.gz buildroot-1769933d98cc4891df571453f0380a4aef5aefcc.zip |
package: indentation cleanup
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'fs/cpio/cpio.mk')
-rw-r--r-- | fs/cpio/cpio.mk | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/cpio/cpio.mk b/fs/cpio/cpio.mk index 771306ced9..e82167e512 100644 --- a/fs/cpio/cpio.mk +++ b/fs/cpio/cpio.mk @@ -7,18 +7,18 @@ ifeq ($(BR2_ROOTFS_DEVICE_CREATION_STATIC),y) define ROOTFS_CPIO_ADD_INIT - if [ ! -e $(TARGET_DIR)/init ]; then \ - ln -sf sbin/init $(TARGET_DIR)/init; \ - fi + if [ ! -e $(TARGET_DIR)/init ]; then \ + ln -sf sbin/init $(TARGET_DIR)/init; \ + fi endef else # devtmpfs does not get automounted when initramfs is used. # Add a pre-init script to mount it before running init define ROOTFS_CPIO_ADD_INIT - if [ ! -e $(TARGET_DIR)/init ]; then \ - $(INSTALL) -m 0755 fs/cpio/init $(TARGET_DIR)/init; \ - fi + if [ ! -e $(TARGET_DIR)/init ]; then \ + $(INSTALL) -m 0755 fs/cpio/init $(TARGET_DIR)/init; \ + fi endef PACKAGES_PERMISSIONS_TABLE += /dev/console c 622 0 0 5 1 - - -$(sep) |