From f152e2bac7283b6be43a4fdf64b1bc7b5152d91d Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Sat, 27 Sep 2025 14:10:13 +0200 Subject: [PATCH] Move MBR boot code to common, arch-independent place --- boot/bootsect/CMakeLists.txt | 2 +- boot/bootsect/{amd64 => }/mbrboot.S | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename boot/bootsect/{amd64 => }/mbrboot.S (100%) diff --git a/boot/bootsect/CMakeLists.txt b/boot/bootsect/CMakeLists.txt index 7cd510f..8af0b86 100644 --- a/boot/bootsect/CMakeLists.txt +++ b/boot/bootsect/CMakeLists.txt @@ -2,4 +2,4 @@ PROJECT(BOOTSECT) # Compile boot sectors -compile_bootsector(mbrboot ${BOOTSECT_SOURCE_DIR}/${ARCH}/mbrboot.S 0x7C00 Start) +compile_bootsector(mbrboot ${BOOTSECT_SOURCE_DIR}/mbrboot.S 0x7C00 Start) diff --git a/boot/bootsect/amd64/mbrboot.S b/boot/bootsect/mbrboot.S similarity index 100% rename from boot/bootsect/amd64/mbrboot.S rename to boot/bootsect/mbrboot.S