You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
7 lines
194 B
Bash
7 lines
194 B
Bash
|
|
#!/bin/sh
|
||
|
|
##
|
||
|
|
# Hack to have an nm which removes the local symbols. We also rely
|
||
|
|
# on this nm being hidden out of the ordinarily executable path
|
||
|
|
##
|
||
|
|
${CROSS_COMPILE}nm $* | grep -v '.LC*[0-9]*$'
|