- Timestamp:
- 2005-09-25T16:51:17Z (21 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a58db280
- Parents:
- 48a02ef
- Location:
- arch/ia32
- Files:
-
- 2 edited
-
Makefile.inc (modified) (1 diff)
-
boot/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/Makefile.inc
r48a02ef rc9ed176 31 31 endif 32 32 33 CPPFLAGS=$(DEFS) -nostdinc -I ../include33 CPPFLAGS=$(DEFS) -nostdinc -Iinclude/ 34 34 CFLAGS=$(CPPFLAGS) -nostdlib -fno-builtin -fomit-frame-pointer -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 35 35 LFLAGS=-M 36 36 37 ../arch/$(ARCH)/_link.ld: ../arch/$(ARCH)/_link.ld.in37 arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in 38 38 $(CC) $(CFLAGS) -E -x c $< | grep -v "^\#" > $@ 39 39 40 40 arch_sources= \ 41 arch/context.s \42 arch/debug/panic.s \43 arch/cpuid.s \44 arch/delay.s \45 arch/asm.S \46 arch/proc/scheduler.c \47 arch/acpi/acpi.c \48 arch/acpi/madt.c \49 arch/bios/bios.c \50 arch/smp/ap.S \51 arch/smp/apic.c \52 arch/smp/mps.c \53 arch/smp/smp.c \54 arch/atomic.S \55 arch/smp/ipi.c \56 arch/ia32.c \57 arch/interrupt.c \58 arch/pm.c \59 arch/userspace.c \60 arch/cpu/cpu.c \61 arch/mm/frame.c \62 arch/mm/memory_init.c \63 arch/mm/page.c \64 arch/mm/tlb.c \65 arch/drivers/i8042.c \66 arch/drivers/i8254.c \67 arch/drivers/i8259.c \68 arch/drivers/ega.c \69 arch/boot/boot.S \70 arch/boot/memmap.S\71 arch/fpu_context.c\72 arch/fmath.c41 src/arch/context.s \ 42 src/arch/debug/panic.s \ 43 src/arch/cpuid.s \ 44 src/arch/delay.s \ 45 src/arch/asm.S \ 46 src/arch/proc/scheduler.c \ 47 src/arch/acpi/acpi.c \ 48 src/arch/acpi/madt.c \ 49 src/arch/bios/bios.c \ 50 src/arch/smp/ap.S \ 51 src/arch/smp/apic.c \ 52 src/arch/smp/mps.c \ 53 src/arch/smp/smp.c \ 54 src/arch/atomic.S \ 55 src/arch/smp/ipi.c \ 56 src/arch/ia32.c \ 57 src/arch/interrupt.c \ 58 src/arch/pm.c \ 59 src/arch/userspace.c \ 60 src/arch/cpu/cpu.c \ 61 src/arch/mm/frame.c \ 62 src/arch/mm/memory_init.c \ 63 src/arch/mm/page.c \ 64 src/arch/mm/tlb.c \ 65 src/arch/drivers/i8042.c \ 66 src/arch/drivers/i8254.c \ 67 src/arch/drivers/i8259.c \ 68 src/arch/drivers/ega.c \ 69 src/arch/boot/boot.S \ 70 src/arch/boot/memmap.S\ 71 src/arch/fpu_context.c\ 72 src/arch/fmath.c -
arch/ia32/boot/Makefile
r48a02ef rc9ed176 4 4 5 5 build: boot.bin 6 dd if=boot.bin of=../../../ src/image.bin bs=512 conv=sync7 -cat ../../../ src/kernel.bin >>../../../src/image.bin8 dd if=/dev/zero of=../../../ src/image.bin bs=1 seek=1474559 count=16 dd if=boot.bin of=../../../image.bin bs=512 conv=sync 7 -cat ../../../kernel.bin >>../../../image.bin 8 dd if=/dev/zero of=../../../image.bin bs=1 seek=1474559 count=1 9 9 10 10 boot.bin: boot.o
Note:
See TracChangeset
for help on using the changeset viewer.
