Hello.

Raster had soem of his OE scripts in the repo from some years back.
They rae totally outdated and I would wonder if they actually would
still work.

On the other Hand we have really decent EFL and E17 support in OE
upstream already. I would think we can just delete this stuff from
here. The first patches reomves the oe folder under TMP and the second
one kills a OE recipe in our tree.

regards
Stefan Schmidt
>From 5f7242089a6cf2646ac9e7e34c93c3edd5599c2e Mon Sep 17 00:00:00 2001
From: Stefan Schmidt <ste...@datenfreihafen.org>
Date: Sat, 28 Apr 2012 22:19:34 +0100
Subject: [PATCH 4/5] TMP/OE: Remove rasters private OE stuff.

Totally outdated and no longer usable. We have pretty decent EFL and E17 support
in upstream OE so remove raster's private stuff. I'm pretty sure he does not use
this any longer.

Signed-off-by: Stefan Schmidt <ste...@datenfreihafen.org>
---
 TMP/oe/README                       |   20 -----
 TMP/oe/local.conf                   |  160 -----------------------------------
 TMP/oe/oe-build-illume.sh           |    3 -
 TMP/oe/oe-clean-all.sh              |    4 -
 TMP/oe/oe-clean.sh                  |    2 -
 TMP/oe/oe-flash-gta02.sh            |   17 ----
 TMP/oe/oe-install.sh                |   75 ----------------
 TMP/oe/oe-patches.sh                |   14 ---
 TMP/oe/oe-ssh.sh                    |   10 ---
 TMP/oe/scripts/enable-ip-forward.sh |    2 -
 TMP/oe/scripts/mmap-0-fix.sh        |    2 -
 TMP/oe/setup-env                    |   10 ---
 12 files changed, 319 deletions(-)
 delete mode 100644 TMP/oe/README
 delete mode 100644 TMP/oe/local.conf
 delete mode 100755 TMP/oe/oe-build-illume.sh
 delete mode 100755 TMP/oe/oe-clean-all.sh
 delete mode 100755 TMP/oe/oe-clean.sh
 delete mode 100755 TMP/oe/oe-flash-gta02.sh
 delete mode 100755 TMP/oe/oe-install.sh
 delete mode 100755 TMP/oe/oe-patches.sh
 delete mode 100755 TMP/oe/oe-ssh.sh
 delete mode 100755 TMP/oe/scripts/enable-ip-forward.sh
 delete mode 100755 TMP/oe/scripts/mmap-0-fix.sh
 delete mode 100644 TMP/oe/setup-env

