diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-10-25 01:30:51 -0500 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-10-25 01:30:51 -0500 |
commit | efcdb592b65bfc7be33f26cb5b0791a44f031fc5 (patch) | |
tree | 4ed03308b7942b70eb75dad58f8faf04c8e41c84 /configs | |
parent | a38a8eb38f94cbbfc49880b4ac455166d1372df6 (diff) | |
download | archiso32-efcdb592b65bfc7be33f26cb5b0791a44f031fc5.tar.xz |
More install ISO cleanup
More boot-file malarky done in the Makefile
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/install-iso/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configs/install-iso/Makefile b/configs/install-iso/Makefile index 47da11e..30247a7 100644 --- a/configs/install-iso/Makefile +++ b/configs/install-iso/Makefile @@ -26,9 +26,12 @@ ftp-iso: root-image boot-files .PHONY: boot-files boot-files: - mkdir -p image-dir/boot/ + mkdir -p image-dir/boot/grub/ + #ick! this section needs reworking + cp -r work/usr/lib/grub/i386-pc/* image-dir/boot/grub cp -r work/boot/* image-dir/boot/ cp -r boot-files/* image-dir/boot/ + #end ick mkinitcpio -c initcpio-ide -b work/ -k $(kver) -g image-dir/boot/archiso-ide.img mkinitcpio -c initcpio-pata -b work/ -k $(kver) -g image-dir/boot/archiso-pata.img @@ -47,4 +50,4 @@ core-pkgs: mkarchiso -v squash core-pkgs image-dir/core-pkgs.sqfs clean: - rm -rf work image-dir $(FTPname) $(COREname) + rm -rf work image-dir $(FTPname).img $(FTPname).iso $(COREname).img $(COREname).iso |