From 14fbb88f1050dede26095965a4ad21095234acfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Mon, 23 Jun 2008 15:52:44 +0000 Subject: [PATCH] stubbed out makebootable for atari. It should be doable the same way as on x86, but the emulator doesn't scan hdds for bootsector. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26106 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/makebootable/platform/atari_m68k/Jamfile | 3 +++ .../platform/atari_m68k/makebootable.cpp | 6 ++++++ src/tools/makebootable/platform/atari_m68k/Jamfile | 12 ++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 src/bin/makebootable/platform/atari_m68k/Jamfile create mode 100644 src/bin/makebootable/platform/atari_m68k/makebootable.cpp create mode 100644 src/tools/makebootable/platform/atari_m68k/Jamfile diff --git a/src/bin/makebootable/platform/atari_m68k/Jamfile b/src/bin/makebootable/platform/atari_m68k/Jamfile new file mode 100644 index 0000000000..0555f11e3c --- /dev/null +++ b/src/bin/makebootable/platform/atari_m68k/Jamfile @@ -0,0 +1,3 @@ +SubDir HAIKU_TOP src bin makebootable platform atari_m68k ; + +BinCommand makebootable : makebootable.cpp ; diff --git a/src/bin/makebootable/platform/atari_m68k/makebootable.cpp b/src/bin/makebootable/platform/atari_m68k/makebootable.cpp new file mode 100644 index 0000000000..8d3ab2762f --- /dev/null +++ b/src/bin/makebootable/platform/atari_m68k/makebootable.cpp @@ -0,0 +1,6 @@ +int +main() +{ + return 0; +} + diff --git a/src/tools/makebootable/platform/atari_m68k/Jamfile b/src/tools/makebootable/platform/atari_m68k/Jamfile new file mode 100644 index 0000000000..d965131136 --- /dev/null +++ b/src/tools/makebootable/platform/atari_m68k/Jamfile @@ -0,0 +1,12 @@ +SubDir HAIKU_TOP src tools makebootable platform atari_m68k ; + +SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src bin makebootable platform + atari_m68k ] ; + +#USES_BE_API on makebootable = true ; + +# write the stage 1 boot loader into the makebootable resources +#AddFileDataResource makebootable : RAWT:666:BootCode : stage1.bin ; + +#BuildPlatformMain makebootable : makebootable.cpp : $(HOST_LIBBE) ; +BuildPlatformMain makebootable : makebootable.cpp ;