From a679600d828ebb641330dcb032e48de430710925 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 22 Oct 2008 15:52:36 +0000 Subject: [PATCH] * Followed Ingo's suggestion, and put the alpha build profiles (for raw and vmdk images) into the new ReleaseBuildProfiles file. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28288 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- Jamrules | 2 ++ build/jam/ReleaseBuildProfiles | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 build/jam/ReleaseBuildProfiles diff --git a/Jamrules b/Jamrules index 5497dfc023..c7808fc435 100644 --- a/Jamrules +++ b/Jamrules @@ -45,6 +45,8 @@ include [ FDirName $(HAIKU_BUILD_RULES_DIR) BuildSetup ] ; } } +include [ FDirName $(HAIKU_BUILD_RULES_DIR) ReleaseBuildProfiles ] ; + # If a build profile was specified on the command line, now is the time to # check whether it is unknown or one of the default profiles. if $(HAIKU_BUILD_PROFILE) && ! $(HAIKU_BUILD_PROFILE_DEFINED) { diff --git a/build/jam/ReleaseBuildProfiles b/build/jam/ReleaseBuildProfiles new file mode 100644 index 0000000000..5ec3efb520 --- /dev/null +++ b/build/jam/ReleaseBuildProfiles @@ -0,0 +1,22 @@ +DefineBuildProfile alpha-raw : image : "haiku-alpha.image" ; +DefineBuildProfile alpha-vmware : vmware-image : "haiku-alpha.vmdk" ; + +switch $(HAIKU_BUILD_PROFILE) { + case "alpha-*" : { + Echo Building Haiku R1/alpha ; + HAIKU_ROOT_USER_NAME = user ; + HAIKU_ROOT_USER_REAL_NAME = "Yourself" ; + AddGroupToHaikuImage party : 101 : user sshd ; + HAIKU_IMAGE_HOST_NAME = shredder ; + HAIKU_IMAGE_SIZE = 400 ; + USE_SSL = 1 ; + + AddOptionalHaikuImagePackages BePDF Firefox Pe Vision VLC WonderBrush ; + AddOptionalHaikuImagePackages CVS Development Subversion OpenSSH Yasm ; + AddOptionalHaikuImagePackages Welcome ; + } + + case "beta-*" : { + Echo You wish. ; + } +}