mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 02:05:54 +00:00
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
20 lines
534 B
Makefile
20 lines
534 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Carsten Langgaard, carstenl@mips.com
|
|
# Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
|
|
#
|
|
# Copyright (C) 2008 Wind River Systems, Inc.
|
|
# written by Ralf Baechle <ralf@linux-mips.org>
|
|
#
|
|
obj-y += malta-dtshim.o
|
|
obj-y += malta-init.o
|
|
obj-y += malta-int.o
|
|
obj-y += malta-memory.o
|
|
obj-y += malta-platform.o
|
|
obj-y += malta-setup.o
|
|
obj-y += malta-time.o
|
|
|
|
obj-$(CONFIG_MIPS_CMP) += malta-amon.o
|
|
|
|
CFLAGS_malta-dtshim.o = -I$(src)/../../../scripts/dtc/libfdt
|