summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2015-05-27 14:06:39 +0100
committerRyan Harkin <ryan.harkin@linaro.org>2015-05-27 14:06:39 +0100
commit77324981900ed296468eb3d9313cf5d837ad0a3f (patch)
tree213c638314efa283c173d804bca188ed59b93712
parente49ff299178fcfd048f268a4bd9b625d8aa7ddc4 (diff)
15.05: remove android/images/armv8-*15.05
Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
-rw-r--r--android/images/armv8-android-fvp-lsk/HOWTO_getsourceandbuild.txt28
-rw-r--r--android/images/armv8-android-fvp-lsk/HOWTO_install.txt104
-rw-r--r--android/images/armv8-android-fvp-lsk/HOWTO_prebuilt.txt69
-rw-r--r--android/images/armv8-android-fvp-lsk/HOWTO_releasenotes.txt52
-rw-r--r--android/images/armv8-android-juno-lsk/HOWTO_eula.txt267
-rw-r--r--android/images/armv8-android-juno-lsk/HOWTO_getsourceandbuild.txt34
-rw-r--r--android/images/armv8-android-juno-lsk/HOWTO_install.txt35
-rw-r--r--android/images/armv8-android-juno-lsk/HOWTO_releasenotes.txt19
-rw-r--r--android/images/armv8-juice-fvp-lsk/HOWTO_getsourceandbuild.txt180
-rw-r--r--android/images/armv8-juice-fvp-lsk/HOWTO_install.txt135
-rw-r--r--android/images/armv8-juice-fvp-lsk/HOWTO_prebuilt.txt69
-rw-r--r--android/images/armv8-juice-fvp-lsk/HOWTO_releasenotes.txt49
-rw-r--r--android/images/armv8-juice-juno-lsk/HOWTO_eula.txt267
-rw-r--r--android/images/armv8-juice-juno-lsk/HOWTO_getsourceandbuild.txt43
-rw-r--r--android/images/armv8-juice-juno-lsk/HOWTO_install.txt35
-rw-r--r--android/images/armv8-juice-juno-lsk/HOWTO_releasenotes.txt19
16 files changed, 0 insertions, 1405 deletions
diff --git a/android/images/armv8-android-fvp-lsk/HOWTO_getsourceandbuild.txt b/android/images/armv8-android-fvp-lsk/HOWTO_getsourceandbuild.txt
deleted file mode 100644
index 3b83d00..0000000
--- a/android/images/armv8-android-fvp-lsk/HOWTO_getsourceandbuild.txt
+++ /dev/null
@@ -1,28 +0,0 @@
-h2. How to download and build Android sources
-
-Recommended method to do a linaro android build is to use linaro android build script(linaro_android_build_cmds.sh). You can download this script from the Downloads section of the build page. Use this script to do a complete ARMv8 Android build for FVP models from scratch. If you prefer to do it manuaaly then follow the "Get the source" and "Build" instructions below.
-
-h3. Get the source
-<pre>
- $ sudo add-apt-repository ppa:linaro-maintainers/tools
- $ sudo apt-get update
- $ sudo apt-get install gnupg flex bison gperf build-essential zip curl zlib1g-dev libc6-dev lib32ncurses5-dev x11proto-core-dev libx11-dev lib32z1-dev libgl1-mesa-dev g++-multilib mingw32 tofrodos python-markdown libxml2-utils xsltproc openjdk-7-jdk openjdk-7-jre vim-common python-parted python-yaml wget uuid-dev
- $ curl "https://android.git.linaro.org/gitweb?p=tools/repo.git;a=blob_plain;f=repo;hb=refs/heads/stable" > repo
- $ chmod +x repo
- $ ./repo init -u git://android.git.linaro.org/platform/manifest.git -b linaro-android-15.05-release -m armv8-android-fvp-lsk.xml
- $ ./repo sync # this may take some time
-</pre>
-
-h3. Build
-<pre>
- $ export CPUS=`grep -c processor /proc/cpuinfo`
- $ export TARGET_PRODUCT=vexpress
- $ export TARGET_BUILD_VARIANT=eng
- $ export USE_LINARO_TOOLCHAIN=true
- $ . build/envsetup.sh
- $ make -j${CPUS} boottarball systemtarball userdatatarball
-</pre>
-
-h2. Running the build on FVP models
-
-Follow "Binary Image Installation" tab for instructions.
diff --git a/android/images/armv8-android-fvp-lsk/HOWTO_install.txt b/android/images/armv8-android-fvp-lsk/HOWTO_install.txt
deleted file mode 100644
index b886ad7..0000000
--- a/android/images/armv8-android-fvp-lsk/HOWTO_install.txt
+++ /dev/null
@@ -1,104 +0,0 @@
-h2. Prerequisites
-
-You'll need latest ARM FVP Base models and a license to use the models. Follow the instructions at http://www.arm.com/products/tools/models/fast-models/foundation-model.php
-
-h2. Get artifacts
-
-Scroll down and click on 'Downloads'
-
-Click on each link to download:
-* boot.tar.bz2
-* system.tar.bz2
-* userdata.tar.bz2
-
-h2. Get linaro image tools
-
-Run these commands to get all the dependencies for linaro-image-tools and the tip of linaro-image-tools
-
-<pre>
- $ sudo add-apt-repository ppa:linaro-maintainers/tools
- $ sudo apt-get update
- $ sudo apt-get install linaro-image-tools
-</pre>
-You can also use the tip of linaro-image-tools from http://git.linaro.org/infrastructure/linaro-image-tools.git
-
-h2. Create mmc image for the ARM FVP Base AEMv8 models
-
-Run linaro image tools
-
-pre. $ linaro-android-media-create --image_file mmc.bin --image_size 2000M --dev vexpress --system system.tar.bz2 --userdata userdata.tar.bz2 --boot boot.tar.bz2
-
-If you're using tip of linaro image tools
-
-pre. $ ./linaro-image-tools/linaro-android-media-create --image_file mmc.bin --image_size 2000M --dev vexpress --system system.tar.bz2 --userdata userdata.tar.bz2 --boot boot.tar.bz2
-
-h2. Running the models (verified on FVP Base model build 5602)
-
-<pre>
- $ tar -jxvf boot.tar.bz2
- $ cd boot/
- $ /path/to/FVP_Base_AEMv8A-AEMv8A/models/Linux64_GCC-4.1/FVP_Base_AEMv8A-AEMv8A \
- -C pctl.startup=0.0.0.0 \
- -C bp.secure_memory=0 \
- -C cluster0.NUM_CORES=4 \
- -C cluster1.NUM_CORES=4 \
- -C cache_state_modelled=0 \
- -C bp.pl011_uart0.untimed_fifos=1 \
- -C bp.secureflashloader.fname=bl1.bin \
- -C bp.flashloader0.fname=fvp_fip.bin \
- -C bp.virtioblockdevice.image_path=../mmc.bin
-</pre>
-
-h3. Set UEFI configuration, update kernel/ramdisk path and bootargs
-
-Stop the UEFI boot process and configure it for FVP models:
-
-<pre>
-$ telnet 127.0.0.1 -debug 5000 -e ^z
-Telnet escape character is 'b'.
-Telnet escape character is '^Z'.
-Trying 127.0.0.1...
-setsockopt (SO_DEBUG): Permission denied
-Connected to 127.0.0.1.
-Escape character is '^Z'.
- 7 seconds
-[1] Linaro disk image on virtio
-[2] Shell
-[3] Boot Manager
-Start: 3
-[1] Add Boot Device Entry
-[2] Update Boot Device Entry
-[3] Remove Boot Device Entry
-[4] Update FDT path
-[5] Return to main menu
-Choice: 2
-[1] Linaro disk image on virtio
-Update entry: 1
-File path of the EFI Application or the kernel: kernel
-Has FDT support? [y/n] y
-Add an initrd: [y/n] y
-File path of the initrd: ramdisk.img
-Arguments to pass to the binary: console=ttyAMA0 earlyprintk=pl011,0x1c090000 amba-clcd.mode=VGA
-Description for this new Entry: Linaro disk image on virtio
-[1] Add Boot Device Entry
-[2] Update Boot Device Entry
-[3] Remove Boot Device Entry
-[4] Update FDT path
-[5] Return to main menu
-Choice: 5
-[1] Linaro disk image on virtio
-[2] Shell
-[3] Boot Manager
-Start: 1
- PEI 1122 ms
- DXE 259 ms
- BDS 8 ms
-Total Time = 1390 ms
-
-[ 0.000000] Initializing cgroup subsys cpu
-[ 0.000000] Linux version 3.10.40-04438-g6a78140 (pundiramit@flying-dutchman) (gcc version 4.9 20140514 (prerelease) (GCC) ) #1 SMP Mon Jun 2 14:50:25 IST 2014
-</pre>
-
-h3. Black screen
-
-The boot screen has been disabled to speed up booting. This means you may not see anything on the CLCD terminal for a while depending on the performance of the machine the model is running on. For example a first boot on a 2 GHz machine with 32 GB of RAM took 20 minutes. Subsequent boots should take approximately half the time to boot.
diff --git a/android/images/armv8-android-fvp-lsk/HOWTO_prebuilt.txt b/android/images/armv8-android-fvp-lsk/HOWTO_prebuilt.txt
deleted file mode 100644
index f699a3e..0000000
--- a/android/images/armv8-android-fvp-lsk/HOWTO_prebuilt.txt
+++ /dev/null
@@ -1,69 +0,0 @@
-Instructions for https://android-build.linaro.org/builds/~linaro-android/<BUILD_NAME>/
-
-= Get artifacts =
-
- Scroll down to the 'Downloads' section
-
- Click on each link to download:
- boot.tar.bz2
- system.tar.bz2
- userdata.tar.bz2
-
-= Get linaro image tools =
-
- Run these commands to get all the dependencies for linaro-image-tools and the tip of linaro-image-tools
-
- $ sudo add-apt-repository ppa:linaro-maintainers/tools
- $ sudo apt-get update
- $ sudo apt-get install linaro-image-tools
-
- If you're using a released build (with a -release or from releases.linaro.org), skip this step.
- If you're using a "tip" build do not skip the step and do the following:
-
- $ sudo apt-get install bzr
- $ bzr branch lp:linaro-image-tools
-
-= Create media (SD card) =
-
- Disable automount (instructions provided for Gnome)
-
- $ TMP1=$(dconf read /org/gnome/desktop/media-handling/automount)
- $ TMP2=$(dconf read /org/gnome/desktop/media-handling/automount-open)
- $ dconf write /org/gnome/desktop/media-handling/automount false
- $ dconf write /org/gnome/desktop/media-handling/automount-open false
-
- Insert an SD card
-
- Run 'dmesg'
-
- $ dmesg
-
- Look for a line that looks like the following at the end of the log
-
- [288582.790722] sdc: sdc1 sdc2 sdc3 sdc4 < sdc5 sdc6 >
-
- WARNING: In the next step, make sure you use /dev/"whatever you see above".
- You can erase your hard drive with the wrong parameter.
-
- Run linaro image tools
-
- $ linaro-android-media-create --mmc /dev/sdc --dev <BOARD> --boot boot.tar.bz2 --system system.tar.bz2 --userdata userdata.tar.bz2
-
- If you're using tip of linaro image tools
-
- $ ./linaro-image-tools/linaro-android-media-create --mmc /dev/sdc --dev <BOARD> --boot boot.tar.bz2 --system system.tar.bz2 --userdata userdata.tar.bz2
-
- To find <BOARD> run linaro-android-media-create with a -h and read the help.
-
- Restore automount
-
- $ dconf write /org/gnome/desktop/media-handling/automount $TMP1
- $ dconf write /org/gnome/desktop/media-handling/automount-open $TMP2
-
- Remove the SD card from the device writer and plug it into the board.
-
-= Check console output =
-
- Plug in an USB-to-serial converter and run minicom
-
- $ minicom -D /dev/ttyUSB0 -w -C minicom.txt
diff --git a/android/images/armv8-android-fvp-lsk/HOWTO_releasenotes.txt b/android/images/armv8-android-fvp-lsk/HOWTO_releasenotes.txt
deleted file mode 100644
index 521cfd2..0000000
--- a/android/images/armv8-android-fvp-lsk/HOWTO_releasenotes.txt
+++ /dev/null
@@ -1,52 +0,0 @@
-
-h2. About the Linaro Android Release for FVP (Multi-arch 64-bit)
-
-The Linaro Android release for FVP is based on a snapshot of the Android AOSP master taken on the 13th July 2014. The build contains multi-arch support allowing full use of the 64-bit ARMv8-A architecture and supports both 64-bit and 32-bit applications. Java-only applications will run as 64-bit in the supplied configuration with no modification. The release uses Linaro Stable Kernel version 3.10 and runs on FVP Base AEMv8 model 0.8 build 5202 and later. The sources are built using Linaro GCC version 4.9.
-
-The ARMv8-A reference software stack combined with the Juno ARM Development Platform (ADP) provides the ARM ecosystem with a foundation to accelerate Android availability on 64-bit silicon. The availability of this port is the culmination of a broad architecture enablement program carried out by Linaro, ARM and the ARM partnership. ARM partners will now have access to an AOSP file system with support for both 64-bit and 32-bit apps, together with a broad range of supporting material including the ARMv8-A FVP models, open source toolchain from Linaro and supporting documentation.
-
-For those with access to the FVPs, this release can be used to examine the internals of the Android Open Source Project in a running system. Application developers, particularly those working in Java, will also be able to use develop some applications via the recently announced Android 'L' preview SDK.
-
-The Android AOSP software provided in this release is functionally tested with CTS version 4.4 and the CTS results are shared with members. The BIONIC component is validated with Android BIONIC tests. Android Monkey tests were run for stress testing. Multi-arch support has been validated using examples provided in Android NDK. Detailed CTS results are made available to members seperately through the Juice mailing list.
-
-The Linaro Android releases for FVP appear monthly. Sources are also made available so you can build your own images (see the "Building from Source tab":https://releases.linaro.org/latest/android/images/armv8-android-fvp-lsk/#tabs-2). 
-
-A build for the Juno ARM Development Platform is available "here":http://releases.linaro.org/latest/android/images/armv8-android-juno-lsk
-
-p. Android AOSP Patches - Summary :
-
-The following list of patches developed by ARM and Linaro engineering teams were applied to Android AOSP dated June 1st 2014 to get Android booting to UI on ARMv8 Fast Models. These patches can be found on Linaro's Android Git repositories. Few of these patches have been submitted to AOSP and being tracked for acceptance.
-
-* "Revert Hide _tolower_tab_ and _toupper_tab_ on LP64":https://android.git.linaro.org/gitweb/platform/bionic.git/commit/ed8f5e2dad362e5460645491196953ffd02c5dfb
-* "build tarballs, set default runtime and zygote config in device config files":https://android.git.linaro.org/gitweb/platform/build.git/commit/d7803ba6f7edb13240a89930a03367ac54e80784
-* "CtsVerifier: Add dependency of android.test.runner":https://android.git.linaro.org/gitweb/platform/cts.git/commit/eba8a294c14a32c822af4bee13ee282cd59840ce
-* "security: add CtsTestStubs.apk as prerequisite apk":https://android.git.linaro.org/gitweb/platform/cts.git/commit/fbb76c03bb4732ef4f217abaf7806295a78ca879
-* "Increase timeouts":https://android.git.linaro.org/gitweb/platform/frameworks/base.git/commit/4ceeef89d945db74db1bdba0ee2a1a51726131fd
-* "svc: add netd command":https://android.git.linaro.org/gitweb/platform/frameworks/base.git/commit/34dc72b5f74610e574da1a601be67b63d64c1bdc
-* "svc netd: add one command to set both interface and nameserver":https://android.git.linaro.org/gitweb/platform/frameworks/base.git/commit/7e6999cfad753fd5f97bb9cf25d355066613f150
-* "Increase timeouts":https://android.git.linaro.org/gitweb/platform/libcore.git/commit/d2f8d316035b92bcc6d12a70de604b361acefd40
-* "Don't write to the tty in init to avoid the cursor":https://android.git.linaro.org/gitweb/platform/system/core.git/commit/08ebb5a43853c71a846c75f60ed6dda7ca66d5be
-* "bionic libc test: remove test of test_vfprintf_leak":https://android.git.linaro.org/gitweb/platform/system/extras.git/commit/11a22aa17330b5e33df3d0d6c12a834f7e9f584a
-
-h2. Where To Find More Information
-
-More information on Linaro can be found on our "website.":http://www.linaro.org/
-
-h2. Feedback and Support
-
-Subscribe to the important Linaro mailing lists and join our IRC channels to stay on top of Linaro development.
-
-** Linaro Android Development "mailing list":http://lists.linaro.org/mailman/listinfo/linaro-android
-** Linaro Android IRC channel on irc.freenode.net at @#linaro-android@
-
-* Bug reports should be filed in Launchpad against the individual packages that are affected. If a suitable package cannot be identified, feel free to assign them to "Linaro Android project":http://bugs.launchpad.net/linaro-android/+filebug.
-* Questions? "ask Linaro":http://ask.linaro.org/.
-* Interested in commercial support? inquire at "Linaro support":mailto:support@linaro.org
-
-h2. Fixed in this release
-
-* NONE
-
-h2. Known issues
-
-* CTS failures are observed for few packages. Detailed CTS report is available to members for reference.
diff --git a/android/images/armv8-android-juno-lsk/HOWTO_eula.txt b/android/images/armv8-android-juno-lsk/HOWTO_eula.txt
deleted file mode 100644
index d8e300e..0000000
--- a/android/images/armv8-android-juno-lsk/HOWTO_eula.txt
+++ /dev/null
@@ -1,267 +0,0 @@
-THIS END USER LICENCE AGREEMENT ("LICENCE") IS A LEGAL AGREEMENT BETWEEN YOU (EITHER A SINGLE INDIVIDUAL, OR SINGLE LEGAL ENTITY) AND ARM LIMITED ("ARM") FOR THE USE OF THE DELIVERABLES ACCOMPANYING THIS LICENCE. ARM IS ONLY WILLING TO LICENSE THE DELIVERABLES TO YOU ON CONDITION THAT YOU ACCEPT ALL OF THE TERMS IN THIS LICENCE. BY CLICKING "I AGREE" OR BY INSTALLING OR OTHERWISE USING OR COPYING THE DELIVERABLES YOU INDICATE THAT YOU AGREE TO BE BOUND BY ALL THE TERMS OF THIS LICENCE. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENCE, ARM IS UNWILLING TO LICENSE THE DELIVERABLES TO YOU AND YOU MAY NOT INSTALL, USE OR COPY THE DELIVERABLES, BUT YOU SHOULD PROMPTLY RETURN THE DELIVERABLES TO YOUR SUPPLIER AND ASK FOR A REFUND OF ANY LICENCE FEE PAID.
-
-
-
-"Juno ARM Development Platform" means a hardware development board purchased directly from ARM or its authorised distributors.
-
-
-
-"Deliverables"; means any software, firmware, boardfiles, data and documentation accompanying this Licence, any printed, electronic or online documentation supplied with it, and any updates, patches and modifications ARM may make available to you under the terms of this Licence, in all cases relating to the supporting deliverables for the Juno ARM Development Platform.
-
-
-
-"Separate Files" means the separate files identified in Part D of the Schedule.
-
-
-
-1. LICENCE GRANTS.
-
-(i) DELIVERABLES: ARM hereby grants to you, subject to the terms and conditions of this Licence, a non-exclusive, non-transferable licence solely for use on a Juno ARM Development Platform and only for the purposes of your internal development, testing and debugging of software applications that are designed to run solely on microprocessors manufactured under licence from ARM, to:
-
-
-
-(a) use and copy the Deliverables identified in Part A of the Schedule;
-
-
-
-(b) use, copy and modify the Deliverables identified in Part B and Part C of the Schedule;
-
-
-
-&#040;c) distribute and sub-license to third parties the right to use, copy and modify the Deliverables identified in Part C(i) of the Schedule, or your derivatives thereof, as part of your own products ("Licensed Products") provided you comply with the terms of Clause 1(ii);
-
-
-
-(d) permit either or both your customers and your authorised distributors to redistribute the Deliverables identified in Part C(i) of the Schedule, or your derivatives thereof, solely as part of Licensed Products developed by you or your permitted users (identified in clause 2 paragraph three below).
-
-
-
-Except as permitted by clause 1(i)(b) above, you shall not modify the Deliverables. Except as permitted by clauses 1(i)&#040;c) and 1(i)(d) above, you shall not redistribute any of the Deliverables.
-
-
-
-(ii) FURTHER CONDITIONS APPLICABLE TO REDISTRIBUTION AND SUB-LICENSING: If you choose to redistribute the Deliverables identified in Part C(i) of the Schedule ("Example Code") you agree: (a) to ensure that they are licensed for use only as part of Licensed Products and only on microprocessors manufactured or simulated under licence from ARM; (b) not to use ARM's or any of its licensors names, logos or trademarks to market the Licensed Products; &#040;c) to include valid copyright notices on the Licensed Products, and preserve any copyright notices which are included with, or in, the Example Code; (d) to comply with all the other terms of this Licence; and (e) to ensure that any further redistribution is limited to redistribution by either or both your customers and your authorised distributors only as part of Licensed Products developed by you or your permitted users and only for use on microprocessors manufactured or simulated under licence from ARM and that your customers and authorised distributors comply with the terms of this clause 1(ii).
-
-
-
-2. RESTRICTIONS ON USE OF THE DELIVERABLES.
-
-COPYING: You shall not use or copy the Deliverables except as expressly authorised in this Licence. You may make one additional copy of the delivered Deliverables media or image for backup or archival purposes.
-
-PERMITTED USERS: The Deliverables shall be used only by your employees, or by your bona fide sub-contractors for whose acts and omissions you hereby agree to be responsible to ARM to the same extent as you are for any acts and omissions of your employees, and provided always that such sub-contractors; (i) work only onsite at your premises; (ii) comply with the terms of this Licence; (iii) are contractually obligated to use the Deliverables only for your benefit, and (iv) agree to assign all their work product and any rights they create therein in the supply of such work to you. Only the single individual, company or other legal entity to whom ARM is supplying this Licence may use the Deliverables. Except as provided in this clause, you shall not allow third parties (including but not limited to any subsidiary, parent or affiliated companies, or offsite contractors you may have) to use the Deliverables unless ARM specifically agrees otherwise with you on a case by case basis.
-
-
-
-NO REMOTE USE: The Deliverables shall only be used onsite at your premises and only for your benefit.
-
-MULTIPLE VERSIONS: The media on which the Deliverables resides may contain more than one version of the Deliverables, each of which is compatible with a different operating system (such as Microsoft Windows XP Professional and Red Hat Linux).
-
-
-
-ACADEMIC OR EDUCATIONAL USERS ONLY: If you or your employer or institution paid academic or educational pricing for the Deliverables, or the Deliverables are identified as an academic or educational version (together "Academic Software"), then notwithstanding anything else in this Licence, YOU AGREE TO USE THE ACADEMIC SOFTWARE ONLY FOR ACADEMIC, NON-COMMERCIAL PURPOSES, AND ARM DOES NOT GRANT YOU ANY RIGHTS TO DISTRIBUTE OR SUB-LICENSE ANY APPLICATIONS DEVELOPED USING THE ACADEMIC SOFTWARE UNDER THIS LICENCE.
-
-
-
-REVERSE ENGINEERING: Except to the extent that such activity is permitted by applicable law you shall not reverse engineer, decompile or disassemble any of the Deliverables. If the Deliverables were provided to you in Europe you shall not reverse engineer, decompile or disassemble any of the Deliverables for the purposes of error correction.
-
-
-
-BENCHMARKING: This licence does not prevent you from using the Deliverables for internal benchmarking purposes. However, you shall treat any and all benchmarking data, and any other results of your use or testing of the Deliverables which are indicative of performance, efficacy, reliability or quality, as confidential information and you shall not disclose such information to any third party without the express written permission of ARM.
-
-
-
-RESTRICTIONS ON TRANSFER OF LICENSED RIGHTS: The rights granted to you under this Licence may not be assigned, sublicensed or otherwise transferred by you to any third party without the prior written consent of ARM. An assignment shall be deemed to include, without limitation; (i) any transaction or series of transactions whereby a third party acquires, directly or indirectly, the power to control the management and policies of you, whether through the acquisition of voting securities, by contract or otherwise; or (ii) the sale of more than fifty percent (50%) of the your assets whether in a single transaction or series of transactions. You shall not rent or lease the Deliverables. You shall not share the Deliverables with contractors (except as identified in the 'PERMITTED USERS' clause above) or other third parties.
-
-
-
-COPYRIGHT AND RESERVATION OF RIGHTS: The Deliverables are owned by ARM or its licensors and are protected by copyright and other intellectual property laws and international treaties. The Deliverables are licensed not sold. You acquire no rights to the Deliverables other than as expressly provided by this Licence. You shall not remove from the Deliverables any copyright notice or other notice and shall ensure that any such notice is reproduced in any copies of the whole or any part of the Deliverables made by you or your permitted users.
-
-
-
-3. SUPPORT AND MAINTENANCE.
-
-If you purchased the Deliverables directly from ARM, and you are not receiving them as an update or upgrade or as Academic Software (defined in Clause 2), you are entitled to reasonable support and maintenance for the Deliverables for the period of one (1) year from the date of purchase. The support will be provided on any version of the Deliverables which, at the date of your support request, are either; (a) the current version made generally available by ARM; or (b) the previous version made generally available by ARM at some time during the previous ninety (90) days.
-
-
-
-Support will be provided by telephone, email or other written format designated by ARM, prioritised at ARM's discretion, and may not be used as a substitute for training or as additional resource for your programming projects. Maintenance will be provided in the form of upgrades, updates and patch releases to the Deliverables as and when they are made generally available from ARM.
-
-
-
-ARM's obligation under this Clause 3 is limited to the provision of support and maintenance to you and ARM is under no obligation to provide any support and maintenance to any third parties under this Licence. If you purchase support and maintenance for additional years it will be provided pursuant to this Clause 3 and will be subject to the terms and conditions of this Licence.
-
-
-
-If; (i) you obtained the Deliverables from an ARM authorised reseller or other third party; (ii) Deliverables were provided free of charge or for evaluation; or (iii) it is Academic Software, you are not entitled to any support for the Deliverables from ARM, but ARM may, at its sole discretion provide limited support to you. The vendor of the Deliverables may or may not offer support to you for the Deliverables. Please refer to the Technical Support area of http://www.arm.com for contact details for ARM's support service and (if applicable) other authorised support channels. ARM shall be under no obligation to provide support in respect of any modifications (where permitted) to the Deliverables.
-
-
-
-4. CONFIDENTIALITY.
-
-You acknowledge that the Deliverables and any benchmarking data and related information mentioned in Clause 2 contains trade secrets and confidential material, and you agree to maintain all such information in confidence and apply security measures no less stringent than the measures which you apply to protect your own like information, but not less than a reasonable degree of care, to prevent their unauthorised disclosure and use. Subject to any restrictions imposed by applicable law, the period of confidentiality shall be indefinite. You agree that you shall not use any such information other than in normal use of the Deliverables under the licences granted in this Licence.
-
-
-
-Notwithstanding the foregoing you may disclose the Deliverables identified in Part C(i) of the Schedule to third parties solely in exercise of the licence rights contained in Clause 1(i)&#040;c) of this Licence.
-
-
-
-5. LIMITED WARRANTIES.
-
-For the period of ninety (90) days from the date of receipt by you of the Deliverables, ARM warrants to you that (i) the media on which the Deliverables are provided shall be free from defects in materials and workmanship under normal use; and (ii) the Deliverables will perform substantially in accordance with the accompanying documentation (if any). ARM's total liability and your exclusive remedy for breach of these limited warranties shall be limited to ARM, at ARM's option; (a) replacing the defective Deliverables; or (b) using reasonable efforts to correct material, documented, reproducible defects in the Deliverables and delivering such corrected Deliverables to you. Any replacement Deliverables will be warranted for the remainder of the original warranty period or thirty (30) days, whichever is the longer.
-
-
-
-EXCEPT AS PROVIDED ABOVE, YOU AGREE THAT THE DELIVERABLES ARE LICENSED "AS IS", AND THAT ARM EXPRESSLY DISCLAIMS ALL REPRESENTATIONS, WARRANTIES, CONDITIONS OR OTHER TERMS, EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON- INFRINGEMENT, SATISFACTORY QUALITY, AND FITNESS FOR A PARTICULAR PURPOSE.
-
-
-
-YOU EXPRESSLY ASSUME ALL LIABILITIES AND RISKS, FOR USE OR OPERATION OF SOFTWARE APPLICATIONS, INCLUDING WITHOUT LIMITATION, APPLICATIONS DESIGNED OR INTENDED FOR MISSION CRITICAL APPLICATIONS, SUCH AS PACEMAKERS, WEAPONARY, AIRCRAFT NAVIGATION, FACTORY CONTROL SYSTEMS, ETC. SHOULD THE DELIVERABLES PROVE DEFECTIVE, YOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-
-
-6. LIMITATION OF LIABILITY.
-
-TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL ARM BE LIABLE FOR ANY INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING LOSS OF PROFITS) ARISING OUT OF THE USE OR INABILITY TO USE THE DELIVERABLES WHETHER BASED ON A CLAIM UNDER CONTRACT, TORT OR OTHER LEGAL THEORY, EVEN IF ARM WAS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-ARM does not seek to limit or exclude liability for death or personal injury arising from ARM's negligence or ARM's fraud and because some jurisdictions do not permit the exclusion or limitation of liability for consequential or incidental damages the above limitation relating to liability for consequential damages may not apply to you.
-
-
-
-NOTWITHSTANDING ANYTHING TO THE CONTRARY CONTAINED IN THIS LICENCE, THE MAXIMUM LIABILITY OF ARM TO YOU IN AGGREGATE FOR ALL CLAIMS MADE AGAINST ARM IN CONTRACT TORT OR OTHERWISE UNDER OR IN CONNECTION WITH THE SUBJECT MATTER OF THIS LICENCE SHALL NOT EXCEED THE GREATER OF; (I) THE TOTAL OF SUMS PAID BY YOU TO ARM (IF ANY) FOR THIS LICENCE; AND (II) $10 USD.
-
-THE EXISTENCE OF MORE THAN ONE CLAIM WILL NOT ENLARGE OR EXTEND THE LIMIT.
-
-
-
-7. THIRD PARTY RIGHTS.
-
-The Separate Files are delivered subject to and your use is governed by their own separate licence agreements. This Licence does not apply to such Separate Files and they are not included in the term "Deliverables" under this Licence. You agree to comply with all terms and conditions imposed on you in respect of such Separate Files including those identified in the Schedule ("Third Party Terms").
-
-
-
-ARM HEREBY DISCLAIMS ANY AND ALL WARRANTIES EXPRESS OR IMPLIED FROM ANY THIRD PARTIES REGARDING ANY SEPARATE FILES, ANY THIRD PARTY MATERIALS INCLUDED IN THE DELIVERABLES, ANY THIRD PARTY MATERIALS FROM WHICH THE DELIVERABLES ARE DERIVED (COLLECTIVELY "OTHER CODE"), AND THE USE OF ANY OR ALL THE OTHER CODE IN CONNECTION WITH THE DELIVERABLES, INCLUDING (WITHOUT LIMITATION) ANY WARRANTIES OF SATISFACTORY QUALITY OR FITNESS FOR A PARTICULAR PURPOSE.
-
-
-
-NO THIRD PARTY LICENSORS OF OTHER CODE SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND WHETHER MADE UNDER CONTRACT, TORT OR OTHER LEGAL THEORY, ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE OTHER CODE OR THE EXERCISE OF ANY RIGHTS GRANTED UNDER EITHER OR BOTH THIS LICENCE AND THE LEGAL TERMS APPLICABLE TO ANY SEPARATE FILES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-
-
-8. GOVERNMENT END USERS.
-
-US Government Restrictions: Use, duplication, reproduction, release, modification, disclosure or transfer of the Deliverables is restricted in accordance with the terms of this Licence.
-
-
-
-9. TERM AND TERMINATION.
-
-This Licence shall remain in force until terminated by you or by ARM. Without prejudice to any of its other rights if you are in breach of any of the terms and conditions of this Licence then ARM may terminate this Licence immediately upon giving written notice to you. You may terminate this Licence at any time. Upon termination of this Licence by you or by ARM you shall stop using the Deliverables and confidential information and destroy all copies of the Deliverables and confidential information in your possession together with all documentation and related materials. Notwithstanding the foregoing, except where ARM has terminated this Licence for your breach, your rights to distribute the Example Code as part of Licensed Products developed prior to termination shall survive termination of this Licence, subject to the terms of this Licence. The provisions of Clauses 4, 6, 7, 8, 9 and 10 shall survive termination of this Licence.
-
-
-
-10. GENERAL.
-
-This Licence is governed by English Law. Except where ARM agrees otherwise in; (i) a written contract signed by you and ARM; or (ii) a written contract provided by ARM and accepted by you, this is the only agreement between you and ARM relating to the Deliverables and it may only be modified by written agreement between you and ARM. This Licence may not be modified by purchase orders, advertising or other representation by any person. If any clause or sentence in this Licence is held by a court of law to be illegal or unenforceable the remaining provisions of this Licence shall not be affected thereby. The failure by ARM to enforce any of the provisions of this Licence, unless waived in writing, shall not constitute a waiver of ARM's rights to enforce such provision or any other provision of this Licence in the future.
-
-
-
-The Deliverables provided under this Licence are subject to U.S. export control laws, including the U.S. Export Administration Act and its associated regulations, and may be subject to export or import regulations in other countries. You agree to comply fully with all laws and regulations of the United States and other countries ("Export Laws") to assure that the Deliverables, are not (1) exported, directly or indirectly, in violation of Export Laws, either to any countries that are subject to U.S.A. export restrictions or to any end user who has been prohibited from participating in the U.S.A. export transactions by any federal agency of the U.S.A. government; or (2) intended to be used for any purpose prohibited by Export Laws, including, without limitation, nuclear, chemical, or biological weapons proliferation.
-
-
-
-To the extent that the provisions contained in this Licence conflict with any provisions of any other licence you have entered with ARM governing the Deliverables the provisions contained in this Licence shall prevail over and shall supersede any such conflicting provisions.
-
-
-
-SCHEDULE
-
-*Part A*
-
-*Hardware Binaries:*
-
-FPGA bitstream file for any or all of the Hardware Source identified below in this Part A
-
-
-
-*Software Binaries:*
-
-Motherboard configuration controller
-
-Daughterboard configuration controller
-
-Daughterboard Application note SelfTest
-
-SCP firmware
-
-Mali GPU Driver
-
-
-
-*Documentation:*
-
-Documentation, provided as PDF
-
-
-
-*Hardware Source:*
-
-Hardware netlists of the ARM CoreLink peripheral technology and components known as TLX-400, NIC-400, and PL330
-
-
-
-*Header Files:*
-
-Provided as part of and with the Mali GPU Driver
-
-
-
-*Part B*
-
-*Wrapper:*
-
-Application Note wrapper file provided as hardware source files and netlists.
-
-
-
-*Part C: Example Code*
-
-(i) Platform specific libraries and source code.
-
-(ii) ARM source code of Application note SelfTest.
-
-
-
-*Part D: Separate Files*
-
-
-
-A. UEFI firmware, including drivers for third party components licensed to you under BSD 3-Clause.
-
-
-
-B. Linux kernel licensed to you under the GNU General Public License version 2.0
-
-
-
-To the extent that ARM is obliged to do so, ARM hereby offers to supply the files which are subject to the GNU General Public Licence version 2 (identified above), in source code form, subject to the terms of the GNU General Public License version 2, upon request. This offer is valid for three (3) years from the date of your acceptance of this Licence.
-
-
-
-C. ARM Trusted Firmware licensed to you under BSD 3-Clause.
-
-
-
-D. ARM Gator Profile driver and daemon licensed to you under the GNU General Public License version 2.0
-
-
-
-To the extent that ARM is obliged to do so, ARM hereby offers to supply the files which are subject to the GNU General Public Licence version 2 (identified above), in source code form, subject to the terms of the GNU General Public License version 2, upon request. This offer is valid for three (3) years from the date of your acceptance of this Licence.
-
-
-
-/end
-
-
-
-ARM contract references: LES-PRE-20435 JUNO ARM DEVELOPMENT PLATFORM DELIVERABLES
diff --git a/android/images/armv8-android-juno-lsk/HOWTO_getsourceandbuild.txt b/android/images/armv8-android-juno-lsk/HOWTO_getsourceandbuild.txt
deleted file mode 100644
index 17004e2..0000000
--- a/android/images/armv8-android-juno-lsk/HOWTO_getsourceandbuild.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-h2. License
-
-The use of Juno software is subject to the terms of the Juno "End User License Agreement":https://releases.linaro.org/latest/android/images/armv8-android-juno-lsk/#tabs-5.
-
-h1. Accessing Source Code
-
-h2. Linaro Android Source Code
-
-Run the "linaro_android_build_cmds.sh":http://releases.linaro.org/latest/android/images/armv8-android-juno-lsk/linaro_android_build_cmds.sh script, it will download the entire source code for both Android and the kernel and attempt to build it.
-
-The pinned and source manifests can be found here:
-
-* "Pinned Manifest":http://releases.linaro.org/latest/android/images/armv8-android-juno-lsk/pinned-manifest.xml ("?":https://wiki.linaro.org/Platform/Android/ReproduceABuildExactly)
-* "Source Manifest":http://releases.linaro.org/latest/android/images/armv8-android-juno-lsk/source-manifest.xml
-
-h2. Compiling Linaro Android RootFS+Kernel
-
-The following simple steps download, install and compile a complete Linaro Android distribution
-
-* Download and install Ubuntu 14.04 64 bit or newer ("download":http://www.ubuntu.com)
-* Accept the EULA and download the Mali graphics (vendor.tar.bz2) libraries from "here":https://releases.linaro.org/latest/android/images/armv8-android-juno-lsk/vendor.tar.bz2
-* Download the Android building script for this build from "here":http://releases.linaro.org/latest/android/images/armv8-android-juno-lsk/linaro_android_build_cmds.sh or from the list of artifacts listed above.
-
-* Run the script
-
-bc. chmod a+x linaro_android_build_cmds.sh
-./linaro_android_build_cmds.sh -o $PWD/vendor.tar.bz2 -m pinned-manifest.xml
-
-h3. Installing Android on your board
-
-bc. cd android/out/target/product/juno
-sudo linaro-android-media-create --mmc /dev/sdX --dev vexpress --boot boot.tar.bz2 --system system.tar.bz2 --userdata userdata.tar.bz2
-
-Insert the USB drive into your board and reboot it. You must configure UEFI each time you create a new disk image.
diff --git a/android/images/armv8-android-juno-lsk/HOWTO_install.txt b/android/images/armv8-android-juno-lsk/HOWTO_install.txt
deleted file mode 100644
index 5a0dd78..0000000
--- a/android/images/armv8-android-juno-lsk/HOWTO_install.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-h2. License
-
-The use of Juno software is subject to the terms of the Juno "End User License Agreement":https://releases.linaro.org/latest/android/images/armv8-android-juno-lsk/#tabs-5.
-
-h2. Installation
-
-h3. Pre-Installation Steps
-
-* Ubuntu 12.04 64 bit or newer on your desktop PC ("www.ubuntu.com":http://www.ubuntu.com)
-* Before any installation begins, it is important that you ensure your board has the latest firmware installed
-** See the Juno Firmware wiki for more details:
-** "https://wiki.linaro.org/ARM/Juno/Firmware":https://wiki.linaro.org/ARM/Juno/Firmware
-* 4GB USB drive or larger
-* Choose either to use a pre-built image or to build a custom image by following the steps below
-
-h3. Using pre-built image
-
-* Uncompress the downloaded pre-built image (juno.img.bz2) and write it to a USB drive
-* Safely remove the USB drive and insert it into the board
-
-h3. Building a custom image using pre-built components
-
-* Download Artifacts from above
-* Get "Linaro image tools":https://wiki.linaro.org/Linaro-Image-Tools
-* Create media
-
-bc. linaro-android-media-create --mmc /dev/sdX --dev vexpress --boot boot.tar.bz2 --system system.tar.bz2 --userdata userdata.tar.bz2
-
-h3. Post-installation steps
-
-* Safely remove the USB drive and insert it into the board
-* "Configure UEFI":https://wiki.linaro.org/ARM/UEFI#Configuring_UEFI_to_boot_Android_on_Juno
-
-
diff --git a/android/images/armv8-android-juno-lsk/HOWTO_releasenotes.txt b/android/images/armv8-android-juno-lsk/HOWTO_releasenotes.txt
deleted file mode 100644
index fd37448..0000000
--- a/android/images/armv8-android-juno-lsk/HOWTO_releasenotes.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-h2. Linaro Android Engineering Build for Juno (Multi-arch 64-bit)
-
-ARM's customers should use the latest ARM Member Build here:
-
-* "http://releases.linaro.org/latest/members/arm/android/images/armv8-android-juno-lsk":http://releases.linaro.org/latest/members/arm/android/images/armv8-android-juno-lsk
-
-ARM Member Builds capture the latest content and information at that ARM wishes to present to it's partners and users. The Member Build contains a more complete set of release notes, installation and build instructions.
-
-h3. License
-
-The use of Juno software is subject to the terms of the Juno "End User License Agreement":https://releases.linaro.org/latest/android/images/armv8-android-juno-lsk/#tabs-5.
-
-h2. Support
-
-Please send any ARM support enquiries to "juno-support@arm.com":mailto:juno-support@arm.com?subject=Juno%20support%20request. Engineers at Linaro Members can receive support for Juno by sending support requests to "support@linaro.org":mailto:support@linaro.org?subject=Juno%20support%20request or visiting "http://support.linaro.org":http://support.linaro.org.
-
-h3. Known Issues
-
-Known Issues are managed in "Bugzilla":https://bugs.linaro.org
diff --git a/android/images/armv8-juice-fvp-lsk/HOWTO_getsourceandbuild.txt b/android/images/armv8-juice-fvp-lsk/HOWTO_getsourceandbuild.txt
deleted file mode 100644
index da566db..0000000
--- a/android/images/armv8-juice-fvp-lsk/HOWTO_getsourceandbuild.txt
+++ /dev/null
@@ -1,180 +0,0 @@
-h2. Prerequisites
-
-To clone the sources you must be able to ssh to git.linaro.org and be part of the big-little-switcher-private group. Contact "Philip Colmer" <philip.colmer@linaro.org> for access requests.
-
-h2. How to download and build Android sources
-
-Recommended method to do a linaro android build is to use linaro android build script(linaro_android_build_cmds.sh). You can download this script from the Downloads section of the build page. Use this script to do a complete ARMv8 Android build for FVP models from scratch. If you prefer to do it manuaaly then follow the "Get the source" and "Build" instructions below.
-
-h3. Get the source
-<pre>
- $ sudo add-apt-repository ppa:linaro-maintainers/tools
- $ sudo apt-get update
- $ sudo apt-get install gnupg flex bison gperf build-essential zip curl zlib1g-dev libc6-dev lib32ncurses5-dev x11proto-core-dev libx11-dev lib32z1-dev libgl1-mesa-dev g++-multilib mingw32 tofrodos python-markdown libxml2-utils xsltproc openjdk-7-jdk openjdk-7-jre vim-common python-parted python-yaml wget uuid-dev
- $ curl "https://android.git.linaro.org/gitweb?p=tools/repo.git;a=blob_plain;f=repo;hb=refs/heads/stable" > repo
- $ chmod +x repo
- $ ./repo init -u ssh://$USER@linaro-private.git.linaro.org/srv/linaro-private.git.linaro.org/android/manifest.git -b linaro-android-15.05-release -m armv8-juice-lsk.xml
- $ sed -i "s/linaro-big-little-switcher-bot/$USER/" .repo/manifest.xml
- $ ./repo sync # this may take some time
-</pre>
-
-h3. Build
-<pre>
- $ export CPUS=`grep -c processor /proc/cpuinfo`
- $ export TARGET_PRODUCT=juice
- $ export TARGET_BUILD_VARIANT=eng
- $ . build/envsetup.sh
- $ make -j${CPUS} boottarball systemtarball userdatatarball
-</pre>
-
-h2. Get linaro image tools
-
-Run these commands to get all the dependencies for linaro-image-tools
-<pre>
- $ sudo add-apt-repository ppa:linaro-maintainers/tools
- $ sudo apt-get update
- $ sudo apt-get install linaro-image-tools
-</pre>
-You can also use the tip of linaro-image-tools from http://git.linaro.org/infrastructure/linaro-image-tools.git
-
-h2. How to run Juice images on FVP models
-
-h3. Create mmc image to be used on ARM FVP Base AEMv8 models
-
-Run linaro image tools
-
-pre. $ linaro-android-media-create --image_file mmc.img --image_size 2000M --dev vexpress --system system.tar.bz2 --userdata userdata.tar.bz2 --boot boot.tar.bz2
-
-If you're using tip of linaro image tools
-
-pre. $ ./linaro-image-tools/linaro-android-media-create --image_file mmc.img --image_size 2000M --dev vexpress --system system.tar.bz2 --userdata userdata.tar.bz2 --boot boot.tar.bz2
-
-h3. Extract the preboot files
-
-pre. tar -jxvf boot.tar.bz2
-
-h3. Setup the runtime environment
-
-<pre>
- $ export ARMLMD_LICENSE_FILE="8224@localhost"
- $ ssh -L 8224:localhost:8224 -L 18224:localhost:18224 -N $USER@flexlm.linaro.org
-</pre>
-
-h3. Running the models (verified on FVP Base model build 5602)
-
-<pre>
- $ cd boot
- $ /path/to/FVP_Base_AEMv8A-AEMv8A/models/Linux64_GCC-4.1/FVP_Base_AEMv8A-AEMv8A \
- -C pctl.startup=0.0.0.0 \
- -C bp.secure_memory=0 \
- -C cluster0.NUM_CORES=1 \
- -C cluster1.NUM_CORES=1 \
- -C cache_state_modelled=0 \
- -C bp.pl011_uart0.untimed_fifos=1 \
- -C bp.secureflashloader.fname=fvp_bl1.bin \
- -C bp.flashloader0.fname=fvp_fip.bin \
- -C bp.virtioblockdevice.image_path=../mmc.img
-</pre>
-
-h3. Console redirection
-
-To redirect the console open a terminal and run
-
-pre. telnet 127.0.0.1 5000
-
-h3. Set UEFI configuration, update kernel/ramdisk path and bootargs
-
-Stop the UEFI boot process and configure it for FVP models:
-
-<pre>
-$ telnet 127.0.0.1 -debug 5000 -e ^z
-Telnet escape character is 'b'.
-Telnet escape character is '^Z'.
-Trying 127.0.0.1...
-setsockopt (SO_DEBUG): Permission denied
-Connected to 127.0.0.1.
-Escape character is '^Z'.
- 7 seconds
-[1] Linaro disk image on virtio
-[2] Shell
-[3] Boot Manager
-Start: 3
-[1] Add Boot Device Entry
-[2] Update Boot Device Entry
-[3] Remove Boot Device Entry
-[4] Update FDT path
-[5] Return to main menu
-Choice: 2
-[1] Linaro disk image on virtio
-Update entry: 1
-File path of the EFI Application or the kernel: kernel
-Has FDT support? [y/n] y
-Add an initrd: [y/n] y
-File path of the initrd: ramdisk.img
-Arguments to pass to the binary: console=ttyAMA0 earlyprintk=pl011,0x1c090000 amba-clcd.mode=VGA
-Description for this new Entry: Linaro disk image on virtio
-[1] Add Boot Device Entry
-[2] Update Boot Device Entry
-[3] Remove Boot Device Entry
-[4] Update FDT path
-[5] Return to main menu
-Choice: 5
-[1] Linaro disk image on virtio
-[2] Shell
-[3] Boot Manager
-Start: 1
- PEI 1122 ms
- DXE 259 ms
- BDS 8 ms
-Total Time = 1390 ms
-
-[ 0.000000] Initializing cgroup subsys cpu
-[ 0.000000] Linux version 3.10.40-04438-g6a78140 (pundiramit@flying-dutchman) (gcc version 4.9 20140514 (prerelease) (GCC) ) #1 SMP Mon Jun 2 14:50:25 IST 2014
-</pre>
-
-h3. Black screen
-
-The boot screen has been disabled to speed up booting. This means you may not see anything on the CLCD terminal for a while depending on the performance of the machine the model is running on. For example a first boot on a 2 GHz machine with 32 GB of RAM took 20 minutes. Subsequent boots should take approximately half the time to boot.
-
-h3. Attach ADB
-
-ADB on FVP Base models are supported over network. Follow the instructions here https://wiki.linaro.org/Internal/Projects/Juice/SetupNetworkingOnModelsUsingBridges to setup networking and use adb.
-
-h2. How to run Juice images on Juno
-
-h3. Plug in the USB stick and flash Juice images on that USB device
-
-Run 'dmesg' and find out correct USB /dev node.
-
-pre. $ dmesg
-
-Look for a line that looks like the following at the end of the log
-
-pre. [288582.790722] sdc: sdc1 sdc2 sdc3 sdc4 < sdc5 sdc6 >
-
-WARNING: In the next step, make sure you use /dev/"whatever you see above".
- You can erase your hard drive with the wrong parameter.
-
-Run linaro image tools
-
-pre. $ linaro-android-media-create --mmc /dev/sdX --dev vexpress --boot boot.tar.bz2 --system system.tar.bz2 --userdata userdata.tar.bz2
-
-If you're using tip of linaro image tools
-
-pre. $ ./linaro-image-tools/linaro-android-media-create --mmc /dev/sdX --dev vexpress --boot boot.tar.bz2 --system system.tar.bz2 --userdata userdata.tar.bz2
-
-Now unplug the USB stick and connect it to Juno and boot from it.
-
-h3. Configure Juno boot time UEFI configuration
-
-Copy Preboot firmwares (bl1.bin and fip.bin) from boot.tar.bz2 to <firmware_partition>/SOFTWARE/. Stop at UEFI prompt and change few parameters shown below
-
-<pre>
-Select USB device's boot partition to boot from while "Selecting the boot device".
-Change kernel in UEFI to "kernel" in the boot partition
-Change ramdisk in UEFI to "ramdisk.img" in the boot partition
-Change bootargs to "console=ttyAMA0,115200 earlyprintk=pl011,0x7ff80000"
-</pre>
-Note: There is a bug in UEFI where you won't see USB disk partitions while selecting the boot device. You have to press ESCAPE at "Select the boot device" menu item and then continue.
-
-It should get your Juno board up and running.
diff --git a/android/images/armv8-juice-fvp-lsk/HOWTO_install.txt b/android/images/armv8-juice-fvp-lsk/HOWTO_install.txt
deleted file mode 100644
index d964838..0000000
--- a/android/images/armv8-juice-fvp-lsk/HOWTO_install.txt
+++ /dev/null
@@ -1,135 +0,0 @@
-Instructions for "https://android-build.linaro.org/builds/~linaro-android-restricted/armv8-juice-lsk/":https://android-build.linaro.org/builds/~linaro-android-restricted/armv8-juice-lsk/
-
-h2. Prerequisites
-
-h3. Get artifacts
-
-To get the build artifacts you must be part of the linaro-android-restricted launchpad group. Contact "Philip Colmer" <philip.colmer@linaro.org> for access requests.
-
-h3. Run the build
-
-You'll need the latest ARM FVP Base models and a license to use the models. Follow the instructions at https://collaborate.linaro.org/display/ITS/FlexLM+and+Fast+Models for the same.
-
-h2. Get artifacts
-
-Scroll down and click on 'Downloads'
-
-Click on each link to download:
-* boot.tar.bz2
-* system.tar.bz2
-* userdata.tar.bz2
-
-h2. Get linaro image tools
-
-Run these commands to get all the dependencies for linaro-image-tools and the tip of linaro-image-tools
-
-<pre>
- $ sudo add-apt-repository ppa:linaro-maintainers/tools
- $ sudo apt-get update
- $ sudo apt-get install linaro-image-tools
-</pre>
-
-You can also use the tip of linaro-image-tools from http://git.linaro.org/infrastructure/linaro-image-tools.git
-
-h2. How to run Juice images on FVP models
-
-h3. Create mmc image to be used on ARM FVP Base AEMv8 models
-
-Run linaro image tools
-
-pre. $ linaro-android-media-create --image_file mmc.img --image_size 2000M --dev vexpress --system system.tar.bz2 --userdata userdata.tar.bz2 --boot boot.tar.bz2
-
-If you're using tip of linaro image tools
-
-pre. $ ./linaro-image-tools/linaro-android-media-create --image_file mmc.img --image_size 2000M --dev vexpress --system system.tar.bz2 --userdata userdata.tar.bz2 --boot boot.tar.bz2
-
-h3. Extract the preboot files
-
-pre. tar -jxvf boot.tar.bz2
-
-h3. Setup the runtime environment
-
-<pre>
- $ export ARMLMD_LICENSE_FILE="8224@localhost"
- $ ssh -L 8224:localhost:8224 -L 18224:localhost:18224 -N $USER@flexlm.linaro.org
-</pre>
-
-h3. Running the models (verified on FVP Base model build 5602)
-
-<pre>
- $ cd boot
- $ /path/to/FVP_Base_AEMv8A-AEMv8A/models/Linux64_GCC-4.1/FVP_Base_AEMv8A-AEMv8A \
- -C pctl.startup=0.0.0.0 \
- -C bp.secure_memory=0 \
- -C cluster0.NUM_CORES=1 \
- -C cluster1.NUM_CORES=1 \
- -C cache_state_modelled=0 \
- -C bp.pl011_uart0.untimed_fifos=1 \
- -C bp.secureflashloader.fname=fvp_bl1.bin \
- -C bp.flashloader0.fname=fvp_fip.bin \
- -C bp.virtioblockdevice.image_path=mmc.img
-</pre>
-
-h3. Console redirection
-
-To redirect the console open a terminal and run
-
-pre. telnet 127.0.0.1 5000
-
-h3. Set UEFI configuration, update kernel/ramdisk path and bootargs
-
-Stop the UEFI boot process and configure it for FVP models:
-
-<pre>
-$ telnet 127.0.0.1 -debug 5000 -e ^z
-Telnet escape character is 'b'.
-Telnet escape character is '^Z'.
-Trying 127.0.0.1...
-setsockopt (SO_DEBUG): Permission denied
-Connected to 127.0.0.1.
-Escape character is '^Z'.
- 7 seconds
-[1] Linaro disk image on virtio
-[2] Shell
-[3] Boot Manager
-Start: 3
-[1] Add Boot Device Entry
-[2] Update Boot Device Entry
-[3] Remove Boot Device Entry
-[4] Update FDT path
-[5] Return to main menu
-Choice: 2
-[1] Linaro disk image on virtio
-Update entry: 1
-File path of the EFI Application or the kernel: kernel
-Has FDT support? [y/n] y
-Add an initrd: [y/n] y
-File path of the initrd: ramdisk.img
-Arguments to pass to the binary: console=ttyAMA0 earlyprintk=pl011,0x1c090000 amba-clcd.mode=VGA
-Description for this new Entry: Linaro disk image on virtio
-[1] Add Boot Device Entry
-[2] Update Boot Device Entry
-[3] Remove Boot Device Entry
-[4] Update FDT path
-[5] Return to main menu
-Choice: 5
-[1] Linaro disk image on virtio
-[2] Shell
-[3] Boot Manager
-Start: 1
- PEI 1122 ms
- DXE 259 ms
- BDS 8 ms
-Total Time = 1390 ms
-
-[ 0.000000] Initializing cgroup subsys cpu
-[ 0.000000] Linux version 3.10.40-04438-g6a78140 (pundiramit@flying-dutchman) (gcc version 4.9 20140514 (prerelease) (GCC) ) #1 SMP Mon Jun 2 14:50:25 IST 2014
-</pre>
-
-h3. Black screen
-
-The boot screen has been disabled to speed up booting. This means you may not see anything on the CLCD terminal for a while depending on the performance of the machine the model is running on. For example a first boot on a 2 GHz machine with 32 GB of RAM took 20 minutes. Subsequent boots should take approximately half the time to boot.
-
-h3. Attaching ADB
-
-ADB on FVP Base models is supported over the network. Follow the instructions here https://wiki.linaro.org/Internal/Projects/Juice/SetupNetworkingOnModelsUsingBridges to setup networking and use adb.
diff --git a/android/images/armv8-juice-fvp-lsk/HOWTO_prebuilt.txt b/android/images/armv8-juice-fvp-lsk/HOWTO_prebuilt.txt
deleted file mode 100644
index f699a3e..0000000
--- a/android/images/armv8-juice-fvp-lsk/HOWTO_prebuilt.txt
+++ /dev/null
@@ -1,69 +0,0 @@
-Instructions for https://android-build.linaro.org/builds/~linaro-android/<BUILD_NAME>/
-
-= Get artifacts =
-
- Scroll down to the 'Downloads' section
-
- Click on each link to download:
- boot.tar.bz2
- system.tar.bz2
- userdata.tar.bz2
-
-= Get linaro image tools =
-
- Run these commands to get all the dependencies for linaro-image-tools and the tip of linaro-image-tools
-
- $ sudo add-apt-repository ppa:linaro-maintainers/tools
- $ sudo apt-get update
- $ sudo apt-get install linaro-image-tools
-
- If you're using a released build (with a -release or from releases.linaro.org), skip this step.
- If you're using a "tip" build do not skip the step and do the following:
-
- $ sudo apt-get install bzr
- $ bzr branch lp:linaro-image-tools
-
-= Create media (SD card) =
-
- Disable automount (instructions provided for Gnome)
-
- $ TMP1=$(dconf read /org/gnome/desktop/media-handling/automount)
- $ TMP2=$(dconf read /org/gnome/desktop/media-handling/automount-open)
- $ dconf write /org/gnome/desktop/media-handling/automount false
- $ dconf write /org/gnome/desktop/media-handling/automount-open false
-
- Insert an SD card
-
- Run 'dmesg'
-
- $ dmesg
-
- Look for a line that looks like the following at the end of the log
-
- [288582.790722] sdc: sdc1 sdc2 sdc3 sdc4 < sdc5 sdc6 >
-
- WARNING: In the next step, make sure you use /dev/"whatever you see above".
- You can erase your hard drive with the wrong parameter.
-
- Run linaro image tools
-
- $ linaro-android-media-create --mmc /dev/sdc --dev <BOARD> --boot boot.tar.bz2 --system system.tar.bz2 --userdata userdata.tar.bz2
-
- If you're using tip of linaro image tools
-
- $ ./linaro-image-tools/linaro-android-media-create --mmc /dev/sdc --dev <BOARD> --boot boot.tar.bz2 --system system.tar.bz2 --userdata userdata.tar.bz2
-
- To find <BOARD> run linaro-android-media-create with a -h and read the help.
-
- Restore automount
-
- $ dconf write /org/gnome/desktop/media-handling/automount $TMP1
- $ dconf write /org/gnome/desktop/media-handling/automount-open $TMP2
-
- Remove the SD card from the device writer and plug it into the board.
-
-= Check console output =
-
- Plug in an USB-to-serial converter and run minicom
-
- $ minicom -D /dev/ttyUSB0 -w -C minicom.txt
diff --git a/android/images/armv8-juice-fvp-lsk/HOWTO_releasenotes.txt b/android/images/armv8-juice-fvp-lsk/HOWTO_releasenotes.txt
deleted file mode 100644
index 58ab1b0..0000000
--- a/android/images/armv8-juice-fvp-lsk/HOWTO_releasenotes.txt
+++ /dev/null
@@ -1,49 +0,0 @@
-p. Linaro releases monthly binary Android images and associated sources for the AArch64 models.
-
-p. This is the Linaro Android release for ARMv8 FVP Base Models. The objective of this release is to build and boot Android as 32 bit rootfs and continue building and running Linux as 64bit. The release is based on Android AOSP July 13th 2014 snapshot, Linux Stable Kernel 3.10 (LSK) from Linaro and boots on the new FVP Base AEMv8 model 0.8 build 5202 using UEFI EDK II as boot loader. The sources are also made available so you can build your own images. The Android sources are compiled for 32bit rootfs with Linaro GCC 4.9 toolchain.
-
-p. The lastest available CTS package version 4.4 is compiled for 32bit Android user space and have tried running maximum number of tests possible. Few tests fail due to model limitation. Detailed CTS results is made available to members seperately through the juice mailing list.
-
-h2. About the ARMv8 Android Release
-
-p. This release is port of Android to the AArch64 architecture for Fast Models, there is a similar release for Juno (ARM's ARMv8 Hardware platform).
-
-p. The main purpose of this release is to provide our members a pre-integrated and validated Android software distribution based on LSK, Android AOSP master (32bit user space) and built with latest GCC 4.9 for Fast Models to go to production faster with existing set of applications and limited certification hurdles.
-
-p. Android AOSP Patches - Summary :
-
-The following list of patches developed by ARM and Linaro engineering teams were applied to Android AOSP dated July 13th 2014 to get Android booting to UI on ARMv8 Fast Models. These patches can be found on Linaro's Android Git repositories. NOTE: Few of these patches are not applicable to run Android in 32bit user space, they are specific to Juno hardware and 64bit user space.
-
-* "Revert Hide _tolower_tab_ and _toupper_tab_ on LP64":https://android.git.linaro.org/gitweb/platform/bionic.git/commit/ed8f5e2dad362e5460645491196953ffd02c5dfb
-* "build tarballs, set default runtime and zygote config in device config files":https://android.git.linaro.org/gitweb/platform/build.git/commit/d7803ba6f7edb13240a89930a03367ac54e80784
-* "CtsVerifier: Add dependency of android.test.runner":https://android.git.linaro.org/gitweb/platform/cts.git/commit/eba8a294c14a32c822af4bee13ee282cd59840ce
-* "security: add CtsTestStubs.apk as prerequisite apk":https://android.git.linaro.org/gitweb/platform/cts.git/commit/fbb76c03bb4732ef4f217abaf7806295a78ca879
-* "Increase timeouts":https://android.git.linaro.org/gitweb/platform/frameworks/base.git/commit/4ceeef89d945db74db1bdba0ee2a1a51726131fd
-* "svc: add netd command":https://android.git.linaro.org/gitweb/platform/frameworks/base.git/commit/34dc72b5f74610e574da1a601be67b63d64c1bdc
-* "svc netd: add one command to set both interface and nameserver":https://android.git.linaro.org/gitweb/platform/frameworks/base.git/commit/7e6999cfad753fd5f97bb9cf25d355066613f150
-* "Increase timeouts":https://android.git.linaro.org/gitweb/platform/libcore.git/commit/d2f8d316035b92bcc6d12a70de604b361acefd40
-* "Don't write to the tty in init to avoid the cursor":https://android.git.linaro.org/gitweb/platform/system/core.git/commit/08ebb5a43853c71a846c75f60ed6dda7ca66d5be
-* "bionic libc test: remove test of test_vfprintf_leak":https://android.git.linaro.org/gitweb/platform/system/extras.git/commit/11a22aa17330b5e33df3d0d6c12a834f7e9f584a
-
-h2. Where To Find More Information
-
-More information on Linaro can be found on our "website.":http://www.linaro.org/
-
-h2. Feedback and Support
-
-Subscribe to the important Linaro mailing lists and join our IRC channels to stay on top of Linaro development.
-
-** Linaro Android Development "mailing list":http://lists.linaro.org/mailman/listinfo/linaro-android
-** Linaro Android IRC channel on irc.freenode.net at @#linaro-android@
-
-* Bug reports should be filed in Launchpad against the individual packages that are affected. If a suitable package cannot be identified, feel free to assign them to "Linaro Android project":http://bugs.launchpad.net/linaro-android/+filebug.
-* Questions? "ask Linaro":http://ask.linaro.org/.
-* Interested in commercial support? inquire at "Linaro support":mailto:support@linaro.org
-
-h2. Fixed in this release
-
-* NONE
-
-h2. Known issues
-
-* CTS failures are observed for few packages. Detailed CTS report is available to members for reference.
diff --git a/android/images/armv8-juice-juno-lsk/HOWTO_eula.txt b/android/images/armv8-juice-juno-lsk/HOWTO_eula.txt
deleted file mode 100644
index d8e300e..0000000
--- a/android/images/armv8-juice-juno-lsk/HOWTO_eula.txt
+++ /dev/null
@@ -1,267 +0,0 @@
-THIS END USER LICENCE AGREEMENT ("LICENCE") IS A LEGAL AGREEMENT BETWEEN YOU (EITHER A SINGLE INDIVIDUAL, OR SINGLE LEGAL ENTITY) AND ARM LIMITED ("ARM") FOR THE USE OF THE DELIVERABLES ACCOMPANYING THIS LICENCE. ARM IS ONLY WILLING TO LICENSE THE DELIVERABLES TO YOU ON CONDITION THAT YOU ACCEPT ALL OF THE TERMS IN THIS LICENCE. BY CLICKING "I AGREE" OR BY INSTALLING OR OTHERWISE USING OR COPYING THE DELIVERABLES YOU INDICATE THAT YOU AGREE TO BE BOUND BY ALL THE TERMS OF THIS LICENCE. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENCE, ARM IS UNWILLING TO LICENSE THE DELIVERABLES TO YOU AND YOU MAY NOT INSTALL, USE OR COPY THE DELIVERABLES, BUT YOU SHOULD PROMPTLY RETURN THE DELIVERABLES TO YOUR SUPPLIER AND ASK FOR A REFUND OF ANY LICENCE FEE PAID.
-
-
-
-"Juno ARM Development Platform" means a hardware development board purchased directly from ARM or its authorised distributors.
-
-
-
-"Deliverables"; means any software, firmware, boardfiles, data and documentation accompanying this Licence, any printed, electronic or online documentation supplied with it, and any updates, patches and modifications ARM may make available to you under the terms of this Licence, in all cases relating to the supporting deliverables for the Juno ARM Development Platform.
-
-
-
-"Separate Files" means the separate files identified in Part D of the Schedule.
-
-
-
-1. LICENCE GRANTS.
-
-(i) DELIVERABLES: ARM hereby grants to you, subject to the terms and conditions of this Licence, a non-exclusive, non-transferable licence solely for use on a Juno ARM Development Platform and only for the purposes of your internal development, testing and debugging of software applications that are designed to run solely on microprocessors manufactured under licence from ARM, to:
-
-
-
-(a) use and copy the Deliverables identified in Part A of the Schedule;
-
-
-
-(b) use, copy and modify the Deliverables identified in Part B and Part C of the Schedule;
-
-
-
-&#040;c) distribute and sub-license to third parties the right to use, copy and modify the Deliverables identified in Part C(i) of the Schedule, or your derivatives thereof, as part of your own products ("Licensed Products") provided you comply with the terms of Clause 1(ii);
-
-
-
-(d) permit either or both your customers and your authorised distributors to redistribute the Deliverables identified in Part C(i) of the Schedule, or your derivatives thereof, solely as part of Licensed Products developed by you or your permitted users (identified in clause 2 paragraph three below).
-
-
-
-Except as permitted by clause 1(i)(b) above, you shall not modify the Deliverables. Except as permitted by clauses 1(i)&#040;c) and 1(i)(d) above, you shall not redistribute any of the Deliverables.
-
-
-
-(ii) FURTHER CONDITIONS APPLICABLE TO REDISTRIBUTION AND SUB-LICENSING: If you choose to redistribute the Deliverables identified in Part C(i) of the Schedule ("Example Code") you agree: (a) to ensure that they are licensed for use only as part of Licensed Products and only on microprocessors manufactured or simulated under licence from ARM; (b) not to use ARM's or any of its licensors names, logos or trademarks to market the Licensed Products; &#040;c) to include valid copyright notices on the Licensed Products, and preserve any copyright notices which are included with, or in, the Example Code; (d) to comply with all the other terms of this Licence; and (e) to ensure that any further redistribution is limited to redistribution by either or both your customers and your authorised distributors only as part of Licensed Products developed by you or your permitted users and only for use on microprocessors manufactured or simulated under licence from ARM and that your customers and authorised distributors comply with the terms of this clause 1(ii).
-
-
-
-2. RESTRICTIONS ON USE OF THE DELIVERABLES.
-
-COPYING: You shall not use or copy the Deliverables except as expressly authorised in this Licence. You may make one additional copy of the delivered Deliverables media or image for backup or archival purposes.
-
-PERMITTED USERS: The Deliverables shall be used only by your employees, or by your bona fide sub-contractors for whose acts and omissions you hereby agree to be responsible to ARM to the same extent as you are for any acts and omissions of your employees, and provided always that such sub-contractors; (i) work only onsite at your premises; (ii) comply with the terms of this Licence; (iii) are contractually obligated to use the Deliverables only for your benefit, and (iv) agree to assign all their work product and any rights they create therein in the supply of such work to you. Only the single individual, company or other legal entity to whom ARM is supplying this Licence may use the Deliverables. Except as provided in this clause, you shall not allow third parties (including but not limited to any subsidiary, parent or affiliated companies, or offsite contractors you may have) to use the Deliverables unless ARM specifically agrees otherwise with you on a case by case basis.
-
-
-
-NO REMOTE USE: The Deliverables shall only be used onsite at your premises and only for your benefit.
-
-MULTIPLE VERSIONS: The media on which the Deliverables resides may contain more than one version of the Deliverables, each of which is compatible with a different operating system (such as Microsoft Windows XP Professional and Red Hat Linux).
-
-
-
-ACADEMIC OR EDUCATIONAL USERS ONLY: If you or your employer or institution paid academic or educational pricing for the Deliverables, or the Deliverables are identified as an academic or educational version (together "Academic Software"), then notwithstanding anything else in this Licence, YOU AGREE TO USE THE ACADEMIC SOFTWARE ONLY FOR ACADEMIC, NON-COMMERCIAL PURPOSES, AND ARM DOES NOT GRANT YOU ANY RIGHTS TO DISTRIBUTE OR SUB-LICENSE ANY APPLICATIONS DEVELOPED USING THE ACADEMIC SOFTWARE UNDER THIS LICENCE.
-
-
-
-REVERSE ENGINEERING: Except to the extent that such activity is permitted by applicable law you shall not reverse engineer, decompile or disassemble any of the Deliverables. If the Deliverables were provided to you in Europe you shall not reverse engineer, decompile or disassemble any of the Deliverables for the purposes of error correction.
-
-
-
-BENCHMARKING: This licence does not prevent you from using the Deliverables for internal benchmarking purposes. However, you shall treat any and all benchmarking data, and any other results of your use or testing of the Deliverables which are indicative of performance, efficacy, reliability or quality, as confidential information and you shall not disclose such information to any third party without the express written permission of ARM.
-
-
-
-RESTRICTIONS ON TRANSFER OF LICENSED RIGHTS: The rights granted to you under this Licence may not be assigned, sublicensed or otherwise transferred by you to any third party without the prior written consent of ARM. An assignment shall be deemed to include, without limitation; (i) any transaction or series of transactions whereby a third party acquires, directly or indirectly, the power to control the management and policies of you, whether through the acquisition of voting securities, by contract or otherwise; or (ii) the sale of more than fifty percent (50%) of the your assets whether in a single transaction or series of transactions. You shall not rent or lease the Deliverables. You shall not share the Deliverables with contractors (except as identified in the 'PERMITTED USERS' clause above) or other third parties.
-
-
-
-COPYRIGHT AND RESERVATION OF RIGHTS: The Deliverables are owned by ARM or its licensors and are protected by copyright and other intellectual property laws and international treaties. The Deliverables are licensed not sold. You acquire no rights to the Deliverables other than as expressly provided by this Licence. You shall not remove from the Deliverables any copyright notice or other notice and shall ensure that any such notice is reproduced in any copies of the whole or any part of the Deliverables made by you or your permitted users.
-
-
-
-3. SUPPORT AND MAINTENANCE.
-
-If you purchased the Deliverables directly from ARM, and you are not receiving them as an update or upgrade or as Academic Software (defined in Clause 2), you are entitled to reasonable support and maintenance for the Deliverables for the period of one (1) year from the date of purchase. The support will be provided on any version of the Deliverables which, at the date of your support request, are either; (a) the current version made generally available by ARM; or (b) the previous version made generally available by ARM at some time during the previous ninety (90) days.
-
-
-
-Support will be provided by telephone, email or other written format designated by ARM, prioritised at ARM's discretion, and may not be used as a substitute for training or as additional resource for your programming projects. Maintenance will be provided in the form of upgrades, updates and patch releases to the Deliverables as and when they are made generally available from ARM.
-
-
-
-ARM's obligation under this Clause 3 is limited to the provision of support and maintenance to you and ARM is under no obligation to provide any support and maintenance to any third parties under this Licence. If you purchase support and maintenance for additional years it will be provided pursuant to this Clause 3 and will be subject to the terms and conditions of this Licence.
-
-
-
-If; (i) you obtained the Deliverables from an ARM authorised reseller or other third party; (ii) Deliverables were provided free of charge or for evaluation; or (iii) it is Academic Software, you are not entitled to any support for the Deliverables from ARM, but ARM may, at its sole discretion provide limited support to you. The vendor of the Deliverables may or may not offer support to you for the Deliverables. Please refer to the Technical Support area of http://www.arm.com for contact details for ARM's support service and (if applicable) other authorised support channels. ARM shall be under no obligation to provide support in respect of any modifications (where permitted) to the Deliverables.
-
-
-
-4. CONFIDENTIALITY.
-
-You acknowledge that the Deliverables and any benchmarking data and related information mentioned in Clause 2 contains trade secrets and confidential material, and you agree to maintain all such information in confidence and apply security measures no less stringent than the measures which you apply to protect your own like information, but not less than a reasonable degree of care, to prevent their unauthorised disclosure and use. Subject to any restrictions imposed by applicable law, the period of confidentiality shall be indefinite. You agree that you shall not use any such information other than in normal use of the Deliverables under the licences granted in this Licence.
-
-
-
-Notwithstanding the foregoing you may disclose the Deliverables identified in Part C(i) of the Schedule to third parties solely in exercise of the licence rights contained in Clause 1(i)&#040;c) of this Licence.
-
-
-
-5. LIMITED WARRANTIES.
-
-For the period of ninety (90) days from the date of receipt by you of the Deliverables, ARM warrants to you that (i) the media on which the Deliverables are provided shall be free from defects in materials and workmanship under normal use; and (ii) the Deliverables will perform substantially in accordance with the accompanying documentation (if any). ARM's total liability and your exclusive remedy for breach of these limited warranties shall be limited to ARM, at ARM's option; (a) replacing the defective Deliverables; or (b) using reasonable efforts to correct material, documented, reproducible defects in the Deliverables and delivering such corrected Deliverables to you. Any replacement Deliverables will be warranted for the remainder of the original warranty period or thirty (30) days, whichever is the longer.
-
-
-
-EXCEPT AS PROVIDED ABOVE, YOU AGREE THAT THE DELIVERABLES ARE LICENSED "AS IS", AND THAT ARM EXPRESSLY DISCLAIMS ALL REPRESENTATIONS, WARRANTIES, CONDITIONS OR OTHER TERMS, EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON- INFRINGEMENT, SATISFACTORY QUALITY, AND FITNESS FOR A PARTICULAR PURPOSE.
-
-
-
-YOU EXPRESSLY ASSUME ALL LIABILITIES AND RISKS, FOR USE OR OPERATION OF SOFTWARE APPLICATIONS, INCLUDING WITHOUT LIMITATION, APPLICATIONS DESIGNED OR INTENDED FOR MISSION CRITICAL APPLICATIONS, SUCH AS PACEMAKERS, WEAPONARY, AIRCRAFT NAVIGATION, FACTORY CONTROL SYSTEMS, ETC. SHOULD THE DELIVERABLES PROVE DEFECTIVE, YOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-
-
-6. LIMITATION OF LIABILITY.
-
-TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL ARM BE LIABLE FOR ANY INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING LOSS OF PROFITS) ARISING OUT OF THE USE OR INABILITY TO USE THE DELIVERABLES WHETHER BASED ON A CLAIM UNDER CONTRACT, TORT OR OTHER LEGAL THEORY, EVEN IF ARM WAS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-ARM does not seek to limit or exclude liability for death or personal injury arising from ARM's negligence or ARM's fraud and because some jurisdictions do not permit the exclusion or limitation of liability for consequential or incidental damages the above limitation relating to liability for consequential damages may not apply to you.
-
-
-
-NOTWITHSTANDING ANYTHING TO THE CONTRARY CONTAINED IN THIS LICENCE, THE MAXIMUM LIABILITY OF ARM TO YOU IN AGGREGATE FOR ALL CLAIMS MADE AGAINST ARM IN CONTRACT TORT OR OTHERWISE UNDER OR IN CONNECTION WITH THE SUBJECT MATTER OF THIS LICENCE SHALL NOT EXCEED THE GREATER OF; (I) THE TOTAL OF SUMS PAID BY YOU TO ARM (IF ANY) FOR THIS LICENCE; AND (II) $10 USD.
-
-THE EXISTENCE OF MORE THAN ONE CLAIM WILL NOT ENLARGE OR EXTEND THE LIMIT.
-
-
-
-7. THIRD PARTY RIGHTS.
-
-The Separate Files are delivered subject to and your use is governed by their own separate licence agreements. This Licence does not apply to such Separate Files and they are not included in the term "Deliverables" under this Licence. You agree to comply with all terms and conditions imposed on you in respect of such Separate Files including those identified in the Schedule ("Third Party Terms").
-
-
-
-ARM HEREBY DISCLAIMS ANY AND ALL WARRANTIES EXPRESS OR IMPLIED FROM ANY THIRD PARTIES REGARDING ANY SEPARATE FILES, ANY THIRD PARTY MATERIALS INCLUDED IN THE DELIVERABLES, ANY THIRD PARTY MATERIALS FROM WHICH THE DELIVERABLES ARE DERIVED (COLLECTIVELY "OTHER CODE"), AND THE USE OF ANY OR ALL THE OTHER CODE IN CONNECTION WITH THE DELIVERABLES, INCLUDING (WITHOUT LIMITATION) ANY WARRANTIES OF SATISFACTORY QUALITY OR FITNESS FOR A PARTICULAR PURPOSE.
-
-
-
-NO THIRD PARTY LICENSORS OF OTHER CODE SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND WHETHER MADE UNDER CONTRACT, TORT OR OTHER LEGAL THEORY, ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE OTHER CODE OR THE EXERCISE OF ANY RIGHTS GRANTED UNDER EITHER OR BOTH THIS LICENCE AND THE LEGAL TERMS APPLICABLE TO ANY SEPARATE FILES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-
-
-8. GOVERNMENT END USERS.
-
-US Government Restrictions: Use, duplication, reproduction, release, modification, disclosure or transfer of the Deliverables is restricted in accordance with the terms of this Licence.
-
-
-
-9. TERM AND TERMINATION.
-
-This Licence shall remain in force until terminated by you or by ARM. Without prejudice to any of its other rights if you are in breach of any of the terms and conditions of this Licence then ARM may terminate this Licence immediately upon giving written notice to you. You may terminate this Licence at any time. Upon termination of this Licence by you or by ARM you shall stop using the Deliverables and confidential information and destroy all copies of the Deliverables and confidential information in your possession together with all documentation and related materials. Notwithstanding the foregoing, except where ARM has terminated this Licence for your breach, your rights to distribute the Example Code as part of Licensed Products developed prior to termination shall survive termination of this Licence, subject to the terms of this Licence. The provisions of Clauses 4, 6, 7, 8, 9 and 10 shall survive termination of this Licence.
-
-
-
-10. GENERAL.
-
-This Licence is governed by English Law. Except where ARM agrees otherwise in; (i) a written contract signed by you and ARM; or (ii) a written contract provided by ARM and accepted by you, this is the only agreement between you and ARM relating to the Deliverables and it may only be modified by written agreement between you and ARM. This Licence may not be modified by purchase orders, advertising or other representation by any person. If any clause or sentence in this Licence is held by a court of law to be illegal or unenforceable the remaining provisions of this Licence shall not be affected thereby. The failure by ARM to enforce any of the provisions of this Licence, unless waived in writing, shall not constitute a waiver of ARM's rights to enforce such provision or any other provision of this Licence in the future.
-
-
-
-The Deliverables provided under this Licence are subject to U.S. export control laws, including the U.S. Export Administration Act and its associated regulations, and may be subject to export or import regulations in other countries. You agree to comply fully with all laws and regulations of the United States and other countries ("Export Laws") to assure that the Deliverables, are not (1) exported, directly or indirectly, in violation of Export Laws, either to any countries that are subject to U.S.A. export restrictions or to any end user who has been prohibited from participating in the U.S.A. export transactions by any federal agency of the U.S.A. government; or (2) intended to be used for any purpose prohibited by Export Laws, including, without limitation, nuclear, chemical, or biological weapons proliferation.
-
-
-
-To the extent that the provisions contained in this Licence conflict with any provisions of any other licence you have entered with ARM governing the Deliverables the provisions contained in this Licence shall prevail over and shall supersede any such conflicting provisions.
-
-
-
-SCHEDULE
-
-*Part A*
-
-*Hardware Binaries:*
-
-FPGA bitstream file for any or all of the Hardware Source identified below in this Part A
-
-
-
-*Software Binaries:*
-
-Motherboard configuration controller
-
-Daughterboard configuration controller
-
-Daughterboard Application note SelfTest
-
-SCP firmware
-
-Mali GPU Driver
-
-
-
-*Documentation:*
-
-Documentation, provided as PDF
-
-
-
-*Hardware Source:*
-
-Hardware netlists of the ARM CoreLink peripheral technology and components known as TLX-400, NIC-400, and PL330
-
-
-
-*Header Files:*
-
-Provided as part of and with the Mali GPU Driver
-
-
-
-*Part B*
-
-*Wrapper:*
-
-Application Note wrapper file provided as hardware source files and netlists.
-
-
-
-*Part C: Example Code*
-
-(i) Platform specific libraries and source code.
-
-(ii) ARM source code of Application note SelfTest.
-
-
-
-*Part D: Separate Files*
-
-
-
-A. UEFI firmware, including drivers for third party components licensed to you under BSD 3-Clause.
-
-
-
-B. Linux kernel licensed to you under the GNU General Public License version 2.0
-
-
-
-To the extent that ARM is obliged to do so, ARM hereby offers to supply the files which are subject to the GNU General Public Licence version 2 (identified above), in source code form, subject to the terms of the GNU General Public License version 2, upon request. This offer is valid for three (3) years from the date of your acceptance of this Licence.
-
-
-
-C. ARM Trusted Firmware licensed to you under BSD 3-Clause.
-
-
-
-D. ARM Gator Profile driver and daemon licensed to you under the GNU General Public License version 2.0
-
-
-
-To the extent that ARM is obliged to do so, ARM hereby offers to supply the files which are subject to the GNU General Public Licence version 2 (identified above), in source code form, subject to the terms of the GNU General Public License version 2, upon request. This offer is valid for three (3) years from the date of your acceptance of this Licence.
-
-
-
-/end
-
-
-
-ARM contract references: LES-PRE-20435 JUNO ARM DEVELOPMENT PLATFORM DELIVERABLES
diff --git a/android/images/armv8-juice-juno-lsk/HOWTO_getsourceandbuild.txt b/android/images/armv8-juice-juno-lsk/HOWTO_getsourceandbuild.txt
deleted file mode 100644
index 89b04be..0000000
--- a/android/images/armv8-juice-juno-lsk/HOWTO_getsourceandbuild.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-h2. License
-
-The use of Juno software is subject to the terms of the Juno "End User License Agreement":https://releases.linaro.org/latest/android/images/armv8-juice-juno-lsk/#tabs-5.
-
-h1. Accessing Source Code
-
-h2. Linaro Android Source Code
-
-Run the "linaro_android_build_cmds.sh":http://releases.linaro.org/latest/android/images/armv8-juice-juno-lsk/linaro_android_build_cmds.sh script, it will download the entire source code for both Android and the kernel and attempt to build it.
-
-The pinned and source manifests can be found here:
-
-* "Pinned Manifest":http://releases.linaro.org/latest/android/images/armv8-juice-juno-lsk/pinned-manifest.xml ("?":https://wiki.linaro.org/Platform/Android/ReproduceABuildExactly)
-* "Source Manifest":http://releases.linaro.org/latest/android/images/armv8-juice-juno-lsk/source-manifest.xml
-
-h2. Compiling Linaro Android RootFS+Kernel
-
-The following simple steps download, install and compile a complete Linaro Android distribution
-
-* Download and install Ubuntu 12.04 64 bit or newer ("download":http://www.ubuntu.com)
-* Install the following packages:
-
-bc. sudo apt-get update
-sudo apt-get install zip curl flex bison build-essential git-core gnupg gperf zlib1g-dev libx11-dev x11proto-core-dev \
-gcc-multilib g++-multilib libc6-dev-i386 ia32-libs lib32z-dev gcc-4.5 g++-4.5 cpp-4.5 gcc-4.5-multilib g++-4.5-multilib \
-uuid-dev openjdk-7-jdk ant lib32ncurses5-dev xsltproc
-sudo update-alternatives --config java
-sudo update-alternatives --config javac
-sudo update-alternatives --config javadoc
-
-* Download the Android building script for this build from "here":http://releases.linaro.org/latest/android/images/armv8-juice-juno-lsk/linaro_android_build_cmds.sh or from the list of artifacts listed above.
-
-* Run the script
-
-bc. chmod a+x linaro_android_build_cmds.sh
-./linaro_android_build_cmds.sh -m pinned-manifest.xml
-
-h3. Installing Android on your board
-
-bc. cd android/out/target/product/juice
-sudo linaro-android-media-create --mmc /dev/sdX --dev vexpress --boot boot.tar.bz2 --system system.tar.bz2 --userdata userdata.tar.bz2
-
-Insert the USB drive into your board and reboot it. You must configure UEFI each time you create a new disk image.
diff --git a/android/images/armv8-juice-juno-lsk/HOWTO_install.txt b/android/images/armv8-juice-juno-lsk/HOWTO_install.txt
deleted file mode 100644
index 9afe944..0000000
--- a/android/images/armv8-juice-juno-lsk/HOWTO_install.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-h2. License
-
-The use of Juno software is subject to the terms of the Juno "End User License Agreement":https://releases.linaro.org/latest/android/images/armv8-juice-juno-lsk/#tabs-5.
-
-h2. Installation
-
-h3. Pre-Installation Steps
-
-* Ubuntu 12.04 64 bit or newer on your desktop PC ("www.ubuntu.com":http://www.ubuntu.com)
-* Before any installation begins, it is important that you ensure your board has the latest firmware installed
-** See the Juno Firmware wiki for more details:
-** "https://wiki.linaro.org/ARM/Juno/Firmware":https://wiki.linaro.org/ARM/Juno/Firmware
-* 4GB USB drive or larger
-* Choose either to use a pre-built image or to build a custom image by following the steps below
-
-h3. Using pre-built image
-
-* Uncompress the downloaded pre-built image (juno.img.bz2) and write it to a USB drive
-* Safely remove the USB drive and insert it into the board
-
-h3. Building a custom image using pre-built components
-
-* Download Artifacts from above
-* Get "Linaro image tools":https://wiki.linaro.org/Linaro-Image-Tools
-* Create media
-
-bc. linaro-android-media-create --mmc /dev/sdX --dev vexpress --boot boot.tar.bz2 --system system.tar.bz2 --userdata userdata.tar.bz2
-
-h3. Post-installation steps
-
-* Safely remove the USB drive and insert it into the board
-* "Configure UEFI":https://wiki.linaro.org/ARM/UEFI#Configuring_UEFI_to_boot_Android_on_Juno
-
-
diff --git a/android/images/armv8-juice-juno-lsk/HOWTO_releasenotes.txt b/android/images/armv8-juice-juno-lsk/HOWTO_releasenotes.txt
deleted file mode 100644
index 9ccd06f..0000000
--- a/android/images/armv8-juice-juno-lsk/HOWTO_releasenotes.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-h2. Linaro Android Engineering Build for Juno (32-bit only)
-
-ARM's customers should use the latest ARM Member Build here:
-
-* "http://releases.linaro.org/latest/members/arm/android/images/armv8-juice-juno-lsk":http://releases.linaro.org/latest/members/arm/android/images/armv8-juice-juno-lsk
-
-ARM Member Builds capture the latest content and information at that ARM wishes to present to it's partners and users. The Member Build contains a more complete set of release notes, installation and build instructions.
-
-h3. License
-
-The use of Juno software is subject to the terms of the Juno "End User License Agreement":https://releases.linaro.org/latest/android/images/armv8-juice-juno-lsk/#tabs-5.
-
-h2. Support
-
-Please send any ARM support enquiries to "juno-support@arm.com":mailto:juno-support@arm.com?subject=Juno%20support%20request. Engineers at Linaro Members can receive support for Juno by sending support requests to "support@linaro.org":mailto:support@linaro.org?subject=Juno%20support%20request or visiting "http://support.linaro.org":http://support.linaro.org.
-
-h3. Known Issues
-
-Known Issues are managed in "Bugzilla":https://bugs.linaro.org