From a400c8ba26e2488193c2b1119b5513bb6a810ec0 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Sat, 17 May 2014 18:27:49 +0000 Subject: [PATCH] removed alarm/uboot-env --- alarm/uboot-env/PKGBUILD | 39 ------------------------------- alarm/uboot-env/fw_env.config | 14 ----------- alarm/uboot-env/uboot-env.install | 14 ----------- 3 files changed, 67 deletions(-) delete mode 100644 alarm/uboot-env/PKGBUILD delete mode 100644 alarm/uboot-env/fw_env.config delete mode 100644 alarm/uboot-env/uboot-env.install diff --git a/alarm/uboot-env/PKGBUILD b/alarm/uboot-env/PKGBUILD deleted file mode 100644 index d36c584c5..000000000 --- a/alarm/uboot-env/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: Jonny Gerold -# Contributor: Julian Langschaedel - -plugrel=2 - -pkgname=uboot-env -_tool=env -pkgver=2009.11 -pkgrel=4 -pkgdesc="fw_printenv/fw_setenv binaries" -arch=('arm') -license=('GPL' 'LGPL') -backup=(etc/fw_env.config) -install=uboot-env.install -source=(ftp://ftp.denx.de/pub/u-boot/u-boot-$pkgver.tar.bz2 - fw_env.config) -md5sums=('d94700614225f53c853dfe714eb5fa47' - '159f285467e910ba98696b92a311498e') - -build() { - cd $srcdir/u-boot-$pkgver - touch include/config.{h,mk} include/autoconf.mk{.dep,} - - sed -i \ - -e 's:HOST_CFLAGS:HOSTCFLAGS:g' \ - Makefile *.mk tools/Makefile - - sed -i \ - -e '/CFLAGS/s:-O::' \ - tools/Makefile - - make SUBDIRS=tools ${_tool} - - mkdir -p $pkgdir/{etc,usr/bin} - install -Dm755 tools/env/fw_printenv $pkgdir/usr/bin/ - cp $srcdir/fw_env.config $pkgdir/etc - cd $pkgdir/usr/bin - ln -s fw_printenv fw_setenv -} diff --git a/alarm/uboot-env/fw_env.config b/alarm/uboot-env/fw_env.config deleted file mode 100644 index de5011d9a..000000000 --- a/alarm/uboot-env/fw_env.config +++ /dev/null @@ -1,14 +0,0 @@ -# Configuration file for fw_(printenv/saveenv) utility. -# Up to two entries are valid, in this case the redundand -# environment sector is assumed present. -# MTD device name Device offset Env. size Flash sector size -#/dev/mtd2 0x0000 0x20000 0x20000 - -# segate dockstar: -# /dev/mtd0 0xc0000 0x20000 0x20000 - -# iomega iconnect -# /dev/mtd0 0xa0000 0x20000 0x20000 - -# CuBox -# /dev/mtd0 0xc0000 0x10000 0x10000 diff --git a/alarm/uboot-env/uboot-env.install b/alarm/uboot-env/uboot-env.install deleted file mode 100644 index e5e862e1e..000000000 --- a/alarm/uboot-env/uboot-env.install +++ /dev/null @@ -1,14 +0,0 @@ -post_install() { - cat <>> To print u-boot env please use fw_printenv ->> Configuration file located at /etc/fw_env.config -INSTALL -} - -post_upgrade() { - post_install -} - -op=$1 -shift -$op $*