/lib/firmware/carl9170fw/carlfw/src/reboot.S is in linux-firmware 1.157.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | .globl _jump_to_bootcode
.type _jump_to_bootcode, @function
_jump_to_bootcode:
mov.l stack_start, r0
mov.l @r0, sp
mov.l eeprom_start, r0
mov.l @r0, r0
jmp @r0
.align 4
stack_start: .long 0x00000004
eeprom_start: .long 0x00000000
|