1 Star 0 Fork 4

lionxu / xuxiake

forked from 健哥 / xuxiake 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 2.42 KB
一键复制 编辑 原始数据 按行查看 历史
Jian ZHANG 提交于 2023-03-18 12:35 . enable poweroff from psci
ARCH ?= arm64
#/home/bamvor/works/source/buildroot/output/host/bin/
CROSS_COMPILE ?= aarch64-linux-
#ARCH ?= riscv
#CROSS_COMPILE ?= riscv64-unknown-elf-
#CFLAGS=-Wall -c -mcmodel=medany -march=rv64imafdc -mabi=lp64d
#CFLAGS=-Wall -c -mcmodel=medany -march=rv64imafdc -mabi=lp64d
override CFLAGS += -Wall -I. -Iarch/${ARCH}/include
ifeq ($(ARCH), arm64)
QEMU_CMD ?= qemu-system-aarch64
MACHINE ?= virt
CPU ?= cortex-a72
CORES ?= 1
BIOS ?=
endif
ifeq ($(ARCH), risc64)
#qemu-system-riscv64 -M virt -m 512M -smp 1 -bios ${BUILDROOT_OUTPUT}/images/fw_jump.bin -kernel xuxiake.bin -nographic
endif
all:
${CROSS_COMPILE}gcc -x assembler-with-cpp -ggdb -c -o arch/${ARCH}/head.o arch/${ARCH}/head.S -D__ASSEMBLY__ ${CFLAGS}
${CROSS_COMPILE}gcc -ggdb -c -o cpu_entry.o cpu_entry.c -ffreestanding ${CFLAGS}
${CROSS_COMPILE}gcc -ggdb -c -o lib.o lib.c -ffreestanding ${CFLAGS}
${CROSS_COMPILE}gcc -ggdb -c -o arch/${ARCH}/lib.o arch/${ARCH}/lib.c -ffreestanding ${CFLAGS}
${CROSS_COMPILE}gcc -ggdb -c -o arch/${ARCH}/cpu_entry.o arch/${ARCH}/cpu_entry.c -ffreestanding ${CFLAGS}
${CROSS_COMPILE}gcc -ggdb -c -o arch/${ARCH}/mmu.o arch/${ARCH}/mmu.c -ffreestanding ${CFLAGS}
${CROSS_COMPILE}gcc -ggdb -c -o arch/${ARCH}/poweroff.o arch/${ARCH}/poweroff.c -ffreestanding ${CFLAGS}
${CROSS_COMPILE}gcc -ggdb -c -o arch/${ARCH}/print.o arch/${ARCH}/print.c -ffreestanding ${CFLAGS}
${CROSS_COMPILE}gcc -ggdb -c -o arch/${ARCH}/psci.o arch/${ARCH}/psci.c -ffreestanding ${CFLAGS}
# ${CROSS_COMPILE}gcc -ggdb -c -o gpio.o gpio.c -ffreestanding ${CFLAGS}
# ${CROSS_COMPILE}gcc -o xuxiake.elf -nostartfiles -Wl,--gc-sections,-Map=xuxiake.map,-cref,-u,_start -T arch/${ARCH}/link.lds head.o cpu_entry.o gpio.o lib.o ${CFLAGS}
${CROSS_COMPILE}gcc -o xuxiake.elf -nostartfiles -Wl,--gc-sections,-Map=xuxiake.map,-cref,-u,_start -T arch/${ARCH}/link.lds arch/${ARCH}/head.o arch/${ARCH}/lib.o arch/${ARCH}/cpu_entry.o arch/${ARCH}/poweroff.o arch/${ARCH}/print.o arch/${ARCH}/psci.o arch/${ARCH}/mmu.o lib.o cpu_entry.o ${CFLAGS}
${CROSS_COMPILE}objcopy -O binary xuxiake.elf xuxiake.bin
${CROSS_COMPILE}objdump -Sx xuxiake.elf > xuxiake.S
qemu:
${QEMU_CMD} -M ${MACHINE} -cpu ${CPU} -m 3072M -smp ${CORES} -kernel xuxiake.bin -nographic ${DEBUG}
clean:
rm -f ./lib.o ./arch/arm64/lib.o ./arch/arm64/poweroff.o ./arch/arm64/print.o ./arch/arm64/psci.o ./arch/arm64/head.o ./arch/arm64/cpu_entry.o ./arch/arm64/mmu.o ./cpu_entry.o
rm -f xuxiake.elf xuxiake.S xuxiake.bin
C
1
https://gitee.com/lionxu_admin_admin/xuxiake.git
git@gitee.com:lionxu_admin_admin/xuxiake.git
lionxu_admin_admin
xuxiake
xuxiake
dev-aarch64

搜索帮助