Commit 3230b080e50253650895d758db1ffbf1e6c361e9
1 parent
5796d137c2
Exists in
master
Don't install modules no longer provided by currently used syslinux
Showing 4 changed files with 4 additions and 4 deletions Side-by-side Diff
platforms/bootusb-test/post.inc.sh
... | ... | @@ -55,7 +55,7 @@ |
55 | 55 | cp -a --no-preserve=ownership $MOUNTDIR/boot $MOUNTDIR2 |
56 | 56 | |
57 | 57 | # copy syslinux addons to final root /boot dir |
58 | -cp $MOUNTDIR/usr/share/syslinux/{libcom32,libutil,vesamenu}.c32 $MOUNTDIR2/boot/ | |
58 | +cp $MOUNTDIR/usr/share/syslinux/vesamenu.c32 $MOUNTDIR2/boot/ | |
59 | 59 | |
60 | 60 | # copy static files for specific platform |
61 | 61 | [ -e $TARGETDIR/platforms/$PLATFORM/root ] && |
platforms/bootusb/post.inc.sh
... | ... | @@ -79,7 +79,7 @@ |
79 | 79 | cp -a --no-preserve=ownership $MOUNTDIR/boot $MOUNTDIR2 |
80 | 80 | |
81 | 81 | # copy syslinux addons to final root /boot dir |
82 | -cp $MOUNTDIR/usr/share/syslinux/{libcom32,libutil,vesamenu}.c32 $MOUNTDIR2/boot/ | |
82 | +cp $MOUNTDIR/usr/share/syslinux/vesamenu.c32 $MOUNTDIR2/boot/ | |
83 | 83 | |
84 | 84 | # copy static files for specific platform |
85 | 85 | [ -e $TARGETDIR/platforms/$PLATFORM/root ] && |
platforms/installdvd/post.inc.sh
... | ... | @@ -64,7 +64,7 @@ |
64 | 64 | exit 1; } |
65 | 65 | |
66 | 66 | # copy syslinux addons to final root /boot dir |
67 | -cp $MOUNTDIR/usr/share/syslinux/{ldlinux,libcom32,libutil,vesamenu}.c32 $MOUNTDIR2/boot/isolinux/ | |
67 | +cp $MOUNTDIR/usr/share/syslinux/vesamenu.c32 $MOUNTDIR2/boot/isolinux/ | |
68 | 68 | |
69 | 69 | # install memtest |
70 | 70 | [ -e $MOUNTDIR/boot/memtest.bin ] && cp $MOUNTDIR/boot/memtest.bin $MOUNTDIR2/boot/isolinux/memtest || |
platforms/testcd/post.inc.sh
... | ... | @@ -103,7 +103,7 @@ |
103 | 103 | exit 1; } |
104 | 104 | |
105 | 105 | # copy syslinux addons to final root /boot dir |
106 | -cp $MOUNTDIR/usr/share/syslinux/{ldlinux,libcom32,libutil,vesamenu}.c32 $MOUNTDIR2/boot/isolinux/ | |
106 | +cp $MOUNTDIR/usr/share/syslinux/vesamenu.c32 $MOUNTDIR2/boot/isolinux/ | |
107 | 107 | |
108 | 108 | # install memtest |
109 | 109 | [ -e $MOUNTDIR/boot/memtest.bin ] && cp $MOUNTDIR/boot/memtest.bin $MOUNTDIR2/boot/isolinux/memtest || |