]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/initrd
Installer: Add installmedia download support.
[ipfire-2.x.git] / lfs / initrd
index cf2dc3f475845d43c55da572518df2eb48c0b264..c5ceb3200e085cb4755d0f6098eb444dfa358223 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
+# Copyright (C) 2010  IPFire Team  <info@ipfire.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        #
@@ -56,6 +56,10 @@ $(TARGET) :
 
        # Copy Files packages for installer
        find $(DIR_SRC)/config/rootfiles/installer/* -maxdepth 1 | xargs cat | grep -v "^#" > /tmp/ROOTFILES
+
+       # Patch Kernel Version to rootfiles
+       sed -e "s/KVER/$(KVER)/g" -i /tmp/ROOTFILES
+
        -cd / && cpio -d -p /install/initrd < /tmp/ROOTFILES
 
        cd /install/initrd/etc && rm -f fstab
@@ -71,11 +75,15 @@ $(TARGET) :
        -mkdir -p /install/{images,mnt}
        rm -rf /install/mnt/*
 
-       cp -aR /install/initrd/* /install/mnt
-
+       #Build Module deps for installer.
+       depmod -a -b /install/initrd/ -F /boot/System.map-$(KVER)-ipfire $(KVER)-ipfire
        # Remove binary depmod files
        rm -rf /install/initrd/lib/modules/$(KVER)-ipfire/modules.*.bin
 
+       #Name service from dhcpcd
+       cp -f /etc/nsswitch.conf /install/initrd/etc/
+       cp -f $(DIR_SRC)/config/initrd/dhcpc/* /install/initrd/var/ipfire/dhcpc/dhcpcd-hooks/
+
        cd /install/initrd && find . | cpio -o -H newc | lzma > /install/images/initrd
        cd /install/initrd && find ./ -ls > $(DIR_INFO)/_build.initrd.log