Quellcode durchsuchen

ubifs: fix lzo typo

Closes #2155

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard vor 15 Jahren
Ursprung
Commit
9280cafe30
2 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 1 0
      CHANGES
  2. 1 1
      fs/ubifs/ubifs.mk

+ 1 - 0
CHANGES

@@ -51,6 +51,7 @@
 	#2038: Bump ncurses to 5.7
 	#2038: Bump ncurses to 5.7
 	#2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
 	#2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
 	#2119: Tries to build kernel, although disabled in config
 	#2119: Tries to build kernel, although disabled in config
+	#2155: Compression lzo don't set for ubifs
 
 
 2010.05, Released May 30th, 2010:
 2010.05, Released May 30th, 2010:
 
 

+ 1 - 1
fs/ubifs/ubifs.mk

@@ -9,7 +9,7 @@ UBIFS_OPTS := -e $(BR2_TARGET_ROOTFS_UBIFS_LEBSIZE) -c $(BR2_TARGET_ROOTFS_UBIFS
 ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_ZLIB),y)
 ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_ZLIB),y)
 UBIFS_OPTS += -x zlib
 UBIFS_OPTS += -x zlib
 endif
 endif
-ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_LZI),y)
+ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_LZO),y)
 UBIFS_OPTS += -x lzo
 UBIFS_OPTS += -x lzo
 endif
 endif
 ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_NONE),y)
 ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_NONE),y)