fc8c6d10f3
nodefaultlibs now includes libc so we have to add it where we want it git-svn-id: svn://svn.openwrt.org/openwrt/packages@30530 3c298f89-4303-0410-b956-a3cf2f4a3e73
54 lines
1.5 KiB
Makefile
54 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2008-2011 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:=avrusbboot
|
|
PKG_VERSION:=2006-06-25
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME).$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://www.fischl.de/avrusbboot/
|
|
PKG_MD5SUM:=3e2f5e2c257918410a66c3463f583fdf
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME).$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/avrusbboot
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libusb +uclibcxx
|
|
TITLE:=USB bootloader for Atmel AVR controllers
|
|
URL:=http://www.fischl.de/avrusbboot/
|
|
endef
|
|
|
|
define Package/avrusbboot/description
|
|
AVRUSBBoot is a bootloader for the Atmel AVR controllers.
|
|
It uses a firmware-only USB driver to transfer binary data
|
|
from the PC to the flash of the controller. Once the AVR
|
|
is flashed with the bootloader, no other ISP programmer is
|
|
needed; then the microcontroller can be reprogrammed over USB.
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/software \
|
|
CXX="$(TARGET_CROSS)g++ $(TARGET_CFLAGS) -fno-builtin -fno-rtti -nostdinc++ $(TARGET_CPPFLAGS) -I$(STAGING_DIR)/usr/include/uClibc++" \
|
|
LFLAGS="$(TARGET_LDFLAGS) -nodefaultlibs -lc -luClibc++ -lc -lusb $(LIBGCC_S)" \
|
|
all
|
|
endef
|
|
|
|
define Package/avrusbboot/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/software/avrusbboot $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,avrusbboot))
|