From 98d294ceb654467f11e8e17d6fe4e23aebed5131 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 7 Dec 2005 22:34:01 +0000 Subject: [PATCH] Added dummy makebootable for boot platform Open Firmware. Just to make the build system happy for now. We'll see later what we have to do. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15400 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/makebootable/platform/openfirmware/Jamfile | 3 +++ .../platform/openfirmware/makebootable.cpp | 6 ++++++ src/tools/makebootable/platform/openfirmware/Jamfile | 12 ++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 src/bin/makebootable/platform/openfirmware/Jamfile create mode 100644 src/bin/makebootable/platform/openfirmware/makebootable.cpp create mode 100644 src/tools/makebootable/platform/openfirmware/Jamfile diff --git a/src/bin/makebootable/platform/openfirmware/Jamfile b/src/bin/makebootable/platform/openfirmware/Jamfile new file mode 100644 index 0000000000..5e9bd7f18f --- /dev/null +++ b/src/bin/makebootable/platform/openfirmware/Jamfile @@ -0,0 +1,3 @@ +SubDir HAIKU_TOP src bin makebootable platform openfirmware ; + +BinCommand makebootable : makebootable.cpp ; diff --git a/src/bin/makebootable/platform/openfirmware/makebootable.cpp b/src/bin/makebootable/platform/openfirmware/makebootable.cpp new file mode 100644 index 0000000000..8d3ab2762f --- /dev/null +++ b/src/bin/makebootable/platform/openfirmware/makebootable.cpp @@ -0,0 +1,6 @@ +int +main() +{ + return 0; +} + diff --git a/src/tools/makebootable/platform/openfirmware/Jamfile b/src/tools/makebootable/platform/openfirmware/Jamfile new file mode 100644 index 0000000000..b6e04f3f46 --- /dev/null +++ b/src/tools/makebootable/platform/openfirmware/Jamfile @@ -0,0 +1,12 @@ +SubDir HAIKU_TOP src tools makebootable platform openfirmware ; + +SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src bin makebootable platform + openfirmware ] ; + +#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 ;