Tool/software: Linux
Hi All,
I'm trying to install SQLite2/3 on Beagle Bone Black , but it was not compiling, So please let me know how to install this package on beagle.
Thanking You,
Raghavendra
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Linux
Hi All,
I'm trying to install SQLite2/3 on Beagle Bone Black , but it was not compiling, So please let me know how to install this package on beagle.
Thanking You,
Raghavendra
Hello Raghavendra,
Please, follow these steps.
$ sudo apt-get install git build-essential python diffstat texinfo gawk chrpath dos2unix wget unzip socat doxygen libc6:i386 libncurses5:i386 libstdc++6:i386 libz1:i386
sudo dpkg-reconfigure dash
Be sure to select "No" when you are asked to use dash as the default system shell.
$ wget https://releases.linaro.org/components/toolchain/binaries/6.2-2016.11/arm-linux-gnueabihf/gcc-linaro-6.2.1-2016.11-x86_64_arm-linux-gnueabihf.tar.xz $ tar -Jxvf gcc-linaro-6.2.1-2016.11-x86_64_arm-linux-gnueabihf.tar.xz -C $HOME
$ git clone git://arago-project.org/git/projects/oe-layersetup.git tisdk
$ cd tisdk
$ ./oe-layertool-setup.sh -f configs/processor-sdk/processor-sdk-04.00.00.04-config.txt
$ cd build
$ . conf/setenv
$ export PATH=$HOME/gcc-linaro-6.2.1-2016.11-x86_64_arm-linux-gnueabihf/bin:$PATH
$ MACHINE=am335x-evm bitbake sqlite3
cd arago-tmp-[toolchain]/work/armv7ahf-neon-linux-gnueabi/sqlite3/[version]/deploy-ipks/armv7ahf-neon/
Copy the [package_ipk].ipk to your board and install by opkg.
opkg install [package_ipk].ipk
Best regards,
Kemal