mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 19:23:57 +08:00
86277d5949
- Add missing files - Add Makefile target - Change image base - Style fix Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
10 lines
131 B
Plaintext
10 lines
131 B
Plaintext
SECTIONS
|
|
{
|
|
.data : {
|
|
_input_len = .;
|
|
LONG(_input_data_end - _input_data) _input_data = .;
|
|
*(.data)
|
|
_input_data_end = .;
|
|
}
|
|
}
|