Current-Users archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: kernel size change
On Fri, 14 Jul 2023, RVP wrote:
Now add ~70 KB for your custom font (minus ~20 KB to account for the removal
of the standard ones) to the whole shebang:
$ echo $((14566880 + 105322 + 70000 - 20000))
14722202
$
Correction: font data is not `.text' (duh!) so this is just:
$ echo $((14566880 + 105322))
14672202
$
while is:
$ echo $((14722202 - 16#e00000))
42138
$
and the difference is now:
$ echo $((14672202 - 16#e00000))
-7862
$
Ie. ~7 KB short of 0xe00000. Where then is the spill-over? Hmm.
Alignment? padding? diff. between code in-module vs. in-kernel?
-RVP
Home |
Main Index |
Thread Index |
Old Index