Changeset b169619 in mainline for boot/arch/mips32


Ignore:
Timestamp:
2023-10-27T17:38:32Z (2 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master, topic/msim-upgrade, topic/simplify-dev-export
Children:
44e8541
Parents:
c89ae25
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-27 13:19:20)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-27 17:38:32)
Message:

Deduplicate mem functions

There are a number of functions which are copied between
kernel, libc, and potentially boot too. mem*() functions
are first such offenders. All this duplicate code will
be moved to directory 'common'.

Location:
boot/arch/mips32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/mips32/meson.build

    rc89ae25 rb169619  
    4242        'src/main.c',
    4343        'src/putchar.c',
     44        '../../../common/stdc/mem.c',
    4445        '../../genarch/src/division.c',
    4546        '../../genarch/src/multiplication.c',
    46         '../../generic/src/memstr.c',
    4747        '../../generic/src/printf_core.c',
    4848        '../../generic/src/vprintf.c',
  • boot/arch/mips32/src/main.c

    rc89ae25 rb169619  
    3333#include <halt.h>
    3434#include <printf.h>
    35 #include <memstr.h>
     35#include <mem.h>
    3636#include <version.h>
    3737#include <macros.h>
Note: See TracChangeset for help on using the changeset viewer.