Rev 725 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 725 | Rev 890 | ||
---|---|---|---|
Line 33... | Line 33... | ||
33 | image.iso: kernel |
33 | image.iso: kernel |
34 | mkdir -p $(TMP)/boot |
34 | mkdir -p $(TMP)/boot |
35 | mkdir -p $(TMP)/kernel |
35 | mkdir -p $(TMP)/kernel |
36 | cat arch/$(ARCH)/silo/silo.tar.gz | (cd $(TMP)/boot; tar xvfz -) |
36 | cat arch/$(ARCH)/silo/silo.tar.gz | (cd $(TMP)/boot; tar xvfz -) |
37 | cp arch/$(ARCH)/silo/README arch/$(ARCH)/silo/COPYING arch/$(ARCH)/silo/silo.conf $(TMP)/boot |
37 | cp arch/$(ARCH)/silo/README arch/$(ARCH)/silo/COPYING arch/$(ARCH)/silo/silo.conf $(TMP)/boot |
38 | ln -s ../../$(KERNELDIR)/kernel.bin $(TMP)/kernel/kernel.bin |
38 | ln -sf ../../$(KERNELDIR)/kernel.bin $(TMP)/kernel/kernel.bin |
39 | mkisofs -f -G $(TMP)/boot/isofs.b -B ... -r -o image.iso $(TMP)/ |
39 | mkisofs -f -G $(TMP)/boot/isofs.b -B ... -r -o image.iso $(TMP)/ |
40 | 40 | ||
41 | clean: clean_kernel |
41 | clean: clean_kernel |
42 | -rm -fr $(TMP) |
42 | -rm -fr $(TMP) |
43 | -rm -f image.iso |
43 | -rm -f image.iso |