mirror of
https://github.com/adron-s/mtik_initrd_hacks.git
synced 2025-12-10 07:44:40 +01:00
11 lines
203 B
Bash
Executable file
11 lines
203 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
#(C) Sergey Sergeev aka adron, 2019
|
|
#
|
|
|
|
. ../globals.sh
|
|
|
|
CPIO_FS="../cpio-fs-${TARGET_ARCH}"
|
|
|
|
$OBJDUMP ${CPIO_FS}/oldinit -x > ./oldinit.objdump
|
|
$OBJDUMP ${CPIO_FS}/init -x > ./init.objdump
|