mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-28 14:08:30 +02:00
add-u-boot.patch
This commit is contained in:
parent
73d02002b3
commit
5a7d04b885
13
target/linux/xburst/image/Config.in
Normal file
13
target/linux/xburst/image/Config.in
Normal file
@ -0,0 +1,13 @@
|
||||
config XBURST_UBOOT
|
||||
bool "Build U-Boot bootloader"
|
||||
depends TARGET_xburst
|
||||
default n
|
||||
|
||||
config XBURST_UBOOT_TARGET
|
||||
string "U-Boot target board"
|
||||
depends TARGET_xburst
|
||||
depends XBURST_UBOOT
|
||||
default ""
|
||||
help
|
||||
For all supported boards there are ready-to-use default
|
||||
configurations available; just type "<board_name>".
|
35
target/linux/xburst/image/u-boot/Makefile
Normal file
35
target/linux/xburst/image/u-boot/Makefile
Normal file
@ -0,0 +1,35 @@
|
||||
#
|
||||
# Copyright (C) 2009 Qi hardware inc.,
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v3.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
include $(INCLUDE_DIR)/kernel.mk
|
||||
|
||||
PKG_NAME:=u-boot
|
||||
PKG_VERSION:=2009.06
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_BUILD_DIR:=$(KDIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot
|
||||
PKG_MD5SUM:=
|
||||
PKG_CAT:=bzcat
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
UBOOT_CONFIG=$(strip $(subst ",, $(CONFIG_XBURST_UBOOT_TARGET)))
|
||||
|
||||
define Build/Compile
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) $(UBOOT_CONFIG)_config
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) CROSS_COMPILE=$(TARGET_CROSS)
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
mkdir -p $(BIN_DIR)
|
||||
dd if=$(PKG_BUILD_DIR)/u-boot-nand.bin of=$(BIN_DIR)/u-boot-$(UBOOT_CONFIG).bin bs=64k conv=sync
|
||||
endef
|
||||
|
||||
$(eval $(call Build/DefaultTargets))
|
71717
target/linux/xburst/image/u-boot/patches/0001-add-qi_lb60-support.patch
Normal file
71717
target/linux/xburst/image/u-boot/patches/0001-add-qi_lb60-support.patch
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user