summaryrefslogtreecommitdiff
path: root/core/mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-03-19 22:19:07 +0100
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-03-19 22:19:07 +0100
commitf3c805bcad4d92d971d3f6f50da1cfe886f69fd6 (patch)
tree7c6fb1f07a7d574ccae0b736021b89ba3a3f679f /core/mk
parent13b06c297ebbf63be00f725894391630c5d516bc (diff)
downloadembtoolkit-f3c805bcad4d92d971d3f6f50da1cfe886f69fd6.tar.gz
embtoolkit-f3c805bcad4d92d971d3f6f50da1cfe886f69fd6.tar.bz2
embtoolkit-f3c805bcad4d92d971d3f6f50da1cfe886f69fd6.tar.xz
Host tools: move squashfs tools to packages/htools/
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'core/mk')
-rw-r--r--core/mk/packages.mk1
-rw-r--r--core/mk/squashfs.mk59
2 files changed, 0 insertions, 60 deletions
diff --git a/core/mk/packages.mk b/core/mk/packages.mk
index 9268d30..b9de206 100644
--- a/core/mk/packages.mk
+++ b/core/mk/packages.mk
@@ -40,7 +40,6 @@ HOSTTOOLS_COMPONENTS-$(CONFIG_EMBTK_HOST_HAVE_LIBELF) += libelf_host_install
include core/mk/makedevs.mk
include core/mk/mkimage.mk
-include core/mk/squashfs.mk
# Install various tools in case of FreeBSD host development machine
ifeq ($(embtk_buildhost_os_type),bsd)
diff --git a/core/mk/squashfs.mk b/core/mk/squashfs.mk
deleted file mode 100644
index 6b046bf..0000000
--- a/core/mk/squashfs.mk
+++ /dev/null
@@ -1,59 +0,0 @@
-################################################################################
-# Embtoolkit
-# Copyright(C) 2009-2012 Abdoulaye Walsimou GAYE.
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU 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 General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-################################################################################
-#
-# \file squashfs.mk
-# \brief squashfs.mk of Embtoolkit.
-# \author Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
-# \date August 2009
-################################################################################
-
-SQUASHFS_TOOLS_NAME := squashfs
-SQUASHFS_TOOLS_VERSION := $(call embtk_get_pkgversion,squashfs_tools)
-SQUASHFS_TOOLS_SITE := http://sourceforge.net/projects/squashfs/files/squashfs/squashfs$(SQUASHFS_TOOLS_VERSION)
-SQUASHFS_TOOLS_PACKAGE := squashfs$(SQUASHFS_TOOLS_VERSION).tar.gz
-SQUASHFS_TOOLS_SRC_DIR := $(embtk_toolsb)/squashfs$(SQUASHFS_TOOLS_VERSION)
-SQUASHFS_TOOLS_BUILD_DIR := $(SQUASHFS_TOOLS_SRC_DIR)/squashfs-tools
-
-MKSQUASHFS_BIN := $(embtk_htools)/usr/bin/mksquashfs
-UNSQUASHFS_BIN := $(embtk_htools)/usr/bin/unsquashfs
-
-SQUASHFS_TOOLS_DEPS := zlib_host_install
-
-# Build cppflags
-__embtk_squashfs_cppflags := -I$(embtk_htools)/usr/include
-ifneq ($(embtk_buildhost_os),linux)
-__embtk_squashfs_cppflags += -DFNM_EXTMATCH=0
-endif
-
-SQUASHFS_TOOLS_MAKE_ENV := CC=$(HOSTCC_CACHED)
-SQUASHFS_TOOLS_MAKE_ENV += CPPFLAGS="$(__embtk_squashfs_cppflags)"
-SQUASHFS_TOOLS_MAKE_ENV += LDFLAGS="-L$(embtk_htools)/usr/lib"
-SQUASHFS_TOOLS_MAKE_ENV += EXTRA_CFLAGS="-include sys/stat.h"
-
-SQUASHFS_TOOLS_MAKE_OPTS := XATTR_SUPPORT=0
-SQUASHFS_TOOLS_MAKE_OPTS += INSTALL_DIR="$(embtk_htools)/usr/bin"
-
-
-define embtk_install_squashfs_tools
- $(call embtk_makeinstall_hostpkg,squashfs_tools)
-endef
-
-define embtk_cleanup_squashfs_tools
- rm -rf $(SQUASHFS_TOOLS_SRC_DIR)
-endef