Browse Source

at91: sdcard image with ext4 rootfs

creating sdcard image with ext4 rootfs only and ignoring creating
other filesystem in sdcard image.

Signed-off-by: Sandeep Sheriker Mallikarjun <[email protected]>
Sandeep Sheriker Mallikarjun 7 years ago
parent
commit
581f5e2392
2 changed files with 3 additions and 2 deletions
  1. 1 1
      target/linux/at91/image/Makefile
  2. 2 1
      target/linux/at91/image/sama5.mk

+ 1 - 1
target/linux/at91/image/Makefile

@@ -23,7 +23,7 @@ endif
 define Device/Default
   $(Device/default-nand)
   PROFILES := Default
-  FILESYSTEMS := squashfs ubifs
+  FILESYSTEMS := squashfs ubifs ext4
   DEVICE_DTS := $(1)
   KERNEL_NAME := zImage
   KERNEL_SIZE := 4096k

+ 2 - 1
target/linux/at91/image/sama5.mk

@@ -4,6 +4,7 @@ FAT32_BLOCKS:=$(shell echo \
   $$(($(AT91_SD_BOOT_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
 
 define Build/at91-sdcard
+  $(if $(findstring ext4,$@), \
   rm -f [email protected]
   mkfs.fat -C [email protected] $(FAT32_BLOCKS)
 
@@ -30,7 +31,7 @@ define Build/at91-sdcard
 
   gzip -nc9 [email protected] > $@
 
-  rm -f [email protected] [email protected]
+  rm -f [email protected] [email protected] )
 endef
 
 define Device/evaluation-sdimage