Compilation steps for MPC8248

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Compilation steps for MPC8248

770 Views
winstonjacob
Contributor IV

I am downloaded the BSP ISO file from the below NXP link, and I mounted and installed the ISO, can anybody help me to compile this entire BSP for MPC8248

https://www.nxp.com/products/processors-and-microcontrollers/legacy-mpu-mcus/powerquicc-processors/p...

Linux BSP for Freescale MPC8272ADS RoHS board

Steps followed
===========
sudo mount -o loop MPC8272ADS_20080623-ltib.iso /mnt/cdrom/
And I set the path for source /home/firstview/mpc-yocto
./install

After that I got the following files, how to compile is not available anywhere.

~/mpc-yocto/ltib-mpc8272ads-20080623$ ls
bin config COPYING dist doc ltib pkgs README release_logs rootfs.ext2.gz rootfs.ext2.gz.uboot rpm tmp

 

Regards

Winston

0 Kudos
1 Reply

750 Views
yipingwang
NXP TechSupport
NXP TechSupport

Please run necessary packages listed as the following required by ltib, then run "./ltib" to build images.

#/bin/bash
# Install LTIB dependant packages
sudo apt-get install gettext libgtk2.0-dev rpm bison m4 libfreetype6-dev
sudo apt-get install libdbus-glib-1-dev liborbit2-dev intltool
sudo apt-get install ccache ncurses-dev zlib1g zlib1g-dev gcc g++ libtool
sudo apt-get install uuid-dev liblzo2-dev
sudo apt-get install tcl dpkg
# Packages required for 64-bit Ubuntu
# Do "uname -a" and see if the word "x86_64" shows up.
if uname -a|grep -sq 'x86_64'; then
sudo apt-get install ia32-libs libc6-dev-i386 lib32z1
fi

apart from this I also installed 

sudo apt-get install lib32ncurses5-dev

sudo apt-get install lib32ncursesw5-dev

Tags (1)
0 Kudos