3b5d95be8d
After being copied to target/, touch dmsetup so that its date is newer than the .built stamp file in lvm2 source directory. This prevents make from re-installing dmsetup every time. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
118 lines
4.0 KiB
Makefile
118 lines
4.0 KiB
Makefile
#############################################################
|
|
#
|
|
# lvm2
|
|
#
|
|
#############################################################
|
|
# Copyright (C) 2005 by Richard Downer <rdowner@gmail.com>
|
|
# Derived from work
|
|
# Copyright (C) 2001-2005 by Erik Andersen <andersen@codepoet.org>
|
|
# Copyright (C) 2002 by Tim Riker <Tim@Rikers.org>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU Library General Public License as
|
|
# published by the Free Software Foundation; either version 2 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Library General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Library General Public
|
|
# License along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
# USA
|
|
|
|
LVM2_BASEVER=2.02
|
|
LVM2_DMVER=1.02
|
|
LVM2_PATCH=50
|
|
LVM2_VERSION=$(LVM2_BASEVER).$(LVM2_PATCH)
|
|
LVM2_SOURCE:=LVM2.$(LVM2_VERSION).tgz
|
|
LVM2_SITE:=ftp://sources.redhat.com/pub/lvm2
|
|
LVM2_CAT:=$(ZCAT)
|
|
LVM2_DIR:=$(BUILD_DIR)/LVM2.$(LVM2_VERSION)
|
|
LVM2_SBIN:=lvchange lvcreate lvdisplay lvextend lvm lvmchange lvmdiskscan lvmsadc lvmsar lvreduce lvremove lvrename lvresize lvs lvscan pvchange pvcreate pvdisplay pvmove pvremove pvresize pvs pvscan vgcfgbackup vgcfgrestore vgchange vgck vgconvert vgcreate vgdisplay vgexport vgextend vgimport vgmerge vgmknodes vgreduce vgremove vgrename vgs vgscan vgsplit
|
|
LVM2_DMSETUP_SBIN:=dmsetup
|
|
LVM2_LIB:=libdevmapper.so.$(LVM2_DMVER)
|
|
LVM2_TARGET_SBINS=$(foreach lvm2sbin, $(LVM2_SBIN), $(TARGET_DIR)/sbin/$(lvm2sbin))
|
|
LVM2_TARGET_DMSETUP_SBINS=$(foreach lvm2sbin, $(LVM2_DMSETUP_SBIN), $(TARGET_DIR)/sbin/$(lvm2sbin))
|
|
LVM2_TARGET_LIBS=$(foreach lvm2lib, $(LVM2_LIB), $(TARGET_DIR)/lib/$(lvm2lib))
|
|
|
|
$(DL_DIR)/$(LVM2_SOURCE):
|
|
$(call DOWNLOAD,$(LVM2_SITE),$(LVM2_SOURCE))
|
|
|
|
lvm2-source: $(DL_DIR)/$(LVM2_SOURCE)
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_READLINE),y)
|
|
LVM2_DEPENDENCIES+=readline
|
|
else
|
|
# v2.02.44: disable readline usage, or binaries are linked against provider
|
|
# of "tgetent" (=> ncurses) even if it's not used..
|
|
LVM2_CONF_OPT+=--disable-readline
|
|
endif
|
|
|
|
|
|
$(LVM2_DIR)/.unpacked: $(DL_DIR)/$(LVM2_SOURCE)
|
|
$(LVM2_CAT) $(DL_DIR)/$(LVM2_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
touch $(LVM2_DIR)/.unpacked
|
|
|
|
$(LVM2_DIR)/.configured: $(LVM2_DIR)/.unpacked
|
|
(cd $(LVM2_DIR); rm -rf config.cache; \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(TARGET_CONFIGURE_ARGS) \
|
|
./configure $(QUIET) \
|
|
--target=$(GNU_TARGET_NAME) \
|
|
--host=$(GNU_TARGET_NAME) \
|
|
--build=$(GNU_HOST_NAME) \
|
|
$(DISABLE_NLS) \
|
|
$(DISABLE_LARGEFILE) \
|
|
--with-user=$(shell id -un) --with-group=$(shell id -gn) \
|
|
$(LVM2_CONF_OPT) \
|
|
)
|
|
touch $(LVM2_DIR)/.configured
|
|
|
|
|
|
$(LVM2_DIR)/.built: $(LVM2_DIR)/.configured
|
|
$(MAKE1) CC=$(TARGET_CC) RANLIB=$(TARGET_RANLIB) AR=$(TARGET_AR) -C $(LVM2_DIR) DESTDIR=$(STAGING_DIR)
|
|
$(MAKE1) -C $(LVM2_DIR) DESTDIR=$(STAGING_DIR) install
|
|
# Fixup write permissions so that the files can be overwritten
|
|
# several times in the $(TARGET_DIR)
|
|
chmod 755 $(STAGING_DIR)/sbin/lvm
|
|
chmod 755 $(STAGING_DIR)/sbin/dmsetup
|
|
chmod 644 $(STAGING_DIR)/lib/$(LVM2_LIB)
|
|
touch $(LVM2_DIR)/.built
|
|
|
|
|
|
$(LVM2_TARGET_SBINS) $(LVM2_TARGET_DMSETUP_SBINS): $(LVM2_DIR)/.built
|
|
cp -a $(STAGING_DIR)/sbin/$(notdir $@) $@
|
|
touch $@
|
|
|
|
$(LVM2_TARGET_LIBS): $(LVM2_DIR)/.built
|
|
cp -a $(STAGING_DIR)/lib/$(notdir $@) $@
|
|
touch $@
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LVM2_DMSETUP_ONLY),y)
|
|
lvm2: $(LVM2_TARGET_DMSETUP_SBINS) $(LVM2_TARGET_LIBS)
|
|
else
|
|
lvm2: $(LVM2_TARGET_SBINS) $(LVM2_TARGET_DMSETUP_SBINS) $(LVM2_TARGET_LIBS)
|
|
endif
|
|
|
|
|
|
lvm2-clean:
|
|
$(MAKE) DESTDIR=$(TARGET_DIR) -C $(LVM2_DIR) uninstall
|
|
-$(MAKE) -C $(LVM2_DIR) clean
|
|
|
|
lvm2-dirclean:
|
|
rm -rf $(LVM2_DIR)
|
|
|
|
#############################################################
|
|
#
|
|
# Toplevel Makefile options
|
|
#
|
|
#############################################################
|
|
ifeq ($(BR2_PACKAGE_LVM2),y)
|
|
TARGETS+=lvm2
|
|
endif
|