From 090fe17a5f8c14a7c674ed8386f7bacc9dd9ab7a Mon Sep 17 00:00:00 2001 From: luka Date: Mon, 4 Jun 2012 21:55:49 +0000 Subject: uboot-envtools: update to 2012.04.01 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32051 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/uboot-envtools/files/ar71xx | 25 ++++++++++++++++++ package/uboot-envtools/files/lantiq | 25 ++++++++++++++++++ package/uboot-envtools/files/uboot-envtools.sh | 36 ++++++++++++++++++++++++++ 3 files changed, 86 insertions(+) create mode 100644 package/uboot-envtools/files/ar71xx create mode 100644 package/uboot-envtools/files/lantiq create mode 100644 package/uboot-envtools/files/uboot-envtools.sh (limited to 'package/uboot-envtools/files') diff --git a/package/uboot-envtools/files/ar71xx b/package/uboot-envtools/files/ar71xx new file mode 100644 index 000000000..15b6b15f9 --- /dev/null +++ b/package/uboot-envtools/files/ar71xx @@ -0,0 +1,25 @@ +#!/bin/sh +# +# Copyright (C) 2011-2012 OpenWrt.org +# + +[ -e /etc/config/ubootenv ] && exit 0 + +touch /etc/config/ubootenv + +. /lib/ar71xx.sh +. /lib/uboot-envtools.sh +. /lib/functions.sh + +board=$(ar71xx_board_name) + +case "$board" in +all0258n) + ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000" + ;; +esac + +config_load ubootenv +config_foreach ubootenv_add_app_config ubootenv + +exit 0 diff --git a/package/uboot-envtools/files/lantiq b/package/uboot-envtools/files/lantiq new file mode 100644 index 000000000..40befc368 --- /dev/null +++ b/package/uboot-envtools/files/lantiq @@ -0,0 +1,25 @@ +#!/bin/sh +# +# Copyright (C) 2012 OpenWrt.org +# + +[ -e /etc/config/ubootenv ] && exit 0 + +touch /etc/config/ubootenv + +. /lib/lantiq.sh +. /lib/uboot-envtools.sh +. /lib/functions.sh + +board=$(lantiq_board_name) + +case "$board" in +GIGASX76X) + ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000" "1" + ;; +esac + +config_load ubootenv +config_foreach ubootenv_add_app_config ubootenv + +exit 0 diff --git a/package/uboot-envtools/files/uboot-envtools.sh b/package/uboot-envtools/files/uboot-envtools.sh new file mode 100644 index 000000000..e21b28367 --- /dev/null +++ b/package/uboot-envtools/files/uboot-envtools.sh @@ -0,0 +1,36 @@ +#!/bin/sh +# +# Copyright (C) 2011-2012 OpenWrt.org +# + +ubootenv_add_uci_config() { + local dev=$1 + local offset=$2 + local envsize=$3 + local secsize=$4 + local numsec=$5 + uci batch <>/etc/fw_env.config +} + -- cgit v1.2.3