You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.0 KiB

# NI \o/ - Neutrino-Images Buildsystem #
## Für die Einrichtung unter Debian sind folgende Pakete nötig
```bash
7 years ago
apt-get install \
git subversion cvs automake build-essential ccache cmake patch bison flex \
texinfo autopoint libtool libtool-bin python curl gawk gzip bzip2 lzma gperf \
gettext help2man bc libglib2.0-dev libncurses5-dev libncursesw5-dev \
liblzo2-dev uuid-dev libssl-dev libcurl4-openssl-dev intltool
7 years ago
```
## 1) Buildsystem initialisieren
```bash
5 years ago
git clone https://github.com/neutrino-images/ni-buildsystem.git
7 years ago
cd ni-buildsystem
```
## 2) Archivverzeichnis erstellen
```bash
mkdir -p $HOME/archives
ln -s $HOME/archives download
7 years ago
```
## 3) Buildsystem konfigurieren
```bash
make local-files
7 years ago
```
config.local auf die eigenen Bedürfnisse anpassen. BOXMODEL **muss** gesetzt werden!
7 years ago
## 4) Buildumgebung prüfen
```bash
make toolcheck
7 years ago
```
## 5) Buildsystem initialisieren und Toolchain bauen
```bash
7 years ago
make init
```
## 6) Image(s) bauen
```bash
make image
make images
7 years ago
```
## 7) Aktualisieren und aufräumen
```bash
7 years ago
make update-all
make clean
```