Difference between revisions of "OpenBTS: E110 Install Image di MicroSD"

From OnnoWiki
Jump to navigation Jump to search
Line 19: Line 19:
 
  http://files.ettus.com/e1xx_images/
 
  http://files.ettus.com/e1xx_images/
  
Download file yan di inginkan dan untar
+
Cek lokasi MicroSD (biasanya /dev/sdb), kalau perlu di umount
  
  $ tar jxvf e1xx-xxx-make.tar.bz2
+
  fdisk -l
 +
sudo umount /path/to/mount/point/partition
  
kita akan melihat directory 'e1xx-xxx'.
+
Download file dan lakukan proses pembuatan SD card
Masukan SD card, jika SD card automount, kita perlu umount
 
  
  $ sudo umount /path/to/mount/point/partition
+
  sudo su
 +
cp e1xx-002-make.tar.bz2 /usr/local/src/
 +
cd /usr/local/src
 +
tar jxvf e1xx-002-make.tar.bz2
 +
cd /usr/local/src/e1xx-002
 +
./MakeEttusSDCard.sh /dev/sdb
  
Lakukan fdisk untuk mencek nama device SD card
+
Ini akan membutuhkan beberapa waktu untuk menyelesaikan
 
 
$ sudo fdisk -l
 
 
 
Misalnya SD card di kenali sebagai /dev/sdb Lakukan
 
 
 
$ sudo ./MakeEttusSDCard.sh /dev/sdb
 
 
 
Ini akan membutuhkan beberapa waktu
 
  
 
==Download Image==  
 
==Download Image==  

Revision as of 13:57, 10 February 2012

Backup SDCARD Bawaan dari Ettus

Masukan SD card ke PC.

mkdir /e110-backup
cd /e110-backup
dd if=/dev/sdc of=sde110-ori.bin

Untuk mengembalikan

cd /e110-backup
dd if=sde110-ori.bin of=/dev/sdc

Cara Lain Untuk Membuat Image E1xx SD card

Download dari

http://files.ettus.com/e1xx_images/e1xx-002/
http://files.ettus.com/e1xx_images/

Cek lokasi MicroSD (biasanya /dev/sdb), kalau perlu di umount

fdisk -l
sudo umount /path/to/mount/point/partition

Download file dan lakukan proses pembuatan SD card

sudo su
cp e1xx-002-make.tar.bz2 /usr/local/src/
cd /usr/local/src
tar jxvf e1xx-002-make.tar.bz2
cd /usr/local/src/e1xx-002
./MakeEttusSDCard.sh /dev/sdb

Ini akan membutuhkan beberapa waktu untuk menyelesaikan

Download Image

Prebuilt Image

MLO: The stage 1 boot loader that configures external memory and loads the second stage boot loader.
http://dl.dropbox.com/u/14618236/MLO
U-Boot: The stage 2 boot loader that loads the Linux kernel.
http://dl.dropbox.com/u/14618236/u-boot.bin-for-3.0.bin
uImage: The Linux kernel
http://dl.dropbox.com/u/14618236/uImage-3.0-pm-r0a-usrp-e1xx.bin
Root file system
http://dl.dropbox.com/u/14618236/console-openbts-devel-image-usrp-e1xx.tar.gz

Install Image

Langkah berikut adalah untuk menginstall image di SD card di Linux. Sangat di sarankan untuk membackup terlebih dulu isi SD card sebelum anda melakukan hal ini.

Masukan SD card ke card reader. Akan terdeteksi dua partisi yaitu FAT dan rootfs. Jika tidak, partisi tersebut perlu di mount secara manual.

Partisi FAT berisi software untuk boot, seperti kernel Linux. Partisi rootfs berisi lainnya, termasuk kernel modul, paket yang terinstalasi dll.

$ ls /media/
FAT  rootfs

Instal MLO. Timpa MLO lama dengan MLO baru. Jika ini tidak betul dilakukan, maka partisi perlu di format.

$ cd /media/FAT
$ cp <download location>/MLO MLO

Install image U-Boot dan Linux kernel

$ cp <download location>/u-boot.bin-for-3.0.bin u-boot.bin
$ cp <download location>/uImage-3.0-pm-r0a-usrp-e1xx.bin uImage

Hapus root filesystem. Pastikan bahwa directory yang digunakan benar, jika tidak kita akan kehilangan data.

$ sudo rm -rf /media/rootfs/*

Install root filesystem yang baru di partisi rootfs yang di mount.

$ cd /media/rootfs
$ sudo tar xvfz <download location>/console-openbts-devel-image-usrp-e1xx.tar.gz .

Unmount partisi. Perhatikan umount akan membutuhkan beberapa menit sebelum SD card dapat di cabut dengan aman.

$ cd /media
$ umount FAT
$ umount rootfs

At this point, the SD card can be removed and booted on the E100. For general information on starting and communicating with the E100, please refer to the following Connections section of the FAQ. Download

Obtain the source code from the official OpenBTS P2.8 project site

svn co http://wush.net/svn/range/software/public

Build

Follow standard build instructions, however, note that special compiler options specific to ARM processor optimizations are required.

autoreconf -i
./configure --with-uhd CFLAGS="-march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -O3" CXXFLAGS="-march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -O3" 
make

Referensi

Pranala Menarik

Persiapan Hardware

OpenBTS 2.6

OpenBTS 2.8

Ettus E110

Lain Lain

Catatan Legal dan Pendukung

Catatan Sejarah