Added a new empty livecd file to each archscript. This will be used for an identifie...
authorChris Gianelloni <wolf31o2@gentoo.org>
Thu, 3 Mar 2005 22:36:08 +0000 (22:36 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Thu, 3 Mar 2005 22:36:08 +0000 (22:36 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@554 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
livecd/runscript/alpha-archscript.sh
livecd/runscript/hppa-archscript.sh
livecd/runscript/ppc-archscript.sh
livecd/runscript/sparc-archscript.sh
livecd/runscript/sparc64-archscript.sh
livecd/runscript/x86-archscript.sh

index 7095d752e9064dafe95b62b21af8726999ff2046..66f105f276839ee8c78e98e5261c3ac2032d75cc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,14 @@
 # ChangeLog for gentoo/src/catalyst 
 # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.179 2005/03/03 22:05:05 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.180 2005/03/03 22:36:08 wolf31o2 Exp $
+
+  03 Mar 2005; Chris Gianelloni <wolf31o2@gentoo.org>
+  livecd/runscript/alpha-archscript.sh, livecd/runscript/hppa-archscript.sh,
+  livecd/runscript/ppc-archscript.sh, livecd/runscript/sparc-archscript.sh,
+  livecd/runscript/sparc64-archscript.sh,
+  livecd/runscript/x86-archscript.sh:
+  Added a new empty livecd file to each archscript. This will be used for an
+  identifier by genkernel to allow booting from a non-primary CDROM.
 
   03 Mar 2005; Chris Gianelloni <wolf31o2@gentoo.org> catalyst:
   Catalyst 1.1.6 is here.
index 23691cd0dde16f953ef3bd701217448ad4961799..728fc295e5386b1e0df79ba5a2d62793e700413b 100755 (executable)
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/alpha-archscript.sh,v 1.8 2005/01/29 04:05:46 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/alpha-archscript.sh,v 1.9 2005/03/03 22:36:08 wolf31o2 Exp $
 
 case $1 in
        kernel)
@@ -24,7 +24,8 @@ case $1 in
                cdtar=${clst_livecd_cdtar}
                [ -z "$cdtar" ] && die "Required key livecd/cdtar not specified, exiting"
                tar xjpvf ${cdtar} -C ${clst_cdroot_path} || die "Couldn't extract cdtar ${cdtar}"
-               
+               # Here is where we poke in our identifier
+               touch ${clst_cdroot_path}/livecd
                [ -z "${clst_boot_kernel}" ] && die "Required key boot/kernel not specified, exiting"
                
                # unpack the kernel(s) that were built in kmerge.sh
index 557625c0d783a994c52ed423500534002598fccd..aa0aae7aace572744c5e2e607a75528f79054fc0 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/hppa-archscript.sh,v 1.7 2005/01/28 20:53:39 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/hppa-archscript.sh,v 1.8 2005/03/03 22:36:08 wolf31o2 Exp $
 
 case $1 in
        kernel)
@@ -23,7 +23,8 @@ case $1 in
                cdtar=${clst_livecd_cdtar}
                [ -z "$cdtar" ] && die "Required key livecd/cdtar not specified, exiting"
                tar xjpvf ${cdtar} -C ${clst_cdroot_path} || die "Couldn't extract cdtar ${cdtar}"
-               
+               # Here is where we poke in our identifier
+               touch ${clst_cdroot_path}/livecd
                [ -z "$clst_boot_kernel" ] && die "Required key boot/kernel not specified, exiting"
                
                # install our kernel(s) that were built in kmerge.sh
index 40e9268af82eb95496e874a032034088e06f4792..e01cd4cdc65ca68083df6058c3b1dc3dcbaeca47 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/ppc-archscript.sh,v 1.5 2004/10/15 02:40:00 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/ppc-archscript.sh,v 1.6 2005/03/03 22:36:08 wolf31o2 Exp $
 
 case $1 in
        kernel)
@@ -29,7 +29,8 @@ case $1 in
                cdtar=${clst_livecd_cdtar}
                [ -z "${cdtar}" ] && die "Required key livecd/cdtar not defined, exiting"
                tar xjpvf ${cdtar} -C ${clst_cdroot_path} || die "Couldn't extract cdtar ${cdtar}"
-               
+               # Here is where we poke in our identifier
+               touch ${clst_cdroot_path}/livecd
                [ -z "${clst_boot_kernel}" ] && die "Required key boot/kernel not defined, exiting."
                
                first=""
index e5677010b610b744a33624c003428d18cba45757..7e92593f911108b2b8f1560efe7c5d2975d9c77f 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/sparc-archscript.sh,v 1.8 2005/01/28 20:53:39 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/sparc-archscript.sh,v 1.9 2005/03/03 22:36:08 wolf31o2 Exp $
 
 case $1 in
        kernel)
@@ -21,7 +21,8 @@ case $1 in
                cdtar=${clst_livecd_cdtar}
                [ -z "$cdtar" ] && die "Required key livecd/cdtar not defined, exiting"
                tar xjpvf ${cdtar} -C ${clst_cdroot_path} || die "Couldn't extract cdtar ${cdtar}"
-               
+               # Here is where we poke in our identifier
+               touch ${clst_cdroot_path}/livecd
                [ -z "$clst_boot_kernel" ] && die "Required key boot/kernel not defined, exiting"
                
                # install the kernels built in kmerge.sh
index 3f6816889c045c60f4c3c6378e14c3bfcf5df431..15f1796323ecdfef2ef8e5255a91140a5b46a2d7 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/sparc64-archscript.sh,v 1.10 2005/01/28 20:53:39 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/sparc64-archscript.sh,v 1.11 2005/03/03 22:36:08 wolf31o2 Exp $
 
 case $1 in
        kernel)
@@ -21,7 +21,8 @@ case $1 in
                cdtar=${clst_livecd_cdtar}
                [ -z "$cdtar" ] && die "Required key livecd/cdtar not defined, exiting"
                tar xjpvf ${cdtar} -C ${clst_cdroot_path} || die "Couldn't extract cdtar ${cdtar}"
-               
+               # Here is where we poke in our identifier
+               touch ${clst_cdroot_path}/livecd
                [ -z "$clst_boot_kernel" ] && die "Required key boot/kernel not defined, exiting"
                
                # install the kernels built in kmerge.sh
index f418923254021532e4db952c521da48efa19e3f5..65fe8a7301c799a57b7eb04c7067222ef1c00273 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/x86-archscript.sh,v 1.22 2005/01/29 14:33:01 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript/Attic/x86-archscript.sh,v 1.23 2005/03/03 22:36:08 wolf31o2 Exp $
 
 case $1 in
        kernel)
@@ -23,7 +23,8 @@ case $1 in
                cdtar=${clst_livecd_cdtar}
                [ -z "${cdtar}" ] && die "Required key livecd/cdtar not defined, exiting"
                tar xjpvf ${cdtar} -C ${clst_cdroot_path} || die "Couldn't extract cdtar ${cdtar}"
-               
+               # Here is where we poke in our identifier
+               touch ${clst_cdroot_path}/livecd
                [ -z "${clst_boot_kernel}" ] && die "Required key boot/kernel not defined, exiting."
                
                first=""