spacer
  • Log in
Navigation
  • Home
  • Introduction
  • Community
  • Octa WiKi
  • Octa Resource
  • WiKi
  • Resources
  • GIT
  • Buy now
  • Contact Us

From ArndaleBoard.org

Jump to: navigation, search

Contents

  • 1 Arndale Board Connection Guide
  • 2 Hardware Schematics
    • 2.1 Cpu Board
    • 2.2 Base Board
    • 2.3 WiFi+BT+GPS Module
      • 2.3.1 SWB-A51H Module
    • 2.4 WiFi+BT+GPS+FM Module (Arndale board-k / Upgrade Package)
      • 2.4.1 MT6620 Module
    • 2.5 Audio Module
      • 2.5.1 WM1811A & AK4678 Module
      • 2.5.2 AK4953 Module (Arndale board-k / Upgrade package)
    • 2.6 Camera Module
      • 2.6.1 8M Pixel & 5M Pixel Camera
    • 2.7 Display Module
  • 3 Pre-built Images of Android Jelly Bean for Arndale Board
  • 4 Proprietary for Arndale Board
    • 4.1 Proprietaries for vendor & other peripherals
  • 5 How to Download Source Tree
    • 5.1 Installing Repo
    • 5.2 Initializing a Repo client
    • 5.3 Getting the files
    • 5.4 Download proprietary for Eyxnos5250
  • 6 Software Guides
    • 6.1 Host Environment setup guide
    • 6.2 How to download source tree
    • 6.3 How to build Android system
    • 6.4 How to flash a Device
  • 7 Hardware Guides
  • 8 Common Resource
    • 8.1 Cross compiler for Linux host
    • 8.2 Fastboot & Adb for Linux host
    • 8.3 USB driver for Windows
  • 9 More Information
    • 9.1 Homepage
    • 9.2 Wiki
    • 9.3 Upstream Community
    • 9.4 Samsung System LSI
    • 9.5 Insignal Git
    • 9.6 Android Board Informations of Linaro

Arndale Board Connection Guide

spacer

Hardware Schematics

Cpu Board

  • forum.insignal.co.kr/viewtopic.php?f=7&t=52#p1332

Base Board

  • forum.insignal.co.kr/viewtopic.php?f=7&t=52#p58

WiFi+BT+GPS Module

SWB-A51H Module

  • forum.insignal.co.kr/viewtopic.php?f=7&t=52#p59

WiFi+BT+GPS+FM Module (Arndale board-k / Upgrade Package)

MT6620 Module

  • forum.insignal.co.kr/viewtopic.php?f=7&t=52&p=6078#p6078

Audio Module

WM1811A & AK4678 Module

  • forum.insignal.co.kr/viewtopic.php?f=7&t=52#p60

AK4953 Module (Arndale board-k / Upgrade package)

  • forum.insignal.co.kr/viewtopic.php?f=7&t=52&p=6078#p6077

Camera Module

8M Pixel & 5M Pixel Camera

  • forum.insignal.co.kr/viewtopic.php?f=7&t=52#p61

Display Module

  • forum.insignal.co.kr/viewtopic.php?f=7&t=52#p62

Pre-built Images of Android Jelly Bean for Arndale Board

  • forum.insignal.co.kr/viewtopic.php?f=6&t=62

Proprietary for Arndale Board

Proprietaries for vendor & other peripherals

  • forum.insignal.co.kr/viewtopic.php?f=6&t=63

How to Download Source Tree

Installing Repo

Repo is a tool that makes it easier to work with Git in the context of Android. For more information about Repo, see Version Control.

To install, initialize, and configure Repo, follow these steps:

  • Make sure you have a bin/ directory in your home directory, and that it is included in your path:
$ mkdir ~/bin
$ PATH=~/bin:$PATH
  • Download the Repo script and ensure it is executable:
$ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
  • For version 1.17, the SHA-1 checksum for repo is ddd79b6d5a7807e911b524cb223bc3544b661c28

Initializing a Repo client

After installing Repo, set up your client to access the android source repository:

  • Create an empty directory to hold your working files. If you're using MacOS, this has to be on a case-sensitive filesystem. Give it any name you like:
$ mkdir WORKING_DIRECTORY
$ cd WORKING_DIRECTORY
  • Run repo init to bring down the latest version of Repo with all its most recent bug fixes. You must specify a URL for the manifest, which specifies where the various repositories included in the Android source will be placed within your working directory.
$ repo init -u git://git.insignal.co.kr/samsung/exynos/android/manifest.git -b jb
  • To check out a branch other than "jb", specify it with -b:

A successful initialization will end with a message stating that Repo is initialized in your working directory. Your client directory should now contain a .repo directory where files such as the manifest will be kept.

Getting the files

To pull down files to your working directory from the repositories as specified in the default manifest, run

$ repo sync

The Android source files will be located in your working directory under their project names. The initial sync operation will take an hour or more to complete.
For more about repo sync and other Repo commands, see Version Control.

Download proprietary for Eyxnos5250

Download proprietary archive, vendor_samsung_slsi_exynos5250_xxxxxxxx_xxxxxx.run to root of android source tree.

Make it executable and run it:

$ chmod +x vendor_samsung_slsi_exynos5250_xxxxxxxx_xxxxxx.run
$ ./vendor_samsung_slsi_exynos5250_xxxxxxxx_xxxxxx.run

Download proprietary archive for other peripherals, vendor_insignal_arndale_xxxxxxxx_xxxxxxx.run to root of android source tree.

Make it executable and run it:

$ chmod +x vendor_insignal_arndale_xxxxxxxx_xxxxxxx.run
$ ./vendor_insignal_arndale_xxxxxxxx_xxxxxxx.run

It show license of it's contents. After agree it by typing "I ACCEPT", proprietary files will be extracted under vendor/samsung_slsi/exynos5250/

Software Guides

Host Environment setup guide

  • www.arndaleboard.org/wiki/index.php/WiKi#Host_Environment_for_Android

How to download source tree

  • www.arndaleboard.org/wiki/index.php/WiKi#How_to_Download_Source_Tree

How to build Android system

  • www.arndaleboard.org/wiki/index.php/WiKi#Building_the_System

How to flash a Device

  • www.arndaleboard.org/wiki/index.php/WiKi#How_to_Flash_a_Device

Hardware Guides

  • forum.insignal.co.kr/viewtopic.php?f=7&t=53#p64

Common Resource

Cross compiler for Linux host

  • forum.insignal.co.kr/viewtopic.php?f=6&t=69#p110

Fastboot & Adb for Linux host

  • forum.insignal.co.kr/viewtopic.php?f=6&t=69#p109

USB driver for Windows

  • forum.insignal.co.kr/viewtopic.php?f=6&t=42#p107

More Information

For more information, please visit below site. We will update for your information.

Homepage

  • www.insignal.co.kr

Wiki

  • www.arndaleboard.org/wiki/index.php/WiKi

Upstream Community

  • forum.insignal.co.kr

Samsung System LSI

  • www.samsung.com/global/business/semiconductor/minisite/Exynos/

Insignal Git

  • git.insignal.co.kr

Android Board Informations of Linaro

  • https://wiki.linaro.org/Boards/Arndale/Setup/EnterpriseUbuntuServer
  • https://wiki.linaro.org/Boards/Arndale/Setup/PXEBoot
Retrieved from "www.arndaleboard.org/wiki/index.php?title=Resources&oldid=836"
spacer
gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.