Hardlink powerpc and powerpc/minimal vmlinux files together, since they're
identical.
This commit is contained in:
parent
dee0dd273f
commit
8c4888772d
|
@ -36,6 +36,8 @@ debian-cd (2.2.20) UNRELEASED; urgency=low
|
|||
netboot.
|
||||
- Remove 2.6 PReP images from power3 and power4, as no such machines
|
||||
exist.
|
||||
- Hardlink powerpc and powerpc/minimal vmlinux files together, since
|
||||
they're identical.
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Mon, 30 Aug 2004 15:23:19 -0400
|
||||
|
||||
|
|
|
@ -100,6 +100,14 @@ do
|
|||
rm -f "$subarch/vmlinuz-prep.initrd"
|
||||
fi
|
||||
fi
|
||||
|
||||
# Save some space with hardlinks; these kernels are identical.
|
||||
if [ -e powerpc/vmlinux ] && [ -e powerpc/minimal/vmlinux ]; then
|
||||
ln -f powerpc/vmlinux powerpc/minimal/vmlinux
|
||||
fi
|
||||
if [ -e powerpc/2.4/vmlinux ] && [ -e powerpc/minimal/2.4/vmlinux ]; then
|
||||
ln -f powerpc/2.4/vmlinux powerpc/minimal/2.4/vmlinux
|
||||
fi
|
||||
done
|
||||
|
||||
exit 0
|
||||
|
|
Loading…
Reference in New Issue