This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
intel_nuc:nexcom_ndis_166:nexcom_vtc_1010 [2014/04/30 15:58] 127.0.0.1 external edit |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | To install the AGL reference platform on Intel NUC, Nexcom NDIS 166 and Nexcom VTC 1010 system please follow the instructions below. | ||
- | |||
- | |||
- | ===== Downloading the Binary Image ===== | ||
- | |||
- | |||
- | Current binary images: | ||
- | |||
- | * Nexcom NDIS 166 / VTC 1010 [[https://download.automotivelinux.org/POC/PoC_Image/AGLReference-2014-04-25_NDIS.raw|binary image]] | ||
- | * Intel NUC [[https://download.automotivelinux.org/POC/PoC_Image/AGLReference-2014-04-25_NUC.raw|binary image]] | ||
- | |||
- | All binary images: | ||
- | |||
- | * Go to the [[https://download.automotivelinux.org/POC/PoC_Image|download site]] for a list of all images | ||
- | |||
- | |||
- | ===== Preparing the USB Key ===== | ||
- | |||
- | |||
- | To prepare a USB key on a Microsoft Windows system perform the following steps: | ||
- | |||
- | - Download the GParted Live zip file from http://gparted.sourceforge.net/download.php | ||
- | - Take a 8GB or greater USB memory stick formatted with the FAT32 file system. Named “GPARTED” | ||
- | - Extract all the contents of the GParted zip file to FAT16/FAT32 partition on your USB flash drive. Keep the directory architecture, for example, file "GPL" should be in the USB flash drive's top directory (e.g. G:\GPL). | ||
- | - Browse to your USB flash drive and as an administrator, click the makeboot.bat in the dir utils\win32\. | ||
- | WARNING! Makeboot.bat must be run from your USB flash drive. | ||
- | - Follow the on-screen instructions. | ||
- | - Copy the imagefile to the USB key | ||
- | |||
- | |||
- | ===== Imaging the USB Key for the Target Hardware ===== | ||
- | |||
- | |||
- | To copy the AGL reference platform image on the USB key perform these steps: | ||
- | |||
- | - Boot the system from the GParted USB stick. | ||
- | - Start GParted with the defaults. You may need failsafe mode (hit Enter through options). | ||
- | - Open up a Terminal | ||
- | sudo gunzip –c /live/image/imagefile.img.gz | sudo dd of=/dev/sda bs=16M | ||
- | NOTE: raw files can be imaged with sudo dd if=imagefile.raw of=/dev/sda bs=16M | ||
- | Simply replace imagefile.raw with the actual image file name. | ||
- | - Close the Terminal | ||
- | - In GParted window, refresh the devices. You may need to restart before stretching partition. | ||
- | - Increase the size of sda3 to the maximum for the drive | ||
- | - Apply the changes | ||
- | - Shut down the machine. | ||
- | - Remove the USB key. | ||
- | - Power on the machine. | ||
- | |||
- | |||
- | ===== Installing the Image on the Target Hardware from the USB Key ===== | ||
- | |||
- | |||
- | After the target hardware has booted the AGL reference platform from the USB key you can install the image on the system's internal drive by performing the following steps: | ||
- | |||
- | - Boot POC machine to Linux using a usb or network. | ||
- | - Open a Terminal/Console window.( can be done with CTRL-ALT-F4) | ||
- | - Login as necessary.(Not covered here) | ||
- | - Image the device with the following command | ||
- | * for raw image file format: | ||
- | sudo dd if=imagefile.raw of=/dev/sda bs=16M | ||
- | * for image files that end in img.gz in most cases use. | ||
- | dd if=imagefile.img.gz | gunzip –c | sudo dd of=/dev/sda bs=16M | ||
- | * for image files that end in img.bz2 in most cases use. | ||
- | dd if=imagefile.img.bz2 | bzip2 –d –c | sudo dd of=/dev/sda bs=16M | ||
- | NOTE: You will know the file is complete when the console returns. This image process can take up to 30Min for a 4gb image. | ||
- | - Now restart the POC machine. Your POC machine should boot the Tizen demo. Be sure to remove the usb boot device and turn off the Network boot prior to booting the box. See the instructions for your POC machine for configuration and setup of Network booting. | ||