Moving files from generic to defaults, since they are the defaults used globally.
authorChris Gianelloni <wolf31o2@gentoo.org>
Mon, 28 Jul 2008 22:05:51 +0000 (15:05 -0700)
committerChris Gianelloni <wolf31o2@gentoo.org>
Mon, 28 Jul 2008 22:05:51 +0000 (15:05 -0700)
ChangeLog
defaults/initrd.defaults [moved from generic/initrd.defaults with 100% similarity]
defaults/initrd.scripts [moved from generic/initrd.scripts with 100% similarity]
defaults/keymaps.tar.gz [moved from generic/keymaps.tar.gz with 100% similarity]
defaults/linuxrc [moved from generic/linuxrc with 100% similarity]
defaults/modprobe [moved from generic/modprobe with 100% similarity]
defaults/udhcpc.scripts [moved from generic/udhcpc.scripts with 100% similarity]
gen_initramfs.sh

index cecac3caebcc7901603ee36856acc89e9bdcc3e7..229bea35b83b786601bd024213b58c76f4bc2f59 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,15 @@
 # Copyright 1999-2008 Gentoo Foundation; 2008 Chris Gianelloni
 # Distributed under the GPL v2
 
+  28 Jul 2008; Chris Gianelloni <wolf31o2@wolf31o2.org> TODO,
+  +defaults/initrd.defaults, +defaults/initrd.scripts,
+  +defaults/keymaps.tar.gz, +defaults/linuxrc, +defaults/modprobe,
+  +defaults/udhcpc.scripts, gen_initramfs.sh, -generic/initrd.defaults,
+  -generic/initrd.scripts, -generic/keymaps.tar.gz, -generic/linuxrc,
+  -generic/modprobe, -generic/udhcpc.scripts:
+  Moving files from generic to defaults, since they are the defaults used
+  globally.
+
   28 Jul 2008; Chris Gianelloni <wolf31o2@wolf31o2.org> TODO, +modules/README:
   Added the modules directory, which will be used to store the built-in
   modules and also for external entities to add their own modules and hooks.
similarity index 100%
rename from generic/linuxrc
rename to defaults/linuxrc
similarity index 100%
rename from generic/modprobe
rename to defaults/modprobe
index 23afc63fb3a45a4e1f501d1e813cd871fafc43ac..08e913ba310e37d56c58f8b33c053c56c31e069a 100644 (file)
@@ -40,7 +40,7 @@ append_busybox() {
        fi
        mkdir -p "${TEMP}/initramfs-busybox-temp/bin/" 
 
-       cp "${GK_SHARE}/generic/udhcpc.scripts" ${TEMP}/initramfs-busybox-temp/bin/
+       cp "${GK_SHARE}/defaults/udhcpc.scripts" ${TEMP}/initramfs-busybox-temp/bin/
        chmod +x "${TEMP}/initramfs-busybox-temp/bin/udhcpc.scripts"
        tar -xjf "${BUSYBOX_BINCACHE}" -C "${TEMP}/initramfs-busybox-temp/bin" busybox ||
                gen_die 'Could not extract busybox bincache!'
@@ -351,11 +351,11 @@ append_auxilary() {
                cp "${CMD_LINUXRC}" "${TEMP}/initramfs-aux-temp/init"
                print_info 2 "        >> Copying user specified linuxrc: ${CMD_LINUXRC} to init"
        else    
-               if [ -f "${GK_SHARE}/${ARCH}/linuxrc" ]
+               if [ -f "${GK_SHARE}/arch/${ARCH}/linuxrc" ]
                then
-                       cp "${GK_SHARE}/${ARCH}/linuxrc" "${TEMP}/initramfs-aux-temp/init"
+                       cp "${GK_SHARE}/arch/${ARCH}/linuxrc" "${TEMP}/initramfs-aux-temp/init"
                else
-                       cp "${GK_SHARE}/generic/linuxrc" "${TEMP}/initramfs-aux-temp/init"
+                       cp "${GK_SHARE}/defaults/linuxrc" "${TEMP}/initramfs-aux-temp/init"
                fi
        fi
 
@@ -368,18 +368,18 @@ append_auxilary() {
        ln -s init linuxrc
 #      ln ${TEMP}/initramfs-aux-temp/init ${TEMP}/initramfs-aux-temp/linuxrc 
 
-       if [ -f "${GK_SHARE}/${ARCH}/initrd.scripts" ]
+       if [ -f "${GK_SHARE}/arch/${ARCH}/initrd.scripts" ]
        then
-               cp "${GK_SHARE}/${ARCH}/initrd.scripts" "${TEMP}/initramfs-aux-temp/etc/initrd.scripts"
+               cp "${GK_SHARE}/arch/${ARCH}/initrd.scripts" "${TEMP}/initramfs-aux-temp/etc/initrd.scripts"
        else    
-               cp "${GK_SHARE}/generic/initrd.scripts" "${TEMP}/initramfs-aux-temp/etc/initrd.scripts"
+               cp "${GK_SHARE}/defaults/initrd.scripts" "${TEMP}/initramfs-aux-temp/etc/initrd.scripts"
        fi
 
-       if [ -f "${GK_SHARE}/${ARCH}/initrd.defaults" ]
+       if [ -f "${GK_SHARE}/arch/${ARCH}/initrd.defaults" ]
        then
-               cp "${GK_SHARE}/${ARCH}/initrd.defaults" "${TEMP}/initramfs-aux-temp/etc/initrd.defaults"
+               cp "${GK_SHARE}/arch/${ARCH}/initrd.defaults" "${TEMP}/initramfs-aux-temp/etc/initrd.defaults"
        else
-               cp "${GK_SHARE}/generic/initrd.defaults" "${TEMP}/initramfs-aux-temp/etc/initrd.defaults"
+               cp "${GK_SHARE}/defaults/initrd.defaults" "${TEMP}/initramfs-aux-temp/etc/initrd.defaults"
        fi
        
        echo -n 'HWOPTS="$HWOPTS ' >> "${TEMP}/initramfs-aux-temp/etc/initrd.defaults"  
@@ -389,11 +389,11 @@ append_auxilary() {
        done
        echo '"' >> "${TEMP}/initramfs-aux-temp/etc/initrd.defaults"    
 
-       if [ -f "${GK_SHARE}/${ARCH}/modprobe" ]
+       if [ -f "${GK_SHARE}/arch/${ARCH}/modprobe" ]
        then
-               cp "${GK_SHARE}/${ARCH}/modprobe" "${TEMP}/initramfs-aux-temp/sbin/modprobe"
+               cp "${GK_SHARE}/arch/${ARCH}/modprobe" "${TEMP}/initramfs-aux-temp/sbin/modprobe"
        else
-               cp "${GK_SHARE}/generic/modprobe" "${TEMP}/initramfs-aux-temp/sbin/modprobe"
+               cp "${GK_SHARE}/defaults/modprobe" "${TEMP}/initramfs-aux-temp/sbin/modprobe"
        fi
        if isTrue $CMD_DOKEYMAPAUTO
        then
@@ -402,7 +402,7 @@ append_auxilary() {
        if isTrue $CMD_KEYMAP
        then
                mkdir -p "${TEMP}/initramfs-aux-temp/lib/keymaps"
-               /bin/tar -C "${TEMP}/initramfs-aux-temp/lib/keymaps" -zxf "${GK_SHARE}/generic/keymaps.tar.gz"
+               /bin/tar -C "${TEMP}/initramfs-aux-temp/lib/keymaps" -zxf "${GK_SHARE}/defaults/keymaps.tar.gz"
        fi
        if isTrue $CMD_SLOWUSB
        then