0eae65aeec
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 40279
44 lines
974 B
Makefile
44 lines
974 B
Makefile
#
|
|
# Copyright (C) 2007 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:=io
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/io
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Raw memory i/o utility
|
|
URL:=http://www.sleepie.demon.co.uk/linuxvme/io.c
|
|
endef
|
|
|
|
define Package/io/description
|
|
This tool can be used to access physical memory addresses from userspace.
|
|
It can be useful to access hardware for which no device driver exists!
|
|
endef
|
|
|
|
define Build/Prepare
|
|
$(INSTALL_DIR) $(PKG_BUILD_DIR)
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(TARGET_CC) $(TARGET_CFLAGS) -Os $(PKG_BUILD_DIR)/io.c -o $(PKG_BUILD_DIR)/$(PKG_NAME)
|
|
endef
|
|
|
|
define Package/io/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/io $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,io))
|