diff options
author | Anup Patel <anup@brainfault.org> | 2018-11-12 11:25:15 +0530 |
---|---|---|
committer | Palmer Dabbelt <palmer@sifive.com> | 2018-11-20 05:19:09 -0800 |
commit | c0fbcd9918607e85c9598bfa3dd0a84ed77ea210 (patch) | |
tree | 5e88da40c8c0781e1dd6417123ead07ba47ceabd /arch/riscv/boot/.gitignore | |
parent | 21f70d4abf9e17c2e3d7e64b7bfa3424e017f176 (diff) | |
download | linux-c0fbcd9918607e85c9598bfa3dd0a84ed77ea210.tar.bz2 |
RISC-V: Build flat and compressed kernel images
This patch extends Linux RISC-V build system to build and install:
Image - Flat uncompressed kernel image
Image.gz - Flat and GZip compressed kernel image
Quiet a few bootloaders (such as Uboot, UEFI, etc) are capable of
booting flat and compressed kernel images. In case of Uboot, booting
Image or Image.gz is achieved using bootm command.
The flat and uncompressed kernel image (i.e. Image) is very useful
in pre-silicon developent and testing because we can create back-door
HEX files for RAM on FPGAs from Image.
Signed-off-by: Anup Patel <anup@brainfault.org>
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
Diffstat (limited to 'arch/riscv/boot/.gitignore')
-rw-r--r-- | arch/riscv/boot/.gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/riscv/boot/.gitignore b/arch/riscv/boot/.gitignore new file mode 100644 index 000000000000..8dab0bb6ae66 --- /dev/null +++ b/arch/riscv/boot/.gitignore @@ -0,0 +1,2 @@ +Image +Image.gz |