mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 13:41:32 +02:00
added some tools that the foxboard users are used to, when working with the fox
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7463 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
494412bf0a
commit
c30dde7940
45
package/foxboard-utils/Makefile
Normal file
45
package/foxboard-utils/Makefile
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
#
|
||||||
|
# Copyright (C) 2006 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
# $Id: Makefile 7006 2007-04-19 12:06:39Z kaloz $
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=foxboard-utils
|
||||||
|
PKG_VERSION:=1
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
|
PKG_SOURCE:=foxboard-utils.tar.bz2
|
||||||
|
PKG_SOURCE_URL:=http://www.acmesystems.it/download/owrt
|
||||||
|
PKG_MD5SUM:=
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/foxboard-utils
|
||||||
|
SECTION:=utils
|
||||||
|
CATEGORY:=Base system
|
||||||
|
TITLE:=Foxboard base tools
|
||||||
|
DESCRIPTION:=\
|
||||||
|
This package contains a collection of tools for configuring the foxboard gpio pins/leds
|
||||||
|
URL:=http://www.acmesystems.it
|
||||||
|
DEPENDS:=@LINUX_2_6_ETRAX
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/Compile
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) CFLAGS=$(TARTGET_CFLAGS) CC=$(TARGET_CC)
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) PREFIX="$(PKG_INSTALL_DIR)" install
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/foxboard-utils/install
|
||||||
|
$(INSTALL_DIR) $(1)/
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)
|
||||||
|
mkdir $(1)/www/cgi
|
||||||
|
cd $(1)/www/cgi; ln -s ../../bin/edit.cgi .
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,foxboard-utils))
|
Loading…
Reference in New Issue
Block a user