Update copyright

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1734 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2007-05-16 13:48:29 +00:00
parent 771e3d3eef
commit 8142b95bf2
13 changed files with 66 additions and 16 deletions

1
README
View File

@ -67,3 +67,4 @@ http://projects.o-hand.com/poky
OE Homepage and wiki
http://openembedded.org
Copyright (C) 2006-2007 OpenedHand Ltd.

View File

@ -98,3 +98,4 @@ MACHINE is mandatory, the others are optional.
This assumes a suitable qemu binary is available with support for a given
machine. For further information see scripts/poky-qemu.README.
Copyright (C) 2006-2007 OpenedHand Ltd.

View File

@ -47,3 +47,5 @@ packages:
libiw29_29-pre20-r0_armv5te.ipk
libiw-dev_29-pre20-r0_armv5te.ipk
Copyright (C) 2006-2007 OpenedHand Ltd.

View File

@ -211,3 +211,4 @@ Certain autoconf test results cannot be determined when cross compiling since it
can't run tests on a live system. This directory therefore contains a list of
cached results for various architectures which is passed to autoconf.
Copyright (C) 2006-2007 OpenedHand Ltd.

View File

@ -2,7 +2,7 @@
# Poky Build Enviroment Setup Script
#
# Copyright (C) 2006 OpenedHand LTD
# Copyright (C) 2006-2007 OpenedHand Ltd.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
if test x"$0" = x"./poky-init-build-env"; then
echo "Error: Run via '. ./poky-init-build-env'"

View File

@ -1,5 +1,24 @@
#!/bin/sh
# Add a partion table to an ext2 image file
#
# Copyright (C) 2006-2007 OpenedHand Ltd.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
IMAGE=$1
IMAGEOUT=$2

View File

@ -2,7 +2,7 @@
# Poky Build Enviroment Setup Script
#
# Copyright (C) 2006 OpenedHand LTD
# Copyright (C) 2006-2007 OpenedHand Ltd.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#if test x"$0" = x"./poky-init-build-env"; then
# echo "Error: Run via '. ./poky-init-build-env'"

View File

@ -2,7 +2,7 @@
# Poky Build Enviroment Setup Script
#
# Copyright (C) 2006 OpenedHand LTD
# Copyright (C) 2006-2007 OpenedHand Ltd.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -17,12 +17,11 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
# Change this to the location of this file.
# Also update the locations at the top of conf/local.conf
#
OEROOT=`pwd`
BBDIR=$OEROOT/bitbake/

View File

@ -1,6 +1,8 @@
#!/bin/sh
# Handle running Poky images standalone with QEMU
#
# Handle running Poky images standalone
# Copyright (C) 2006-2007 OpenedHand Ltd.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
@ -14,7 +16,7 @@
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
if [ "x$1" = "x" ]; then
MYNAME=`basename $0`

View File

@ -1,5 +1,23 @@
#!/bin/sh
# QEMU network interface configuration script
#
# Copyright (C) 2006-2007 OpenedHand Ltd.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
IFCONFIG=`which ifconfig`
if [ "x$IFCONFIG" = "x" ]; then
# better than nothing...

View File

@ -1,7 +1,9 @@
#!/bin/sh
#
# Handle running Poky images under qemu
#
# Copyright (C) 2006-2007 OpenedHand Ltd.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
@ -14,8 +16,8 @@
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
#
# Call setting:
# QEMU_MEMORY (optional) set the amount of memory in the emualted system.
# SERIAL_LOGFILE (optional) log the serial port output to a file

View File

@ -92,3 +92,6 @@ Known Issues
- There is a bug in the ARM qemu in that means occasionally it will use 100%
cpu. You will need to restart it in this situation.
Copyright (C) 2006-2007 OpenedHand Ltd.

View File

@ -1,7 +1,9 @@
#!/bin/sh
#
# Handle Poky <-> QEmu interface voodoo
#
# Copyright (C) 2006-2007 OpenedHand Ltd.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
@ -14,7 +16,7 @@
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
if [ "x$BUILDDIR" = "x" ]; then
echo "You need to source poky-init-build-env before running this script"