updated the default config of busybox
[kvm-coreboot.git] / scripts / Makefile.kernel
blobb3c6715d79f8d8012ece7ffcac1f6e7bbd4826aa
1 # Targets specifically for the kernel payload
3 $(OUTPUT_DIR)/kernel-payload.elf: $(PAYLOAD-y)
4         @ echo "Building the ELF payload..."
5         @ rm -f $@
6         @ $(STAGING_DIR)/sbin/mkelfImage --type bzImage-i386 \
7         --command-line=$(COMMAND_LINE) $(OUTPUT_DIR)/bzImage $@
8         @ chmod 0644 $@
10 $(OUTPUT_DIR)/kernel-payload.elf.lzma: $(OUTPUT_DIR)/kernel-payload.elf
11         @ echo "Compressing the ELF payload with lzma..."
12         @ $(STAGING_DIR)/bin/lzma e $< $@  2> /dev/null
13         @ $(BIN_DIR)/checkrom.sh $@