From: Peter Korsgaard Date: Thu, 1 Jul 2010 13:35:00 +0000 (+0200) Subject: ubifs: fix lzo typo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9280cafe308fe4d8706ba2b12e6d5ae464fb8aed;p=buildroot.git ubifs: fix lzo typo Closes #2155 Signed-off-by: Peter Korsgaard --- diff --git a/CHANGES b/CHANGES index d00172baab..9e672f1cb8 100644 --- a/CHANGES +++ b/CHANGES @@ -51,6 +51,7 @@ #2038: Bump ncurses to 5.7 #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5' #2119: Tries to build kernel, although disabled in config + #2155: Compression lzo don't set for ubifs 2010.05, Released May 30th, 2010: diff --git a/fs/ubifs/ubifs.mk b/fs/ubifs/ubifs.mk index 0fad234212..337180edc0 100644 --- a/fs/ubifs/ubifs.mk +++ b/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) UBIFS_OPTS += -x zlib endif -ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_LZI),y) +ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_LZO),y) UBIFS_OPTS += -x lzo endif ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_NONE),y)