AVR32 General/Installing tools on Ubuntu Linux

From AVRFreaks Wiki

Jump to: navigation, search

Installation with apt-get

Apt is the default package management system for Ubuntu Linux. To make Apt aware of the STK1000 BSP packages, you must add the following line to the end of the file /etc/apt/sources.list:

deb http://www.atmel.no/beta_ware/avr32/ubuntu/dapper binary/

The line must be exactly as shown above, including the trailing slash.

To refresh the list of available packages, execute the command

sudo apt-get update

To install development environments for both AVR32 standalone and AVR32 Linux, execute the command

sudo apt-get install stk1000bsp.

To install tools only for AVR32 standalone, replace the above command with

sudo apt-get install avr32-standalone-devel

To install tools only for AVR32 Linux, type

sudo apt-get install avr32-linux-devel


Getting updated packages

When updates to these packages are released, simply execute the command:

sudo apt-get update

and to install the new packages:

sudo apt-get dist-upgrade

Troubleshooting

If you experience problems when installing new packages due to conflicts with old, please uninstall the previous set of packages as follows:

sudo apt-et remove package

If you are using a proxy server you must specify it:

export http_proxy=http://username:password@proxyaddress:port/
Static version created: 2007-03-07
Copyright (c) 2007 Atmel Corporation