[haiku-commits] BRANCH jessicah-github.efi-applied-to-hrev47292 [a092c86] /

  • From: jessicah-github.efi-applied-to-hrev47292 <community@xxxxxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 1 Jul 2014 22:31:30 +0200 (CEST)

added 1 changeset to branch 
'refs/remotes/jessicah-github/efi-applied-to-hrev47292'
old head: 1b57f85cd647b6058c5a1ab622ae327c77a5aeba
new head: a092c8657e3f80df4c37d03cb732add14db287a3
overview: https://github.com/jessicah/haiku/compare/1b57f85...a092c86

----------------------------------------------------------------------------

a092c86: Allow configuring for a given boot platform.
  
  Conflicts:
        configure

                         [ Jessica Hamilton <jessica.l.hamilton@xxxxxxxxx> ]

----------------------------------------------------------------------------

Commit:      a092c8657e3f80df4c37d03cb732add14db287a3
Author:      Jessica Hamilton <jessica.l.hamilton@xxxxxxxxx>
Date:        Sun Jun  1 09:52:38 2014 UTC

----------------------------------------------------------------------------

1 file changed, 6 insertions(+)
configure | 6 ++++++

----------------------------------------------------------------------------

diff --git a/configure b/configure
index f02beea..7f93c0d 100755
--- a/configure
+++ b/configure
@@ -90,6 +90,9 @@ options:
                               ones the secondary architectures.
   --target-board <board>      ARM only: Specify the board to build for. Must be
                               one of beagle,raspberry_pi,verdex.
+  --boot-platform <platform>  Select the target boot platform; not supported by
+                              all targets.
+                              For x86_64, valid platforms=efi,bios_ia32
   --update                    re-runs last configure invocation [must be given
                               as first option!]
   --use-clang                 Build with host Clang instead of GCC cross
@@ -698,6 +701,7 @@ while [ $# -gt 0 ] ; do
                        shift 2
                        ;;
                --use-clang) useClang=1; shift 1;;
+               --boot-platform=*)      HAIKU_BOOT_PLATFORM=`echo $1 | cut 
-d'=' -f2-`; shift 1;;
                --use-gcc-pipe) HAIKU_USE_GCC_PIPE=1; shift 1;;
                --use-gcc-graphite)     useGccGraphiteDefault=1; shift 1;;
                --use-32bit)    HAIKU_HOST_USE_32BIT=1; shift 1;;
@@ -945,6 +949,8 @@ HAIKU_HOST_USE_XATTR                                ?= 
"${HAIKU_HOST_USE_XATTR}" ;
 HAIKU_HOST_USE_XATTR_REF                       ?= 
"${HAIKU_HOST_USE_XATTR_REF}" ;
 HAIKU_HOST_BUILD_ONLY                          ?= "${HAIKU_HOST_BUILD_ONLY}" ;
 
+HAIKU_BOOT_PLATFORM            ?= ${HAIKU_BOOT_PLATFORM} ;
+
 HAIKU_PACKAGING_ARCHS          ?= ${HAIKU_PACKAGING_ARCHS} ;
 
 HAIKU_NO_DOWNLOADS                     ?= "${HAIKU_NO_DOWNLOADS}" ;


Other related posts:

  • » [haiku-commits] BRANCH jessicah-github.efi-applied-to-hrev47292 [a092c86] / - jessicah-github . efi-applied-to-hrev47292