diff --git a/TMP/oe/README b/TMP/oe/README
deleted file mode 100644
index e507ebe..0000000
--- a/TMP/oe/README
+++ /dev/null
@@ -1,20 +0,0 @@
-This is a setup of my Openembedded Development environment for building whole
-system images for embedded devices. to begin, please run:
-
-How do you get this tree?
-
-  cd ~/
-  svn co http://svn.enlightenment.org/svn/e/trunk/TMP/oe
-
-Now what?
-  
-  ./oe-install.sh
-
-Then I want my images and packages. Now what do i do?
-
-  ./oe-build-illume.sh
-
-Images and packages will be in tmp.*/deploy/glibc/ and al sources in sources/
-To reflash a Freerunner try:
-
-  ./oe-flash-gta02.sh
diff --git a/TMP/oe/local.conf b/TMP/oe/local.conf
deleted file mode 100644
index a325f5e..0000000
--- a/TMP/oe/local.conf
+++ /dev/null
@@ -1,160 +0,0 @@
-#
-# OpenEmbedded local configuration file (sample)
-#
-# Please visit the Wiki at http://openembedded.org/ for more info.
-#
-#
-# Be SURE to read this file in its entirety and the GettingStarted page on the
-# wiki before proceeding.
-#
-# Once you have done that, remove the line at the end of this
-# file and build away.
-# 
-# WARNING: lines starting with a space (' ') will result in parse failures.
-# Remove '# ' from commented lines to activate them.
-#
-# NOTE: Do NOT use $HOME in your paths, BitBake does NOT expand ~ for you.  If you
-# must have paths relative to your homedir use ${HOME} (note the {}'s there
-# you MUST have them for the variable expansion to be done by BitBake).  Your
-# paths should all be absolute paths (They should all start with a / after
-# expansion.  Stuff like starting with ${HOME} or ${TOPDIR} is ok).
-
-# Use this to specify where BitBake should place the downloaded sources into
-DL_DIR = "${OMDIR}/sources"
-
-# Delete the line below. Then specify which .bb files to consider for
-# your build. Typically this will be something like BBFILES = "/path/to/openembedded/packages/*/*.bb"
-BBFILES := "${OMDIR}/org.openembedded.dev/recipes/*/*.bb"
-
-# Use the BBMASK below to instruct BitBake to _NOT_ consider some .bb files
-# This is a regulary expression, so be sure to get your parenthesis balanced.
-BBMASK = ""
-
-# Uncomment this if you want to use a prebuilt toolchain. You will need to
-# provide packages for toolchain and additional libraries yourself. You also
-# have to set PATH in your environment to make sure BitBake finds additional binaries.
-# ASSUME_PROVIDED += "virtual/${TARGET_PREFIX}gcc virtual/libc"
-
-# Uncomment this if you're building for an arch that uses emulated locale 
-# generation under qemu (mainly arm glibc) and have an external gcc 3.x compiler
-# that OE recognises. This will mean the gcc-native build is skipped, speeding 
-# builds up.
-# ASSUME_PROVIDED += "gcc3-native"
-
-# Select between multiple alternative providers, if more than one is eligible.
-PREFERRED_PROVIDERS = "virtual/qte:qte virtual/libqpe:libqpe-opie"
-PREFERRED_PROVIDERS += " virtual/libsdl:libsdl-x11"
-PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial"
-PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-intermediate:gcc-cross-intermediate"
-PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc:gcc-cross"
-PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross"
-
-# So far, angstrom.conf sets ENABLE_BINARY_LOCALE_GENERATION
-# to generate binary locale packages at build time using qemu-native and
-# thereby guarantee i18n support on all devices. If your build breaks on 
-# qemu-native consider disabling ENABLE_BINARY_LOCALE_GENERATION (note that
-# this breaks i18n on devices with less than 128MB RAM) or installing
-# a working third-party qemu (e.g. provided by your distribution) and
-# adding qemu-native to ASSUME_PROVIDED. Caveat emptor, since third-party
-# qemus lack patches needed to work with various OE targets.
-# ENABLE_BINARY_LOCALE_GENERATION = "0"
-# ASSUME_PROVIDED += "qemu-native"
-
-# If ENABLE_BINARY_LOCALE_GENERATION is set to "1", you can limit locales
-# generated to the list provided by GLIBC_GENERATE_LOCALES. This is huge
-# time-savior for developmental builds. Format: list of locale.encoding pairs
-# with spaces as separators.
-# GLIBC_GENERATE_LOCALES = "en_GB.UTF-8 de_DE.UTF-8"
-
-# Uncomment one of these to build packages during the build process.
-# This is done automatically if you set DISTRO (see above)
-# INHERIT = "package_ipk"
-# INHERIT = "package_tar"
-
-# Add the required image file system types below. Valid are 
-# jffs2, tar(.gz|bz2), cpio(.gz), cramfs, ext2(.gz), ext3(.gz)
-# squashfs, squashfs-lzma
-#IMAGE_FSTYPES = "jffs2 tar ext2 ext3"
-IMAGE_FSTYPES = "jffs2 tar ext3"
-
-# Uncomment this to disable the parse cache (not recommended).
-# CACHE = ""
-
-# Uncomment this if you want BitBake to emit debugging output
-# BBDEBUG = "yes"
-
-# Uncomment these two if you want BitBake to build images useful for debugging. 
-# Note that INHIBIT_PACKAGE_STRIP needs a package format to be defined.
-# Also note that OE now produces -dbg packages which contain debugging symbols.
-# DEBUG_BUILD = "1"
-# INHIBIT_PACKAGE_STRIP = "1"
-
-# Uncomment these to build a package such that you can use gprof to profile it.
-# NOTE: This will only work with 'linux' targets, not
-# 'linux-uclibc', as uClibc doesn't provide the necessary
-# object files.  Also, don't build glibc itself with these
-# flags, or it'll fail to build.
-#
-# PROFILE_OPTIMIZATION = "-pg"
-# SELECTED_OPTIMIZATION = "${PROFILE_OPTIMIZATION}"
-# LDFLAGS =+ "-pg"
-
-# Uncomment this if you want BitBake to emit the log if a build fails.
-BBINCLUDELOGS = "yes"
-
-# Specifies a location to search for pre-generated tarballs when fetching
-# a cvs:// URI. Outcomment this, if you always want to pull directly from CVS.
-#CVS_TARBALL_STASH = ""
-
-
-##############################################################################
-####
-#### MY CONFIG
-####
-##############################################################################
-
-#### DEFINE DISTRO (see org.openembedded.dev/conf/distro)
-#### DEFINE TARGET MACHINE (see org.openembedded.dev/conf/machine for list)
-
-# Beagleboard (OMAP3530)
-DISTRO = "angstrom-2008.1"
-MACHINE = "beagleboard"
-
-# Overo (OMAP3503)
-#DISTRO = "angstrom-2008.1"
-#MACHINE = "overo"
-
-# Palm Treo 650
-#DISTRO = "angstrom-2008.1"
-#MACHINE = "palmt650"
-
-# Openmoko Freerunner
-##DISTRO = "openmoko"
-#DISTRO = "angstrom-2008.1"
-#MACHINE = "om-gta02"
-
-# Nokia N-800
-##DISTRO = "openmoko"
-#DISTRO = "angstrom-2008.1"
-#MACHINE = "nokia800"
-
-# Motorola ROKR E6
-#DISTRO = "angstrom-2008.1"
-#MACHINE = "rokre6"
-
-# Zaurus SL-C860 (barely boots on mine)
-#DISTRO = "angstrom-2008.1"
-#MACHINE = "c7x0"
-
-BUILD_ARCH = "i686"
-INHERIT += "rm_work"
-IMAGE_ROOTFS_SIZE_ext2 = "409600"
-IMAGE_ROOTFS_SIZE_ext3 = "409600"
-
-#### If you see git-fetch bugs...
-#BB_GIT_CLONE_FOR_SRCREV = "1"
-#### PARALLEL BUILDS (sometimes break some software so disable)
-#BB_NUMBER_THREADS = "4"
-#PARALLEL_MAKE = "-j 2"
-
-TMPDIR = "${OMDIR}/t-${MACHINE}.${DISTRO}"
diff --git a/TMP/oe/oe-build-illume.sh b/TMP/oe/oe-build-illume.sh
deleted file mode 100755
index 785951e..0000000
--- a/TMP/oe/oe-build-illume.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-. ./setup-env
-bitbake illume-image
diff --git a/TMP/oe/oe-clean-all.sh b/TMP/oe/oe-clean-all.sh
deleted file mode 100755
index 1cc43e0..0000000
--- a/TMP/oe/oe-clean-all.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-rm -rf \
-tmp.* org.openembedded.dev bitbake build packages sources patches-applied *~ \
-sane-srcrevs.inc sane-srcdates.inc
diff --git a/TMP/oe/oe-clean.sh b/TMP/oe/oe-clean.sh
deleted file mode 100755
index 04261aa..0000000
--- a/TMP/oe/oe-clean.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-rm -rf tmp.*
diff --git a/TMP/oe/oe-flash-gta02.sh b/TMP/oe/oe-flash-gta02.sh
deleted file mode 100755
index 09929b3..0000000
--- a/TMP/oe/oe-flash-gta02.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-#DISTRO="openmoko"
-DISTRO="angstrom"
-MACHINE="om-gta02"
-# 2.6.28 - bug bug bugs! panic!
-KERNEL="./t-$MACHINE.$DISTRO/deploy/glibc/images/om-gta02/uImage-om-gta02-latest.bin"
-ROOTFS=`find ./t-$MACHINE.$DISTRO/deploy/glibc/images -name "*.jffs2" | sort | tail -1`
-
-echo "KERNEL: $KERNEL"
-echo "ROOTFS: $ROOTFS"
-
-sleep 5
-
-DFU="./t-$MACHINE.$DISTRO/deploy/glibc/tools/dfu-util"
-
-sudo $DFU -d 1d50:5119 -a kernel -D $KERNEL
-sudo $DFU -d 1d50:5119 -a rootfs -D $ROOTFS
diff --git a/TMP/oe/oe-install.sh b/TMP/oe/oe-install.sh
deleted file mode 100755
index dea8e8f..0000000
--- a/TMP/oe/oe-install.sh
+++ /dev/null
@@ -1,75 +0,0 @@
-#!/bin/sh -e
-
-if test -d bitbake; then
-  cd bitbake
-  svn update || true
-  cd ..
-else
-  svn co svn://svn.berlios.de/bitbake/branches/bitbake-1.8/ bitbake
-fi
-if test ! -d build/conf; then
-  mkdir -p build/conf
-fi
-if test -d org.openembedded.dev; then
-  cd org.openembedded.dev
-  git-fetch || true
-  git-rebase origin || true
-  cd ..
-else
-  git clone git://git.openembedded.net/openembedded org.openembedded.dev
-  cd org.openembedded.dev
-  git-checkout -b $USER
-  cd ..
-fi
-if test ! -e build/conf/local.conf; then
-  ln -sf ../../local.conf                                           build/conf/local.conf
-fi
-if test ! -e packages; then
-  ln -sf org.openembedded.dev/packages                              packages
-fi
-if test ! -e sane-srcrevs.inc; then
-  ln -sf org.openembedded.dev/conf/distro/include/sane-srcrevs.inc  sane-srcrevs.inc
-fi
-if test ! -e sane-srcdates.inc; then
-  ln -sf org.openembedded.dev/conf/distro/include/sane-srcdates.inc sane-srcdates.inc
-fi
-if test ! -e org.openembedded.dev/packages/my_packages; then
-  ln -sf ../../my_packages                                          org.openembedded.dev/packages/my_packages
-fi
-./oe-patches.sh || true
-
-echo "========="
-echo "Please edit local.conf to specify your build paramaters and target"
-echo "Put any custom packages .bb files in my_packages"
-echo "Before you do any building do:"
-echo "  source ./setup-env"
-echo
-echo "Then for example:"
-echo "  bitbake illume-image"
-echo
-echo "To update git:"
-echo "  git-fetch; git-rebase origin"
-echo
-echo "To commit any changes you have made to local git:"
-echo "  git-commit -a"
-echo
-echo "To generate a patch set from your local commits:"
-echo "  git-format-patch origin"
-echo
-echo "To modify SVN revision #'s used for packages or CVS dates edit"
-echo "sane-srcrevs.inc or sane-srcdates.inc"
-echo "Output image swill go into tmp.*/deploy/glibc/images/"
-echo "Output packages files will go into tmp.*/deploy/glibc/ipk/"
-echo "Input packages .bb files from OE will be in packages/"
-echo "Any of your own packages put in my_packages"
-
-exit 0
-
-## NO not this
-## git-push origin origin/raster
-## to rebase
-# git-pull --rebase
-# git-push
-
-## NO
-# git push origin raster --force
diff --git a/TMP/oe/oe-patches.sh b/TMP/oe/oe-patches.sh
deleted file mode 100755
index c66ba7f..0000000
--- a/TMP/oe/oe-patches.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh -e
-mkdir -p patches-applied || true
-cd org.openembedded.dev
-for I in `/bin/ls ../patches | sort`; do
-  if test -f "../patches-applied/$I"; then
-    echo "SKIP: $I"
-  else
-    echo "PATCH: $I"
-    git-apply "../patches/$I" || true
-#    patch -p1 -t < "../patches/$I" || true
-    touch "../patches-applied/$I"
-  fi
-done
-cd ..
diff --git a/TMP/oe/oe-ssh.sh b/TMP/oe/oe-ssh.sh
deleted file mode 100755
index db0aa5d..0000000
--- a/TMP/oe/oe-ssh.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-sudo ifconfig usb1 down
-sudo ifconfig usb2 down
-sudo ifconfig usb0 up
-sudo ifconfig usb0 192.168.0.200 netmask 255.255.255.0
-sudo route add 192.168.0.202 dev usb0
-sudo ./scripts/enable-ip-forward.sh
-sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
-sudo iptables -L
-ssh root@192.168.0.202
diff --git a/TMP/oe/scripts/enable-ip-forward.sh b/TMP/oe/scripts/enable-ip-forward.sh
deleted file mode 100755
index 094abec..0000000
--- a/TMP/oe/scripts/enable-ip-forward.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-echo "1" > /proc/sys/net/ipv4/ip_forward
diff --git a/TMP/oe/scripts/mmap-0-fix.sh b/TMP/oe/scripts/mmap-0-fix.sh
deleted file mode 100755
index 7965aae..0000000
--- a/TMP/oe/scripts/mmap-0-fix.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-echo 0 > /proc/sys/vm/mmap_min_addr
diff --git a/TMP/oe/setup-env b/TMP/oe/setup-env
deleted file mode 100644
index 49163c9..0000000
--- a/TMP/oe/setup-env
+++ /dev/null
@@ -1,10 +0,0 @@
-unset MAKEFLAGS CC CFLAGS PKG_CONFIG_PATH LD_LIBRARY_PATH LANG LANGUAGE
-unset LC_ALL LC_MESSAGES QUIET
-unalias make
-sudo ./scripts/mmap-0-fix.sh
-# make oe not wipe OMDIR - this may not be the best solution
-export BB_PRESERVE_ENV=true
-export OMDIR=`readlink -f $PWD`
-export BBPATH="${OMDIR}/build:${OMDIR}/org.openembedded.dev"
-export PYTHONPATH="${OMDIR}/bitbake/libbitbake"
-export PATH="${OMDIR}/bitbake/bin:${PATH}"
-- 
1.7.10

