Difference between revisions of "OpenBTS: E110 Install Image di MicroSD"
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 11: | Line 11: | ||
cd /e110-backup | cd /e110-backup | ||
dd if=sde110-ori.bin of=/dev/sdc | dd if=sde110-ori.bin of=/dev/sdc | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==Download Image== | ==Download Image== | ||
Line 28: | Line 16: | ||
Prebuilt Images | Prebuilt Images | ||
− | + | 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== | ==Install Image== | ||
Line 46: | Line 34: | ||
Insert the SD card into a card reader. On most Linux distributions, two partitions should mount automatically as "FAT" and "rootfs". If not, the partitions need to be mounted manually. The FAT partition contains required boot contents, which includes the Linux kernel. The rootfs partition contains everything else - kernel modules, installed packages, user information, etc. | Insert the SD card into a card reader. On most Linux distributions, two partitions should mount automatically as "FAT" and "rootfs". If not, the partitions need to be mounted manually. The FAT partition contains required boot contents, which includes the Linux kernel. The rootfs partition contains everything else - kernel modules, installed packages, user information, etc. | ||
− | $ ls /media/ | + | $ ls /media/ |
− | FAT rootfs | + | FAT rootfs |
Install the MLO. Always copy a new MLO over the old one. If not performed properly, the partition will need to be reformatted. | Install the MLO. Always copy a new MLO over the old one. If not performed properly, the partition will need to be reformatted. | ||
− | $ cd /media/FAT | + | $ cd /media/FAT |
− | $ cp <download location>/MLO MLO | + | $ cp <download location>/MLO MLO |
Install the U-Boot image and Linux kernel | Install the U-Boot image and Linux kernel | ||
− | $ cp <download location>/u-boot.bin-for-3.0.bin u-boot.bin | + | $ 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 | + | $ cp <download location>/uImage-3.0-pm-r0a-usrp-e1xx.bin uImage |
Erase the existing root filesystem. Make sure that the correct directory is specified as significant data loss may occur if performed improperly. | Erase the existing root filesystem. Make sure that the correct directory is specified as significant data loss may occur if performed improperly. | ||
− | $ sudo rm -rf /media/rootfs/* | + | $ sudo rm -rf /media/rootfs/* |
Install the new root filesystem in the mounted rootfs partition. | Install the new root filesystem in the mounted rootfs partition. | ||
− | $ cd /media/rootfs | + | $ cd /media/rootfs |
− | $ sudo tar xvfz <download location>/console-openbts-devel-image-usrp-e1xx.tar.gz . | + | $ sudo tar xvfz <download location>/console-openbts-devel-image-usrp-e1xx.tar.gz . |
Unmount the partitions. Note that the umount may take a few minutes to sync before the SD card can be safely removed. | Unmount the partitions. Note that the umount may take a few minutes to sync before the SD card can be safely removed. | ||
− | $ cd /media | + | $ cd /media |
− | $ umount FAT | + | $ umount FAT |
− | $ umount rootfs | + | $ 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. | 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. | ||
Line 88: | Line 76: | ||
./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" | ./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 | make | ||
− | |||
− | |||
− | |||
− | |||
==Referensi== | ==Referensi== |
Revision as of 11:59, 9 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
Download Image
Prebuilt Images
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
The following instructions apply to installing images on the SD card in a Linux environment. Please read all instructions and follow them carefully as significant data loss is possible. It is recommended that you backup your SD card contents before proceeding.
Insert the SD card into a card reader. On most Linux distributions, two partitions should mount automatically as "FAT" and "rootfs". If not, the partitions need to be mounted manually. The FAT partition contains required boot contents, which includes the Linux kernel. The rootfs partition contains everything else - kernel modules, installed packages, user information, etc.
$ ls /media/ FAT rootfs
Install the MLO. Always copy a new MLO over the old one. If not performed properly, the partition will need to be reformatted.
$ cd /media/FAT $ cp <download location>/MLO MLO
Install the U-Boot image and 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
Erase the existing root filesystem. Make sure that the correct directory is specified as significant data loss may occur if performed improperly.
$ sudo rm -rf /media/rootfs/*
Install the new root filesystem in the mounted rootfs partition.
$ cd /media/rootfs $ sudo tar xvfz <download location>/console-openbts-devel-image-usrp-e1xx.tar.gz .
Unmount the partitions. Note that the umount may take a few minutes to sync before the SD card can be safely removed.
$ 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
- http://gnuradio.org/redmine/projects/gnuradio/wiki/OpenBTSE100
- http://code.ettus.com/redmine/ettus/projects/usrpe1xx/wiki/FAQ
- http://code.ettus.com/redmine/ettus/projects/usrpe1xx/wiki/BootFiles
- http://code.ettus.com/redmine/ettus/projects/usrpe1xx/wiki/FAQ#How-do-I-backup-the-microSD-card-shipped-with-the-E1XX
- http://www.gumstix.org/create-a-bootable-microsd-card.html
Pranala Menarik
- USRP: High Precision Clock
- USRP: Instalasi Board
- OpenBTS
- GNURadio: Ubuntu Install
- GNURadio: Spectrum Analizer GSM
- GNURadio: Mengubah board RFX1800 menjadi RFX900
- OpenBTS: Ubuntu Install
- OpenBTS: Konfigurasi
- OpenBTS: Kalibrasi
- OpenBTS: Konfigurasi Asterisk untuk OpenBTS
- OpenBTS: Menjalankan smqueue
- OpenBTS: Mengoperasikan BTS
- OpenBTS: Tampilan di Nokia saat pakai OpenBTS
- OpenBTS: Operasi 1800 MHz
- OpenBTS: Beberapa Tips
- OpenBTS: USRP2
- OpenBTS: Amplifier
- OpenBTS: SMS
- Membuat Base Station GSM Open Source
- Teknologi Selular
- GSM: Daftar Channel Frekuensi
- Wireless Internet
- OpenBSC
- AirProbe
- Base station subsystem
- GSM
- Asterisk
- Mobile phone
Catatan Legal dan Pendukung
- Siapa Bilang OpenBTS Ilegal?
- OpenBTS: Catatan MNC dan MCC Indonesia
- OpenBTS : Alokasi Frekuensi Operator GSM Indonesia