aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/orion/harddisk
Commit message (Expand)AuthorAgeFilesLines
* orion: Set appropriate DEVICE_TYPE for harddisk targetFlorian Fainelli2016-12-041-0/+1
* orion: Make sub-targets augment FEATURES, not re-define itFlorian Fainelli2016-12-041-1/+1
* orion: Update kernel to 3.10.44Hauke Mehrtens2014-07-201-0/+2
* orion: disable normal router support for the harddisk subtargetFelix Fietkau2013-06-281-0/+3
* orion: add support for the lacie 2big network deviceFelix Fietkau2013-06-281-2/+3
* versioned files and dirs still make no sense when you support only a single k...Imre Kaloz2013-06-041-0/+0
* move DT2 related kernel options into the harddist subtargetImre Kaloz2013-06-041-0/+4
* orion: nuke 3.0 supportGabor Juhos2012-05-091-34/+0
* orion: add 3.3 supportGabor Juhos2012-04-291-0/+28
* switch from ext2 to ext4 (w/o) journalingImre Kaloz2010-11-221-2/+1
* the same DEFAULT_PACKAGES should be selected in the generic MakefileImre Kaloz2010-11-051-2/+0
* target/linux/orion: create subtargets (closes #8154)Alexandros C. Couloumbis2010-11-041-2/+12
* sort all target config filesImre Kaloz2009-11-111-22/+22
* orion/harddisk: Add config-default to enable kernel features required for mou...Rod Whitby2009-03-221-0/+35
* orion: Create generic and harddisk subtargets, ready for a different kernel c...Rod Whitby2009-03-221-0/+6
ltin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# 
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=genext2fs
PKG_VERSION:=1.4.1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/genext2fs
PKG_HASH:=404dbbfa7a86a6c3de8225c8da254d026b17fd288e05cec4df2cc7e1f4feecfc

include $(INCLUDE_DIR)/host-build.mk

HOST_CONFIGURE_ARGS = \
	--target=$(GNU_HOST_NAME) \
	--host=$(GNU_HOST_NAME) \
	--build=$(GNU_HOST_NAME) \
	--program-prefix="" \
	--program-suffix="" \
	--prefix=/usr \
	--exec-prefix=/usr \
	--bindir=/usr/bin \
	--sbindir=/usr/sbin \
	--libexecdir=/usr/lib \
	--sysconfdir=/etc \
	--datadir=/usr/share \
	--localstatedir=/var \
	--mandir=/usr/man \
	--infodir=/usr/info \

define Host/Compile
	$(MAKE) -C $(HOST_BUILD_DIR) \
		CFLAGS="$(HOST_CFLAGS)" \
		LDFLAGS="$(HOST_LDFLAGS)" \
		all
endef

define Host/Install
	install -m0755 $(HOST_BUILD_DIR)/genext2fs $(STAGING_DIR_HOST)/bin/
endef

define Host/Clean
	rm -f $(STAGING_DIR_HOST)/bin/genext2fs
endef

$(eval $(call HostBuild))