aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorJan Wagner <mail@jwagner.eu>2016-03-12 16:07:25 +0100
committerJan Wagner <mail@jwagner.eu>2016-03-12 16:07:25 +0100
commit4aa8ac6985680eb12ba5c82422ecc50e2bb55447 (patch)
treea85e15805b773c5218ccb0a279490c98eec41e81 /files
parent80185bd93dd9eecb1b41ef8ac9a186aff19ab33e (diff)
downloadrpi2-gen-image-4aa8ac6985680eb12ba5c82422ecc50e2bb55447.tar.gz
rpi2-gen-image-4aa8ac6985680eb12ba5c82422ecc50e2bb55447.tar.bz2
rpi2-gen-image-4aa8ac6985680eb12ba5c82422ecc50e2bb55447.zip
spliting more files, fix-uboot, fix-fbturbo, fix-locale
Diffstat (limited to 'files')
-rw-r--r--files/apt/10proxy1
-rw-r--r--files/apt/flash-kernel3
-rw-r--r--files/apt/sources.list10
-rw-r--r--files/boot/config.txt (renamed from files/config.txt)0
-rw-r--r--files/boot/uboot.mkimage11
-rw-r--r--files/locales/locale3
-rw-r--r--files/mount/fstab (renamed from files/fstab)0
-rw-r--r--files/network/eth.network5
-rw-r--r--files/network/hostname1
-rw-r--r--files/network/hosts2
-rw-r--r--files/network/interfaces2
-rw-r--r--files/xorg/99-fbturbo.conf6
12 files changed, 44 insertions, 0 deletions
diff --git a/files/apt/10proxy b/files/apt/10proxy
new file mode 100644
index 0000000..2a02a0c
--- /dev/null
+++ b/files/apt/10proxy
@@ -0,0 +1 @@
+Acquire::http:Proxy "";
diff --git a/files/apt/flash-kernel b/files/apt/flash-kernel
new file mode 100644
index 0000000..579e562
--- /dev/null
+++ b/files/apt/flash-kernel
@@ -0,0 +1,3 @@
+Package: flash-kernel
+Pin: origin repositories.collabora.co.uk
+Pin-Priority: 1000
diff --git a/files/apt/sources.list b/files/apt/sources.list
new file mode 100644
index 0000000..36472fc
--- /dev/null
+++ b/files/apt/sources.list
@@ -0,0 +1,10 @@
+deb http://ftp.debian.org/debian jessie main contrib
+#deb-src http://ftp.debian.org/debian jessie main contrib
+
+deb http://ftp.debian.org/debian/ jessie-updates main contrib
+#deb-src http://ftp.debian.org/debian/ jessie-updates main contrib
+
+deb http://security.debian.org/ jessie/updates main contrib
+#deb-src http://security.debian.org/ jessie/updates main contrib
+
+deb https://repositories.collabora.co.uk/debian jessie rpi2
diff --git a/files/config.txt b/files/boot/config.txt
index 7491765..7491765 100644
--- a/files/config.txt
+++ b/files/boot/config.txt
diff --git a/files/boot/uboot.mkimage b/files/boot/uboot.mkimage
new file mode 100644
index 0000000..cd71de6
--- /dev/null
+++ b/files/boot/uboot.mkimage
@@ -0,0 +1,11 @@
+# Tell Linux that it is booting on a Raspberry Pi2
+setenv machid 0x00000c42
+
+# Save these changes to u-boot's environment
+saveenv
+
+# Load the existing Linux kernel into RAM
+fatload mmc 0:1 ${kernel_addr_r} kernel7.img
+
+# Boot the kernel we have just loaded
+bootz ${kernel_addr_r}
diff --git a/files/locales/locale b/files/locales/locale
new file mode 100644
index 0000000..91f267a
--- /dev/null
+++ b/files/locales/locale
@@ -0,0 +1,3 @@
+# File generated by rpi2-gen-image
+LANG=C
+LC_ALL=C
diff --git a/files/fstab b/files/mount/fstab
index 4ec06e9..4ec06e9 100644
--- a/files/fstab
+++ b/files/mount/fstab
diff --git a/files/network/eth.network b/files/network/eth.network
new file mode 100644
index 0000000..e871c69
--- /dev/null
+++ b/files/network/eth.network
@@ -0,0 +1,5 @@
+[Match]
+Name=eth0
+
+[Network]
+DHCP=yes
diff --git a/files/network/hostname b/files/network/hostname
new file mode 100644
index 0000000..03a61be
--- /dev/null
+++ b/files/network/hostname
@@ -0,0 +1 @@
+rpi2-jessie
diff --git a/files/network/hosts b/files/network/hosts
new file mode 100644
index 0000000..be7c5cb
--- /dev/null
+++ b/files/network/hosts
@@ -0,0 +1,2 @@
+127.0.0.1 localhost
+127.0.1.1 rpi2-jessie
diff --git a/files/network/interfaces b/files/network/interfaces
new file mode 100644
index 0000000..241b666
--- /dev/null
+++ b/files/network/interfaces
@@ -0,0 +1,2 @@
+# Debian switched to systemd-networkd configuration files.
+# please configure your networks in '/etc/systemd/network/'
diff --git a/files/xorg/99-fbturbo.conf b/files/xorg/99-fbturbo.conf
new file mode 100644
index 0000000..a7124c9
--- /dev/null
+++ b/files/xorg/99-fbturbo.conf
@@ -0,0 +1,6 @@
+Section "Device"
+ Identifier "Allwinner A10/A13 FBDEV"
+ Driver "fbturbo"
+ Option "fbdev" "/dev/fb0"
+ Option "SwapbuffersWait" "true"
+EndSection