To whom it may concern,
My name is Kevin Dious and I am writing because I am trying to use the linaro_android_build_cmds.sh script to build Linaro Android for the Versatile Express. Specifically, I am trying to build the following:
https://android-build.linaro.org/builds/~linaro-android/vexpress-linaro-14.0...
Script link: http://snapshots.linaro.org/android/~linaro-android/vexpress-linaro-14.04-re...
When I run the script, I get the following error initially (highlighted in yellow):
Package acpica-tools is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package acpica-tools has no installation candidate kdious@eco-build1:/local/mnt/workspace/vexpress-linaro-build-309$
I noticed that the acpica-tools package is only available for Ubuntu 14.04 (Trusty Tahr). However, the script mentioned that it can be used for Ubunuu versions as old as 10.04 (see yellow heighted portion below). The acpica-tools package is part of the list of packages that the script tries to download (see below highlighted line below):
UBUNTU=`cat /etc/issue.net | cut -d' ' -f2` HOST_ARCH=`uname -m` if [ ${HOST_ARCH} == "x86_64" ] ; then PKGS='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 uboot-mkimage openjdk-6-jdk openjdk-6-jre vim-common python-parted python-yaml wget uuid-dev acpica-tools' else echo "ERROR: Only 64bit Host(Build) machines are supported at the moment." exit 1 fi if [[ ${UBUNTU} =~ "13." || ${UBUNTU} =~ "12.10" ]]; then #Install basic dev package missing in chrooted environments sudo apt-get install software-properties-common sudo dpkg --add-architecture i386 PKGS+=' libstdc++6:i386 git-core' elif [[ ${UBUNTU} =~ "12.04" || ${UBUNTU} =~ "10.04" ]] ; then #Install basic dev package missing in chrooted environments sudo apt-get install python-software-properties if [[ ${UBUNTU} =~ "12.04" ]]; then PKGS+=' libstdc++6:i386 git-core' else PKGS+=' ia32-libs libssl-dev libcurl4-gnutls-dev libexpat1-dev gettext' fi else echo "ERROR: Only Ubuntu 10.04, 12.* and 13.04 versions are supported." exit 1 fi
If I remove the reference to the acpica-tools package (the blue highlighted section above), the script does progress further but the following error is hit (See green highlighted error message below):
Your Name [Kevin Dious]: Your Email [kdious@eco-build1.qualcomm.com]: kdious@quicinc.com
Your identity is: Kevin Dious kdious@quicinc.com is this correct [y/N]? y
repo has been initialized in /local/mnt/workspace/vexpress-linaro-build-309/git-1.7.9.5/android cp: missing destination file operand after `.repo/manifest.xml' Try `cp --help' for more information. kdious@eco-build1:/local/mnt/workspace/vexpress-linaro-build-309$
From looking at the script, it seems as if the following line is failing (See green highlighted line below):
# download the android code ./repo init -u ${MANIFEST_REPO} -b ${MANIFEST_BRANCH} -m ${MANIFEST_FILENAME} --repo-url=git://android.git.linaro.org/tools/repo -g common,vexpress if [ ${EXACT} -eq 1 ] ; then rm .repo/manifest.xml cp $MANIFEST .repo/manifest.xml fi
So I have a few questions:
a) Is the acpica-tools package truly necessary in order to build Linaro Android? If so, how are you able to build it on versions of Ubuntu older than 14.04?
b) IS there some workaround that we can use to get around the cp error referenced above?
Any help that you can provide would be greatly appreciated. Thank you.
Regards,
Kevin Dious Qualcomm Innovation Center, Inc. 5755 Morehouse Drive San Diego, CA 92121-1714 (858) 651-2014 (Phone) (858) 845-7478 (Fax) kdious@quicinc.com
Hello Kevin,
I recently built android on Ubuntu 13.04 for arndale board.
acpica-tools was available and was installed without problem on 13.04. May be 10.04 is too old.
Regarding the cp error, I also faced this error. Then I build with pinned-manifest.xml and it succeeded.
Can you trying downloading the pinned-manifest.xml file from http://releases.linaro.org/<VERSION>/... and try the below command -
./linaro_android_build_cmds.sh -m pinned-manifest.xml
-- Thanks, -Meraj
Mohammad,
Thank you for your reply. So, I am curious, is the acpica-tools package truly necessary in order to build Linaro Android 14.04 release?
I figured out this evening how to get around the cp error. I just ran ./linaro_android_build_cmds.sh –t (which means to build from the tip and use no overlay). This seems to have worked for me (I was able to advance past the cp error). The build is still ongoing. Hopefully the acpica-tools package is not necessary (I removed that from the script just to see if I can build on Ubuntu 10.04).
Thanks.
Kevin Dious Qualcomm Innovation Center, Inc. 5755 Morehouse Drive San Diego, CA 92121-1714 (858) 651-2014 (Phone) (858) 845-7478 (Fax) kdious@quicinc.com
From: Mohammad Merajul Islam Molla [mailto:meraj.enigma@gmail.com] Sent: Tuesday, April 29, 2014 1:08 AM To: Dious, Kevin Cc: linaro-android@lists.linaro.org; Gupta, Tushar (Ecosystem); Harper, Cary Subject: Re: Problems building Linaro Android on Ubuntu 10.04 for Versatile Express
Hello Kevin,
I recently built android on Ubuntu 13.04 for arndale board.
acpica-tools was available and was installed without problem on 13.04. May be 10.04 is too old.
Regarding the cp error, I also faced this error. Then I build with pinned-manifest.xml and it succeeded.
Can you trying downloading the pinned-manifest.xml file from http://releases.linaro.org/<VERSION>/... and try the below command -
./linaro_android_build_cmds.sh -m pinned-manifest.xml
-- Thanks, -Meraj
Hi Dious,
On 29 April 2014 13:51, Dious, Kevin kdious@quicinc.com wrote:
Mohammad,
Thank you for your reply. So, I am curious, is the acpica-tools package truly necessary in order to build Linaro Android 14.04 release?
The acpica-tools is needed to build UEFI. We build kernel and UEFI from sources while building Android and hence the dependency.
I figured out this evening how to get around the cp error. I just ran ./linaro_android_build_cmds.sh –t (which means to build from the tip and use no overlay). This seems to have worked for me (I was able to advance past the cp error). The build is still ongoing. Hopefully the acpica-tools package is not necessary (I removed that from the script just to see if I can build on Ubuntu 10.04).
Thanks.
Kevin Dious
Qualcomm Innovation Center, Inc.
5755 Morehouse Drive
San Diego, CA 92121-1714
(858) 651-2014 (Phone)
(858) 845-7478 (Fax)
kdious@quicinc.com
*From:* Mohammad Merajul Islam Molla [mailto:meraj.enigma@gmail.com] *Sent:* Tuesday, April 29, 2014 1:08 AM *To:* Dious, Kevin *Cc:* linaro-android@lists.linaro.org; Gupta, Tushar (Ecosystem); Harper, Cary *Subject:* Re: Problems building Linaro Android on Ubuntu 10.04 for Versatile Express
Hello Kevin,
I recently built android on Ubuntu 13.04 for arndale board.
acpica-tools was available and was installed without problem on 13.04. May be 10.04 is too old.
Regarding the cp error, I also faced this error. Then I build with pinned-manifest.xml and it succeeded.
Can you trying downloading the pinned-manifest.xml file from http://releases.linaro.org/<VERSION>/... and try the below command -
./linaro_android_build_cmds.sh -m pinned-manifest.xml
--
Thanks,
-Meraj
linaro-android mailing list linaro-android@lists.linaro.org http://lists.linaro.org/mailman/listinfo/linaro-android
Everyone,
Thanks for the updates. So I tried building the build below on a more recent update of Ubuntu (Ubuntu 12.04) and was able to get past the previous package dependency issues. However, during the build process I ran into the following error.
Build: https://android-build.linaro.org/builds/~linaro-android/vexpress-linaro-14.0...
Error seen: host Executable: aib (out/host/linux-x86/obj/EXECUTABLES/aib_intermediates/aib) host C++: dalvikvm <= art/dalvikvm/dalvikvm.cc host C++: libnativehelper <= libnativehelper/JNIHelp.cpp host C++: libnativehelper <= libnativehelper/JniConstants.cpp host C++: libnativehelper <= libnativehelper/toStringArray.cpp host C++: libnativehelper <= libnativehelper/JniInvocation.cpp art/dalvikvm/dalvikvm.cc: In function 'int art::InvokeMain(JNIEnv*, char**)': art/dalvikvm/dalvikvm.cc:72:3: error: 'replace' is not a member of 'std' make: *** [out/host/linux-x86/obj/EXECUTABLES/dalvikvm_intermediates/dalvikvm..o] Error 1 make: *** Waiting for unfinished jobs.... kdious@kdious-linux:/local/mnt/workspace/linaro-android/vexpress-linaro-14.04-release$
It looks like there was an issue trying to compile dalvikvm.cc. Any ideas?
Thanks.
Kevin Dious Qualcomm Innovation Center, Inc. 5755 Morehouse Drive San Diego, CA 92121-1714 (858) 651-2014 (Phone) (858) 845-7478 (Fax) kdious@quicinc.com
From: Vishal Bhoj [mailto:vishal.bhoj@linaro.org] Sent: Tuesday, April 29, 2014 6:07 AM To: Dious, Kevin Cc: Mohammad Merajul Islam Molla; linaro-android@lists.linaro.org; Gupta, Tushar (Ecosystem); Harper, Cary Subject: Re: Problems building Linaro Android on Ubuntu 10.04 for Versatile Express
Hi Dious,
On 29 April 2014 13:51, Dious, Kevin <kdious@quicinc.commailto:kdious@quicinc.com> wrote: Mohammad,
Thank you for your reply. So, I am curious, is the acpica-tools package truly necessary in order to build Linaro Android 14.04 release? The acpica-tools is needed to build UEFI. We build kernel and UEFI from sources while building Android and hence the dependency.
I figured out this evening how to get around the cp error. I just ran ./linaro_android_build_cmds.sh –t (which means to build from the tip and use no overlay). This seems to have worked for me (I was able to advance past the cp error). The build is still ongoing. Hopefully the acpica-tools package is not necessary (I removed that from the script just to see if I can build on Ubuntu 10.04).
Thanks.
Kevin Dious Qualcomm Innovation Center, Inc. 5755 Morehouse Drive San Diego, CA 92121-1714 (858) 651-2014tel:%28858%29%20651-2014 (Phone) (858) 845-7478tel:%28858%29%20845-7478 (Fax) kdious@quicinc.commailto:kdious@quicinc.com
From: Mohammad Merajul Islam Molla [mailto:meraj.enigma@gmail.commailto:meraj.enigma@gmail.com] Sent: Tuesday, April 29, 2014 1:08 AM To: Dious, Kevin Cc: linaro-android@lists.linaro.orgmailto:linaro-android@lists.linaro.org; Gupta, Tushar (Ecosystem); Harper, Cary Subject: Re: Problems building Linaro Android on Ubuntu 10.04 for Versatile Express
Hello Kevin,
I recently built android on Ubuntu 13.04 for arndale board.
acpica-tools was available and was installed without problem on 13.04. May be 10.04 is too old.
Regarding the cp error, I also faced this error. Then I build with pinned-manifest.xml and it succeeded.
Can you trying downloading the pinned-manifest.xml file from http://releases.linaro.org/<VERSION>/... and try the below command -
./linaro_android_build_cmds.sh -m pinned-manifest.xml
-- Thanks, -Meraj
_______________________________________________ linaro-android mailing list linaro-android@lists.linaro.orgmailto:linaro-android@lists.linaro.org http://lists.linaro.org/mailman/listinfo/linaro-android
Hi Dious,
Host dalvik compilation is broken. Can you please run make along with this argument "WITH_HOST_DALVIK=false" .
On 30 April 2014 02:17, Dious, Kevin kdious@quicinc.com wrote:
Everyone,
Thanks for the updates. So I tried building the build below on a more recent update of Ubuntu (Ubuntu 12.04) and was able to get past the previous package dependency issues. However, during the build process I ran into the following error.
Build: https://android-build.linaro.org/builds/~linaro-android/vexpress-linaro-14.0...
Error seen:
host Executable: aib (out/host/linux-x86/obj/EXECUTABLES/aib_intermediates/aib)
host C++: dalvikvm <= art/dalvikvm/dalvikvm.cc
host C++: libnativehelper <= libnativehelper/JNIHelp.cpp
host C++: libnativehelper <= libnativehelper/JniConstants.cpp
host C++: libnativehelper <= libnativehelper/toStringArray.cpp
host C++: libnativehelper <= libnativehelper/JniInvocation.cpp
art/dalvikvm/dalvikvm.cc: In function 'int art::InvokeMain(JNIEnv*, char**)':
art/dalvikvm/dalvikvm.cc:72:3: error: 'replace' is not a member of 'std'
make: *** [out/host/linux-x86/obj/EXECUTABLES/dalvikvm_intermediates/dalvikvm..o] Error 1
make: *** Waiting for unfinished jobs....
kdious@kdious-linux :/local/mnt/workspace/linaro-android/vexpress-linaro-14.04-release$
It looks like there was an issue trying to compile dalvikvm.cc. Any ideas?
Thanks.
Kevin Dious
Qualcomm Innovation Center, Inc.
5755 Morehouse Drive
San Diego, CA 92121-1714
(858) 651-2014 (Phone)
(858) 845-7478 (Fax)
kdious@quicinc.com
*From:* Vishal Bhoj [mailto:vishal.bhoj@linaro.org] *Sent:* Tuesday, April 29, 2014 6:07 AM *To:* Dious, Kevin *Cc:* Mohammad Merajul Islam Molla; linaro-android@lists.linaro.org; Gupta, Tushar (Ecosystem); Harper, Cary
*Subject:* Re: Problems building Linaro Android on Ubuntu 10.04 for Versatile Express
Hi Dious,
On 29 April 2014 13:51, Dious, Kevin kdious@quicinc.com wrote:
Mohammad,
Thank you for your reply. So, I am curious, is the acpica-tools package truly necessary in order to build Linaro Android 14.04 release?
The acpica-tools is needed to build UEFI. We build kernel and UEFI from sources while building Android and hence the dependency.
I figured out this evening how to get around the cp error. I just ran ./linaro_android_build_cmds.sh –t (which means to build from the tip and use no overlay). This seems to have worked for me (I was able to advance past the cp error). The build is still ongoing. Hopefully the acpica-tools package is not necessary (I removed that from the script just to see if I can build on Ubuntu 10.04).
Thanks.
Kevin Dious
Qualcomm Innovation Center, Inc.
5755 Morehouse Drive
San Diego, CA 92121-1714
(858) 651-2014 (Phone)
(858) 845-7478 (Fax)
kdious@quicinc.com
*From:* Mohammad Merajul Islam Molla [mailto:meraj.enigma@gmail.com] *Sent:* Tuesday, April 29, 2014 1:08 AM *To:* Dious, Kevin *Cc:* linaro-android@lists.linaro.org; Gupta, Tushar (Ecosystem); Harper, Cary *Subject:* Re: Problems building Linaro Android on Ubuntu 10.04 for Versatile Express
Hello Kevin,
I recently built android on Ubuntu 13.04 for arndale board.
acpica-tools was available and was installed without problem on 13.04. May be 10.04 is too old.
Regarding the cp error, I also faced this error. Then I build with pinned-manifest.xml and it succeeded.
Can you trying downloading the pinned-manifest.xml file from http://releases.linaro.org/<VERSION>/... and try the below command -
./linaro_android_build_cmds.sh -m pinned-manifest.xml
--
Thanks,
-Meraj
linaro-android mailing list linaro-android@lists.linaro.org http://lists.linaro.org/mailman/listinfo/linaro-android
Vishal,
Thank you for the reply. It looks like your suggestion worked and I was able to build the versatile expression version of Linaro Android release 14.04 on my Ubunut 12.04 machine. I have a few follow up questions:
1. Is there an 14.04 or newer engineering build available that has the dalvik host compilation issue fixed? If not, any idea which release will have a fix?
2. What are the implications of this host dalvik compilation issue? Can we expect that our builds will work properly since we disabled host dalvik compilation during the build process?
3. Finally, is there somewhere we can find release notes for each build which specifies any known issues with the build?
Thank you very much for your help.
Regards,
Kevin Dious Qualcomm Innovation Center, Inc. 5755 Morehouse Drive San Diego, CA 92121-1714 (858) 651-2014 (Phone) (858) 845-7478 (Fax) kdious@quicinc.com
From: Vishal Bhoj [mailto:vishal.bhoj@linaro.org] Sent: Tuesday, April 29, 2014 1:50 PM To: Dious, Kevin Cc: Mohammad Merajul Islam Molla; linaro-android@lists.linaro.org; Gupta, Tushar (Ecosystem); Harper, Cary Subject: Re: Problems building Linaro Android on Ubuntu 10.04 for Versatile Express
Hi Dious,
Host dalvik compilation is broken. Can you please run make along with this argument "WITH_HOST_DALVIK=false" .
On 30 April 2014 02:17, Dious, Kevin <kdious@quicinc.commailto:kdious@quicinc.com> wrote: Everyone,
Thanks for the updates. So I tried building the build below on a more recent update of Ubuntu (Ubuntu 12.04) and was able to get past the previous package dependency issues. However, during the build process I ran into the following error.
Build: https://android-build.linaro.org/builds/~linaro-android/vexpress-linaro-14.0...
Error seen: host Executable: aib (out/host/linux-x86/obj/EXECUTABLES/aib_intermediates/aib) host C++: dalvikvm <= art/dalvikvm/dalvikvm.cc host C++: libnativehelper <= libnativehelper/JNIHelp.cpp host C++: libnativehelper <= libnativehelper/JniConstants.cpp host C++: libnativehelper <= libnativehelper/toStringArray.cpp host C++: libnativehelper <= libnativehelper/JniInvocation.cpp art/dalvikvm/dalvikvm.cc: In function 'int art::InvokeMain(JNIEnv*, char**)': art/dalvikvm/dalvikvm.cc:72:3: error: 'replace' is not a member of 'std' make: *** [out/host/linux-x86/obj/EXECUTABLES/dalvikvm_intermediates/dalvikvm..o] Error 1 make: *** Waiting for unfinished jobs.... kdious@kdious-linux:/local/mnt/workspace/linaro-android/vexpress-linaro-14.04-release$mailto:kdious@kdious-linux:/local/mnt/workspace/linaro-android/vexpress-linaro-14.04-release$
It looks like there was an issue trying to compile dalvikvm.cc. Any ideas?
Thanks.
Kevin Dious Qualcomm Innovation Center, Inc. 5755 Morehouse Drive San Diego, CA 92121-1714 (858) 651-2014tel:%28858%29%20651-2014 (Phone) (858) 845-7478tel:%28858%29%20845-7478 (Fax) kdious@quicinc.commailto:kdious@quicinc.com
From: Vishal Bhoj [mailto:vishal.bhoj@linaro.orgmailto:vishal.bhoj@linaro.org] Sent: Tuesday, April 29, 2014 6:07 AM To: Dious, Kevin Cc: Mohammad Merajul Islam Molla; linaro-android@lists.linaro.orgmailto:linaro-android@lists.linaro.org; Gupta, Tushar (Ecosystem); Harper, Cary
Subject: Re: Problems building Linaro Android on Ubuntu 10.04 for Versatile Express
Hi Dious,
On 29 April 2014 13:51, Dious, Kevin <kdious@quicinc.commailto:kdious@quicinc.com> wrote: Mohammad,
Thank you for your reply. So, I am curious, is the acpica-tools package truly necessary in order to build Linaro Android 14.04 release? The acpica-tools is needed to build UEFI. We build kernel and UEFI from sources while building Android and hence the dependency.
I figured out this evening how to get around the cp error. I just ran ./linaro_android_build_cmds.sh –t (which means to build from the tip and use no overlay). This seems to have worked for me (I was able to advance past the cp error). The build is still ongoing. Hopefully the acpica-tools package is not necessary (I removed that from the script just to see if I can build on Ubuntu 10.04).
Thanks.
Kevin Dious Qualcomm Innovation Center, Inc. 5755 Morehouse Drive San Diego, CA 92121-1714 (858) 651-2014tel:%28858%29%20651-2014 (Phone) (858) 845-7478tel:%28858%29%20845-7478 (Fax) kdious@quicinc.commailto:kdious@quicinc.com
From: Mohammad Merajul Islam Molla [mailto:meraj.enigma@gmail.commailto:meraj.enigma@gmail.com] Sent: Tuesday, April 29, 2014 1:08 AM To: Dious, Kevin Cc: linaro-android@lists.linaro.orgmailto:linaro-android@lists.linaro.org; Gupta, Tushar (Ecosystem); Harper, Cary Subject: Re: Problems building Linaro Android on Ubuntu 10.04 for Versatile Express
Hello Kevin,
I recently built android on Ubuntu 13.04 for arndale board.
acpica-tools was available and was installed without problem on 13.04. May be 10.04 is too old.
Regarding the cp error, I also faced this error. Then I build with pinned-manifest.xml and it succeeded.
Can you trying downloading the pinned-manifest.xml file from http://releases.linaro.org/<VERSION>/... and try the below command -
./linaro_android_build_cmds.sh -m pinned-manifest.xml
-- Thanks, -Meraj
_______________________________________________ linaro-android mailing list linaro-android@lists.linaro.orgmailto:linaro-android@lists.linaro.org http://lists.linaro.org/mailman/listinfo/linaro-android
Hi Dious,
For question #3, probably you may want to take a look at this place:
https://wiki.linaro.org/Platform/QA/ImportantInformation#Test_Result_Spreads...
Thanks.
Best Regards Botao Sun
On 30 April 2014 08:11, Dious, Kevin kdious@quicinc.com wrote:
Vishal,
Thank you for the reply. It looks like your suggestion worked and I was able to build the versatile expression version of Linaro Android release 14.04 on my Ubunut 12.04 machine. I have a few follow up questions:
Is there an 14.04 or newer engineering build available that has
the dalvik host compilation issue fixed? If not, any idea which release will have a fix?
What are the implications of this host dalvik compilation
issue? Can we expect that our builds will work properly since we disabled host dalvik compilation during the build process?
Finally, is there somewhere we can find release notes for each
build which specifies any known issues with the build?
Thank you very much for your help.
Regards,
Kevin Dious
Qualcomm Innovation Center, Inc.
5755 Morehouse Drive
San Diego, CA 92121-1714
(858) 651-2014 (Phone)
(858) 845-7478 (Fax)
kdious@quicinc.com
*From:* Vishal Bhoj [mailto:vishal.bhoj@linaro.org] *Sent:* Tuesday, April 29, 2014 1:50 PM
*To:* Dious, Kevin *Cc:* Mohammad Merajul Islam Molla; linaro-android@lists.linaro.org; Gupta, Tushar (Ecosystem); Harper, Cary *Subject:* Re: Problems building Linaro Android on Ubuntu 10.04 for Versatile Express
Hi Dious,
Host dalvik compilation is broken. Can you please run make along with this argument "WITH_HOST_DALVIK=false" .
On 30 April 2014 02:17, Dious, Kevin kdious@quicinc.com wrote:
Everyone,
Thanks for the updates. So I tried building the build below on a more recent update of Ubuntu (Ubuntu 12.04) and was able to get past the previous package dependency issues. However, during the build process I ran into the following error.
Build: https://android-build.linaro.org/builds/~linaro-android/vexpress-linaro-14.0...
Error seen:
host Executable: aib (out/host/linux-x86/obj/EXECUTABLES/aib_intermediates/aib)
host C++: dalvikvm <= art/dalvikvm/dalvikvm.cc
host C++: libnativehelper <= libnativehelper/JNIHelp.cpp
host C++: libnativehelper <= libnativehelper/JniConstants.cpp
host C++: libnativehelper <= libnativehelper/toStringArray.cpp
host C++: libnativehelper <= libnativehelper/JniInvocation.cpp
art/dalvikvm/dalvikvm.cc: In function 'int art::InvokeMain(JNIEnv*, char**)':
art/dalvikvm/dalvikvm.cc:72:3: error: 'replace' is not a member of 'std'
make: *** [out/host/linux-x86/obj/EXECUTABLES/dalvikvm_intermediates/dalvikvm..o] Error 1
make: *** Waiting for unfinished jobs....
kdious@kdious-linux:/local/mnt/workspace/linaro-android/vexpress-linaro-14.04-release$
It looks like there was an issue trying to compile dalvikvm.cc. Any ideas?
Thanks.
Kevin Dious
Qualcomm Innovation Center, Inc.
5755 Morehouse Drive
San Diego, CA 92121-1714
(858) 651-2014 (Phone)
(858) 845-7478 (Fax)
kdious@quicinc.com
*From:* Vishal Bhoj [mailto:vishal.bhoj@linaro.org] *Sent:* Tuesday, April 29, 2014 6:07 AM *To:* Dious, Kevin *Cc:* Mohammad Merajul Islam Molla; linaro-android@lists.linaro.org; Gupta, Tushar (Ecosystem); Harper, Cary
*Subject:* Re: Problems building Linaro Android on Ubuntu 10.04 for Versatile Express
Hi Dious,
On 29 April 2014 13:51, Dious, Kevin kdious@quicinc.com wrote:
Mohammad,
Thank you for your reply. So, I am curious, is the acpica-tools package truly necessary in order to build Linaro Android 14.04 release?
The acpica-tools is needed to build UEFI. We build kernel and UEFI from sources while building Android and hence the dependency.
I figured out this evening how to get around the cp error. I just ran ./linaro_android_build_cmds.sh –t (which means to build from the tip and use no overlay). This seems to have worked for me (I was able to advance past the cp error). The build is still ongoing. Hopefully the acpica-tools package is not necessary (I removed that from the script just to see if I can build on Ubuntu 10.04).
Thanks.
Kevin Dious
Qualcomm Innovation Center, Inc.
5755 Morehouse Drive
San Diego, CA 92121-1714
(858) 651-2014 (Phone)
(858) 845-7478 (Fax)
kdious@quicinc.com
*From:* Mohammad Merajul Islam Molla [mailto:meraj.enigma@gmail.com] *Sent:* Tuesday, April 29, 2014 1:08 AM *To:* Dious, Kevin *Cc:* linaro-android@lists.linaro.org; Gupta, Tushar (Ecosystem); Harper, Cary *Subject:* Re: Problems building Linaro Android on Ubuntu 10.04 for Versatile Express
Hello Kevin,
I recently built android on Ubuntu 13.04 for arndale board.
acpica-tools was available and was installed without problem on 13.04. May be 10.04 is too old.
Regarding the cp error, I also faced this error. Then I build with pinned-manifest.xml and it succeeded.
Can you trying downloading the pinned-manifest.xml file from http://releases.linaro.org/<VERSION>/... and try the below command -
./linaro_android_build_cmds.sh -m pinned-manifest.xml
--
Thanks,
-Meraj
linaro-android mailing list linaro-android@lists.linaro.org http://lists.linaro.org/mailman/listinfo/linaro-android
linaro-android mailing list linaro-android@lists.linaro.org http://lists.linaro.org/mailman/listinfo/linaro-android
linaro-android@lists.linaro.org