diff options
Diffstat (limited to 'target/linux/ramips/.svn/text-base')
3 files changed, 59 insertions, 0 deletions
diff --git a/target/linux/ramips/.svn/text-base/Makefile.svn-base b/target/linux/ramips/.svn/text-base/Makefile.svn-base new file mode 100644 index 0000000..80cc960 --- /dev/null +++ b/target/linux/ramips/.svn/text-base/Makefile.svn-base @@ -0,0 +1,28 @@ +# +# 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 + +ARCH:=mipsel +BOARD:=ramips +BOARDNAME:=Ralink RT288x/RT3xxx +SUBTARGETS:=rt288x rt305x rt3883 +CFLAGS:=-Os -pipe -fno-caller-saves -mno-branch-likely +FEATURES:=squashfs + +LINUX_VERSION:=3.7.10 + +include $(INCLUDE_DIR)/target.mk +DEFAULT_PACKAGES+=\ + kmod-leds-gpio kmod-input-core kmod-input-polldev \ + kmod-input-gpio-keys-polled kmod-button-hotplug \ + kmod-rt2800-pci wpad-mini swconfig + +define Target/Description + Build firmware images for Ralink RT288x/RT3xxx based boards. +endef + +$(eval $(call BuildTarget)) diff --git a/target/linux/ramips/.svn/text-base/base-files.mk.svn-base b/target/linux/ramips/.svn/text-base/base-files.mk.svn-base new file mode 100644 index 0000000..d6682bd --- /dev/null +++ b/target/linux/ramips/.svn/text-base/base-files.mk.svn-base @@ -0,0 +1,5 @@ +define Package/base-files/install-target + rm -f $(1)/etc/config/network +endef + + diff --git a/target/linux/ramips/.svn/text-base/modules.mk.svn-base b/target/linux/ramips/.svn/text-base/modules.mk.svn-base new file mode 100644 index 0000000..0d29332 --- /dev/null +++ b/target/linux/ramips/.svn/text-base/modules.mk.svn-base @@ -0,0 +1,26 @@ +# +# Copyright (C) 2006-2012 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +define KernelPackage/usb-rt305x-dwc_otg + TITLE:=RT305X USB controller driver + DEPENDS:=@TARGET_ramips_rt305x + KCONFIG:= \ + CONFIG_DWC_OTG \ + CONFIG_DWC_OTG_HOST_ONLY=y \ + CONFIG_DWC_OTG_DEVICE_ONLY=n \ + CONFIG_DWC_OTG_DEBUG=n + FILES:=$(LINUX_DIR)/drivers/usb/dwc_otg/dwc_otg.ko + AUTOLOAD:=$(call AutoLoad,54,dwc_otg,1) + $(call AddDepends/usb) +endef + +define KernelPackage/usb-rt305x-dwc_otg/description + This driver provides USB Device Controller support for the + Synopsys DesignWare USB OTG Core used in the Ralink RT305X SoCs. +endef + +$(eval $(call KernelPackage,usb-rt305x-dwc_otg)) |