]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
Merge remote branch 'origin/master' into dracut
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 25 Jul 2010 20:48:28 +0000 (22:48 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 25 Jul 2010 20:48:28 +0000 (22:48 +0200)
Conflicts:
lfs/dracut

1  2 
src/install+setup/install/main.c

index bfd499c60c0004bda7d507d9d2617adf2654c722,9cf1bd5e3776223ea0df5d2dcfa79f35819b2b38..2de12bd41497b8bd4b404556cd6ff89b1575ec33
@@@ -512,15 -512,37 +512,15 @@@ int main(int argc, char *argv[]
  
        replace("/harddisk/boot/grub/grub.conf", "KVER", KERNEL_VERSION);
  
 -      /* Build the emergency ramdisk with all drivers */
 -      mysystem("cp -f /harddisk/etc/mkinitcpio.conf /harddisk/etc/mkinitcpio.conf.org");
 -
 -      replace("/harddisk/etc/mkinitcpio.conf", " autodetect ", " ");
 -      snprintf(commandstring, STRING_SIZE, "/sbin/chroot /harddisk /sbin/mkinitcpio -g /boot/ipfirerd-%s-emergency.img -k %s-ipfire", KERNEL_VERSION, KERNEL_VERSION);
 -      runcommandwithstatus(commandstring, ctr[TR_BUILDING_INITRD]);
 -
 -      mysystem("cp -f /harddisk/etc/mkinitcpio.conf.org /harddisk/etc/mkinitcpio.conf");
 -
 -      /* mkinitcpio has a problem if ide and pata are included */
 -      if ( scsi_disk==1 ) {
 -          /* Remove the ide hook if we install sda */
 -          replace("/harddisk/etc/mkinitcpio.conf", " ide ", " ");
 -      } else {
 -          /* Remove the pata & sata hook if we install hda */
 -          replace("/harddisk/etc/mkinitcpio.conf", " pata ", " ");
 -          replace("/harddisk/etc/mkinitcpio.conf", " sata ", " ");
 -      }
        /* Going to make our initrd... */
 -      snprintf(commandstring, STRING_SIZE, "/sbin/chroot /harddisk /sbin/mkinitcpio -g /boot/ipfirerd-%s.img -k %s-ipfire", KERNEL_VERSION, KERNEL_VERSION);
 -      runcommandwithstatus(commandstring, ctr[TR_BUILDING_INITRD]);
 -/*    snprintf(commandstring, STRING_SIZE, "/sbin/chroot /harddisk /sbin/mkinitcpio -g /boot/ipfirerd-%s-smp.img -k %s-ipfire-smp", KERNEL_VERSION, KERNEL_VERSION );
 +      snprintf(commandstring, STRING_SIZE, "/sbin/chroot /harddisk /usr/local/bin/rebuild-initrd");
        runcommandwithstatus(commandstring, ctr[TR_BUILDING_INITRD]);
 -*/
 -
  
        sprintf(string, "root=%s3", hdparams.devnode_part_run);
        replace( "/harddisk/boot/grub/grub.conf", "root=ROOT", string);
        mysystem("ln -s grub.conf /harddisk/boot/grub/menu.lst");
  
-       system("sed -e 's#harddisk\\/##g' < /proc/mounts > /harddisk/etc/mtab");
+       system("sed -e 's#/harddisk#/#g' -e 's#//#/#g'  < /proc/mounts > /harddisk/etc/mtab");
  
        snprintf(commandstring, STRING_SIZE, 
                 "/sbin/chroot /harddisk /usr/sbin/grub-install --no-floppy %s", hdparams.devnode_disk);