diff --git a/README.md b/README.md index 959b537..a75826e 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -barnacleos/build -================ +raspberrypi-build +================= -[![Build Status](https://travis-ci.org/barnacleos/build.svg)](https://travis-ci.org/barnacleos/build) +[![Build Status](https://travis-ci.org/kotovalexarian/raspberrypi-build.svg)](https://travis-ci.org/kotovalexarian/raspberrypi-build) -Tool used to create the [BarnacleOS](https://github.com/barnacleos) images. +Tool used to create custom Debian GNU/Linux images for Raspberry Pi. Based on [pi-gen](https://github.com/rpi-distro/pi-gen) tool used to create the official [raspberrypi.org](https://raspberrypi.org) Raspbian images. @@ -39,7 +39,7 @@ Run `sudo ./run ./build.sh && sudo ./run ./mkimg.sh` to build the image. The following files will be created: * `rootfs/` - the root file system (`/` and `/boot/` partitions) -* `deploy/BarnacleOS.img` - the image to write to SD card +* `deploy/raspberrypi.img` - the image to write to SD card #### WARNING @@ -55,7 +55,7 @@ The following files will be created: System configuration -------------------- -The following information can be helpful when you connect to BarnacleOS: +The following information can be helpful when you connect: * Root password is disabled * User `user` has access via SSH with password `password` diff --git a/files/etc/hostname b/files/etc/hostname index f1f6e97..41757af 100644 --- a/files/etc/hostname +++ b/files/etc/hostname @@ -1 +1 @@ -barnacleos +raspberrypi diff --git a/files/etc/hosts b/files/etc/hosts index 7c7bcc9..91871ab 100644 --- a/files/etc/hosts +++ b/files/etc/hosts @@ -1,2 +1,2 @@ 127.0.0.1 localhost -127.0.1.1 barnacleos.local barnacleos +127.0.1.1 raspberrypi.local raspberrypi diff --git a/files/etc/motd b/files/etc/motd index 0ec8176..93cb785 100644 --- a/files/etc/motd +++ b/files/etc/motd @@ -1,5 +1,5 @@ -Welcome to BarnacleOS, which is a distribution of the Debian GNU/Linux. +Welcome to custom Debian GNU/Linux image for Raspberry Pi. The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the diff --git a/run b/run index 3c3ae8c..bc5e905 100755 --- a/run +++ b/run @@ -4,7 +4,7 @@ export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin' export BASE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -export IMG_NAME='BarnacleOS' +export IMG_NAME='raspberrypi' export USERNAME='user' export PASSWORD='password'