diff options
author | ceros7 <ceros7@svn> | 2010-05-16 07:12:59 +0000 |
---|---|---|
committer | ceros7 <ceros7@svn> | 2010-05-16 07:12:59 +0000 |
commit | 77bb5ab5414e4280204da42e66e6318204a1fce8 (patch) | |
tree | b1af763cf49acbf83f9686ef6aec3d463a5aa1ef /tools/XBMCLive | |
parent | 5610cd8c53075afe05ebfdc40c7feeedeba238b7 (diff) |
Add copyright headers to shell scripts also.
Was originally leaving the headers out since some scripts were essentially
one-liners. Yet there are some script with copyright headers, so for consistency
I decided to place headers on all shell scripts, regardless of how simple the
scripts may be.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@30219 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'tools/XBMCLive')
6 files changed, 109 insertions, 0 deletions
diff --git a/tools/XBMCLive/SDK_Pre-9.11/BootCD/make-iso.sh b/tools/XBMCLive/SDK_Pre-9.11/BootCD/make-iso.sh index f11febb49a..48abbb780a 100755 --- a/tools/XBMCLive/SDK_Pre-9.11/BootCD/make-iso.sh +++ b/tools/XBMCLive/SDK_Pre-9.11/BootCD/make-iso.sh @@ -1,5 +1,23 @@ #!/bin/sh +# Copyright (C) 2009-2010 Team XBMC +# http://www.xbmc.org +# +# 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, 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 XBMC; see the file COPYING. If not, write to +# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +# http://www.gnu.org/copyleft/gpl.html + # NAME: make-iso.sh # Creates an iso9660 image with rockridge extensions from the contents diff --git a/tools/XBMCLive/SDK_Pre-9.11/BootCD/updateFiles.sh b/tools/XBMCLive/SDK_Pre-9.11/BootCD/updateFiles.sh index 8a5045e905..2ce6bb3279 100755 --- a/tools/XBMCLive/SDK_Pre-9.11/BootCD/updateFiles.sh +++ b/tools/XBMCLive/SDK_Pre-9.11/BootCD/updateFiles.sh @@ -1,3 +1,21 @@ +# Copyright (C) 2009-2010 Team XBMC +# http://www.xbmc.org +# +# 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, 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 XBMC; see the file COPYING. If not, write to +# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +# http://www.gnu.org/copyleft/gpl.html + sudo mount -o loop $1 Image cp Image/rootfs.img Image/vmlinuz Image/initrd0.img cdimage sudo umount Image diff --git a/tools/XBMCLive/SDK_Pre-9.11/Creator/enterChroot.sh b/tools/XBMCLive/SDK_Pre-9.11/Creator/enterChroot.sh index c712e43d21..ed3e18c31f 100755 --- a/tools/XBMCLive/SDK_Pre-9.11/Creator/enterChroot.sh +++ b/tools/XBMCLive/SDK_Pre-9.11/Creator/enterChroot.sh @@ -1,3 +1,21 @@ #!/bin/bash +# Copyright (C) 2009-2010 Team XBMC +# http://www.xbmc.org +# +# 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, 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 XBMC; see the file COPYING. If not, write to +# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +# http://www.gnu.org/copyleft/gpl.html + sudo image-creator --command=chroot-target --project-name=Intrepid --target-name=XBMCLive diff --git a/tools/XBMCLive/SDK_Pre-9.11/Creator/mkUSBImage.sh b/tools/XBMCLive/SDK_Pre-9.11/Creator/mkUSBImage.sh index fc2053d409..c891670ddb 100755 --- a/tools/XBMCLive/SDK_Pre-9.11/Creator/mkUSBImage.sh +++ b/tools/XBMCLive/SDK_Pre-9.11/Creator/mkUSBImage.sh @@ -1,4 +1,22 @@ #!/bin/bash +# Copyright (C) 2009-2010 Team XBMC +# http://www.xbmc.org +# +# 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, 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 XBMC; see the file COPYING. If not, write to +# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +# http://www.gnu.org/copyleft/gpl.html + sudo image-creator --command=create-live-usb --project-name=Intrepid --target-name=XBMCLive --image-name=XBMCLive.img diff --git a/tools/XBMCLive/SDK_Pre-9.11/Creator/platforms/i386-jaunty-xbmc/install.sh b/tools/XBMCLive/SDK_Pre-9.11/Creator/platforms/i386-jaunty-xbmc/install.sh index 949835595c..fe00ea05d2 100755 --- a/tools/XBMCLive/SDK_Pre-9.11/Creator/platforms/i386-jaunty-xbmc/install.sh +++ b/tools/XBMCLive/SDK_Pre-9.11/Creator/platforms/i386-jaunty-xbmc/install.sh @@ -1,5 +1,23 @@ #!/bin/bash +# Copyright (C) 2009-2010 Team XBMC +# http://www.xbmc.org +# +# 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, 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 XBMC; see the file COPYING. If not, write to +# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +# http://www.gnu.org/copyleft/gpl.html + # This is the script that will be placed onto the USB flash drive, that will # run on bootup to install the software onto the device. diff --git a/tools/XBMCLive/SDK_Pre-9.11/Creator/platforms/i386-jaunty-xbmc/nand.sh b/tools/XBMCLive/SDK_Pre-9.11/Creator/platforms/i386-jaunty-xbmc/nand.sh index 6e941794f6..cba9ea03bc 100755 --- a/tools/XBMCLive/SDK_Pre-9.11/Creator/platforms/i386-jaunty-xbmc/nand.sh +++ b/tools/XBMCLive/SDK_Pre-9.11/Creator/platforms/i386-jaunty-xbmc/nand.sh @@ -1,4 +1,23 @@ #!/bin/bash + +# Copyright (C) 2009-2010 Team XBMC +# http://www.xbmc.org +# +# 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, 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 XBMC; see the file COPYING. If not, write to +# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +# http://www.gnu.org/copyleft/gpl.html + # $1 is cmdline path # $2 is bootstub path # $3 is bzImage path |