Rename .rodata.compressed to .rodata..compressed.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
This commit is contained in:
committed by
Michal Marek
parent
d56a3c1a9f
commit
041d5f94c4
@@ -1,6 +1,6 @@
|
|||||||
SECTIONS
|
SECTIONS
|
||||||
{
|
{
|
||||||
.rodata.compressed : {
|
.rodata..compressed : {
|
||||||
input_len = .;
|
input_len = .;
|
||||||
LONG(input_data_end - input_data) input_data = .;
|
LONG(input_data_end - input_data) input_data = .;
|
||||||
*(.data)
|
*(.data)
|
||||||
|
@@ -77,7 +77,7 @@ int main(int argc, char *argv[])
|
|||||||
offs += 32*1024 + 18; /* Add 32K + 18 bytes slack */
|
offs += 32*1024 + 18; /* Add 32K + 18 bytes slack */
|
||||||
offs = (offs+4095) & ~4095; /* Round to a 4K boundary */
|
offs = (offs+4095) & ~4095; /* Round to a 4K boundary */
|
||||||
|
|
||||||
printf(".section \".rodata.compressed\",\"a\",@progbits\n");
|
printf(".section \".rodata..compressed\",\"a\",@progbits\n");
|
||||||
printf(".globl z_input_len\n");
|
printf(".globl z_input_len\n");
|
||||||
printf("z_input_len = %lu\n", ilen);
|
printf("z_input_len = %lu\n", ilen);
|
||||||
printf(".globl z_output_len\n");
|
printf(".globl z_output_len\n");
|
||||||
|
@@ -26,8 +26,8 @@ SECTIONS
|
|||||||
HEAD_TEXT
|
HEAD_TEXT
|
||||||
_ehead = . ;
|
_ehead = . ;
|
||||||
}
|
}
|
||||||
.rodata.compressed : {
|
.rodata..compressed : {
|
||||||
*(.rodata.compressed)
|
*(.rodata..compressed)
|
||||||
}
|
}
|
||||||
.text : {
|
.text : {
|
||||||
_text = .; /* Text */
|
_text = .; /* Text */
|
||||||
|
Reference in New Issue
Block a user