From: Oliver Ertl Date: Fri, 31 Mar 2006 16:45:36 +0000 (+0000) Subject: add hdparm package (thanks to Tomas Vanek) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=c5adae641e94b0a71e1f2b5dd88e1c28fe56e254 add hdparm package (thanks to Tomas Vanek) SVN-Revision: 3557 --- diff --git a/openwrt/package/Config.in b/openwrt/package/Config.in index 41dd75cc7c..acb4d0715e 100644 --- a/openwrt/package/Config.in +++ b/openwrt/package/Config.in @@ -301,6 +301,7 @@ source "package/pciutils/Config.in" source "package/strace/Config.in" source "package/udev/Config.in" source "package/watchdog/Config.in" +source "package/hdparm/Config.in" endmenu menu "FileSystems related" diff --git a/openwrt/package/hdparm/Config.in b/openwrt/package/hdparm/Config.in new file mode 100644 index 0000000000..d119ac6e52 --- /dev/null +++ b/openwrt/package/hdparm/Config.in @@ -0,0 +1,12 @@ +config BR2_PACKAGE_HDPARM + prompt "hdparm............................ get/set ATA drive parameters" + tristate + default m if CONFIG_DEVEL + help + + tune hard disk parameters for high performance + Get/set hard disk parameters for Linux IDE drives. + Primary use is for enabling irq-unmasking and IDE multiplemode. + + The original website: + http://sourceforge.net/projects/hdparm/ diff --git a/openwrt/package/hdparm/Makefile b/openwrt/package/hdparm/Makefile new file mode 100644 index 0000000000..485fb59e07 --- /dev/null +++ b/openwrt/package/hdparm/Makefile @@ -0,0 +1,36 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=hdparm +PKG_VERSION:=6.6 +PKG_RELEASE:=1 +PKG_MD5SUM:=ecea69f775396e4ab6112dcf9066239f + +PKG_SOURCE_URL:=@SF/hdparm +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,HDPARM,hdparm,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + touch $@ + +$(PKG_BUILD_DIR)/.built: + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC=$(TARGET_CC) + touch $@ + +$(IPKG_HDPARM): + install -d -m0755 $(IDIR_HDPARM)/usr/sbin + install -m0755 $(PKG_BUILD_DIR)/hdparm $(IDIR_HDPARM)/usr/sbin + $(RSTRIP) $(IDIR_HDPARM) + $(IPKG_BUILD) $(IDIR_HDPARM) $(PACKAGE_DIR) + +mostlyclean: + $(MAKE) -C $(PKG_BUILD_DIR) \ + clean + rm -f $(PKG_BUILD_DIR)/.built diff --git a/openwrt/package/hdparm/ipkg/hdparm.control b/openwrt/package/hdparm/ipkg/hdparm.control new file mode 100644 index 0000000000..4db1002d17 --- /dev/null +++ b/openwrt/package/hdparm/ipkg/hdparm.control @@ -0,0 +1,4 @@ +Package: hdparm +Priority: optional +Section: misc +Description: get/set ATA drive parameters