Remove evil hacks that copy gk files around for netboot2
authorAndrew Gaffney <agaffney@gentoo.org>
Sun, 7 Dec 2008 04:01:50 +0000 (22:01 -0600)
committerAndrew Gaffney <agaffney@gentoo.org>
Sun, 7 Dec 2008 04:01:50 +0000 (22:01 -0600)
ChangeLog
targets/support/pre-kmerge.sh

index b0ead2d0d15bf54c4d85bdac78d652247710de62..fc72d31dbf27faa30b28f4506d827eeba0c65184 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,10 @@
 # Copyright 2002-2008 Gentoo Foundation; 2008 Chris Gianelloni, Andrew Gaffney
 # Distributed under the GPL v2
 
+  07 Dec 2008; Andrew Gaffney <agaffney@gentoo.org>
+  targets/support/pre-kmerge.sh:
+  Remove evil hacks that copy gk files around for netboot2
+
   04 Dec 2008; Chris Gianelloni <wolf31o2@wolf31o2.org> catalyst:
   Bumping version for release.
 
index cd23eda7738d8c4ad4fe1a53921dd9140e4c42d0..c2ea2dd512d890fbab3e049f03834327dda21fa3 100644 (file)
@@ -4,22 +4,3 @@ source /tmp/chroot-functions.sh
 
 run_merge --oneshot genkernel
 install -d /tmp/kerncache
-
-case ${clst_target} in
-       netboot2)
-               # Set the netboot builddate/hostname in linuxrc and copy to proper arch
-               # directory in genkernel
-               sed -e "s/@@MYDATE@@/$(date '+%Y%m%d')/g" \
-                   -e "s/@@RELVER@@/${clst_version_stamp}/g" \
-                       /usr/share/genkernel/netboot/linuxrc.x \
-                       > /usr/share/genkernel/${clst_hostarch}/linuxrc
-
-               echo ">>> Copying support files to ${clst_root_path} ..."
-               cp -pPRf /usr/share/genkernel/netboot/misc/* \
-                       ${clst_merge_path}
-
-               echo ">>> Copying busybox config ..."
-               cp -f /tmp/busy-config \
-                       /usr/share/genkernel/${clst_hostarch}/busy-config
-       ;;
-esac