mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
6 lines
127 B
Bash
6 lines
127 B
Bash
|
|
#!/bin/sh
|
||
|
|
tmp=$(mktemp)
|
||
|
|
(cat kernel.map; printf '%b' '\0') > "$tmp"
|
||
|
|
objcopy --update-section .ksyms="$tmp" Kernel
|
||
|
|
rm -f "$tmp"
|