Browse Source

fixed mkinitrd.sh (s/rdir/rmdir/)

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1042 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
b5bb70d7cf
2 changed files with 5 additions and 1 deletions
  1. +4
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +1
    -1
      package/base/linux24/mkinitrd.sh

+ 4
- 0
Documentation/Developers/CHANGELOG-RENE

@ -2,6 +2,10 @@
This is not only the CHANGELOG of the desktop target, but also of the
whole rxr-tree.
*) 2003-08-09 (2.0.0-camp - 2.0.0-rc1)
- fixed mkinitrd.sh (s/rdir/rmdir/)
*) 2003-08-07 (2.0.0-camp - 2.0.0-rc1)
- added QTDIR and KDEDIR$ver exports to the qt and kdelibs packages (and

+ 1
- 1
package/base/linux24/mkinitrd.sh

@ -74,7 +74,7 @@ else
mke2fs -m 0 -N 180 -F /boot/initrd-${kernel}.img.tmp &> /dev/null
mntpoint="`mktemp -d`"
mount -o loop /boot/initrd-${kernel}.img.tmp $mntpoint
rdir $mntpoint/lost+found/
rmdir $mntpoint/lost+found/
cp -a $tmpdir/* $mntpoint/
umount $mntpoint
rmdir $mntpoint

Loading…
Cancel
Save