diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2012-01-26 13:08:57 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-03-24 10:38:52 +0100 |
commit | a7f464f3db93ae5492bee6f6e48939fd8a45fa99 (patch) | |
tree | e9ac49cedb1da56631b0e5b172cc39cdde06235c /arch/arm/boot/compressed/piggy.xzkern.S | |
parent | ARM: 7311/1: Add generic instruction opcode manipulation helpers (diff) | |
download | linux-a7f464f3db93ae5492bee6f6e48939fd8a45fa99.tar.xz linux-a7f464f3db93ae5492bee6f6e48939fd8a45fa99.zip |
ARM: 7001/2: Wire up support for the XZ decompressor
Wire up support for the XZ decompressor
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/boot/compressed/piggy.xzkern.S')
-rw-r--r-- | arch/arm/boot/compressed/piggy.xzkern.S | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/boot/compressed/piggy.xzkern.S b/arch/arm/boot/compressed/piggy.xzkern.S new file mode 100644 index 000000000000..5703f300d027 --- /dev/null +++ b/arch/arm/boot/compressed/piggy.xzkern.S @@ -0,0 +1,6 @@ + .section .piggydata,#alloc + .globl input_data +input_data: + .incbin "arch/arm/boot/compressed/piggy.xzkern" + .globl input_data_end +input_data_end: |