>From e2c29ff2b92835a75775f836f3e374f780f7ab02 Mon Sep 17 00:00:00 2001
From: Stefan Schmidt <ste...@datenfreihafen.org>
Date: Sat, 28 Apr 2012 22:17:24 +0100
Subject: [PATCH 5/5] expedite/expedite.oe: Remove last piece of private OE
 recipes

Signed-off-by: Stefan Schmidt <ste...@datenfreihafen.org>
---
 expedite/expedite.oe |   21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 expedite/expedite.oe

diff --git a/expedite/expedite.oe b/expedite/expedite.oe
deleted file mode 100644
index acae6e6..0000000
--- a/expedite/expedite.oe
+++ /dev/null
@@ -1,21 +0,0 @@
-DESCRIPTION = "Expedite Evas benchmark/test suite"
-HOMEPAGE = "http://www.enlightenment.org";
-MAINTAINER = "Carsten Haitzler (Rasterman) <ras...@rasterman.com>"
-SECTION = "e/test"
-PRIORITY = "optional"
-DEPENDS = "evas"
-PV = "0.7.0"
-PR = "1"
-
-do_prepsources () {
-  make clean distclean || true
-}
-addtask prepsources after do_fetch before do_unpack
-SRC_URI = "file://./"
-S = "${WORKDIR}/expedite"
-
-inherit autotools pkgconfig binconfig
-
-EXTRA_OECONF = ""
-
-FILES_${PN} = "${bindir}/* ${datadir}"
-- 
1.7.10

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to