[haiku-commits] haiku: hrev47178 - docs/develop/ports/arm

  • From: kallisti5@xxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 28 Apr 2014 00:07:24 +0200 (CEST)

hrev47178 adds 2 changesets to branch 'master'
old head: 2bd9c8a5f90cd5eccc0d956dab9c18f13676b250
new head: c0b833b10a18d15bcb273dc10b3350f0ed4b63ea
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=c0b833b+%5E2bd9c8a

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

1274874: docs: Cleanup beagle documentation a little

c0b833b: build: Fix raspberry_pi target board name. Not pi

                          [ Alexander von Gluck IV <kallisti5@xxxxxxxxxxx> ]

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

2 files changed, 4 insertions(+), 5 deletions(-)
configure                                              | 4 ++--
docs/develop/ports/arm/{beagleboneblk.md => beagle.md} | 5 ++---

############################################################################

Commit:      1274874d1d2ae9e77b223105d394884830f43171
URL:         http://cgit.haiku-os.org/haiku/commit/?id=1274874
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Sun Apr 27 21:53:27 2014 UTC

docs: Cleanup beagle documentation a little

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

diff --git a/docs/develop/ports/arm/beagleboneblk.md 
b/docs/develop/ports/arm/beagle.md
similarity index 88%
rename from docs/develop/ports/arm/beagleboneblk.md
rename to docs/develop/ports/arm/beagle.md
index 6e1aa1f..c139a2e 100644
--- a/docs/develop/ports/arm/beagleboneblk.md
+++ b/docs/develop/ports/arm/beagle.md
@@ -35,9 +35,8 @@ The BeagleBone Black supports booting from an microSD card 
while the boot switch
 
 # Compiling
 
-*  Create your work directory `mkdir generated.arm; cd generated.arm`
-*  Build an ARM toolchain using `../configure --build-cross-tools arm 
../../buildtools`
-*  Build our loader using `jam -q -sHAIKU_BOOT_BOARD=beagleboneblk 
haiku_loader`
+*  Create your work directory `mkdir generated.beagle; cd generated.beagle`
+*  Build an ARM toolchain using `../configure --build-cross-tools arm 
../../buildtools --target-board beagle`
 *  TODO
 
 # Booting

############################################################################

Revision:    hrev47178
Commit:      c0b833b10a18d15bcb273dc10b3350f0ed4b63ea
URL:         http://cgit.haiku-os.org/haiku/commit/?id=c0b833b
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Sun Apr 27 22:03:16 2014 UTC

build: Fix raspberry_pi target board name. Not pi

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

diff --git a/configure b/configure
index 4f1a460..f411fe5 100755
--- a/configure
+++ b/configure
@@ -88,7 +88,7 @@ options:
                               architecture of the Haiku to build, subsequent
                               ones the secondary architectures.
   --target-board <board>      ARM only: Specify the board to build for. Must be
-                              one of beagle,pi,verdex.
+                              one of beagle,raspberry_pi,verdex.
   --update                    re-runs last configure invocation [must be given
                               as first option!]
   --use-clang                 Build with host Clang instead of GCC cross
@@ -557,7 +557,7 @@ supportedTargetArchs="
        "
 supportedTargetBoards="
        beagle
-       pi
+       raspberry_pi
        verdex
        "
 


Other related posts:

  • » [haiku-commits] haiku: hrev47178 - docs/develop/ports/arm - kallisti5