Bob Mottram vor 8 Jahren
Ursprung
Commit
6cf270250f
Es ist kein Account mit dieser Commiter-Email verbunden
1 geänderte Dateien mit 48 neuen und 48 gelöschten Zeilen
  1. 48
    48
      src/freedombone-image-hardware-setup

+ 48
- 48
src/freedombone-image-hardware-setup Datei anzeigen

@@ -93,17 +93,17 @@ beaglebone_flash() {
93 93
 }
94 94
 
95 95
 beaglebone_repack_kernel() {
96
-# process installed kernel to create uImage, uInitrd, dtb
97
-# using flash-kernel would be a good approach, except it fails in the
98
-# cross build environment due to too many environment checks...
99
-#FK_MACHINE="TI AM335x BeagleBone" flash-kernel
100
-#  so, let's do it manually...
101
-
102
-# flash-kernel's hook-functions provided to mkinitramfs have the
103
-# unfortunate side-effect of creating /conf/param.conf in the initrd
104
-# when run from our emulated chroot environment, which means our root=
105
-# on the kernel command line is completely ignored!  repack the initrd
106
-# to remove this evil...
96
+	# process installed kernel to create uImage, uInitrd, dtb
97
+	# using flash-kernel would be a good approach, except it fails in the
98
+	# cross build environment due to too many environment checks...
99
+	#FK_MACHINE="TI AM335x BeagleBone" flash-kernel
100
+	#  so, let's do it manually...
101
+
102
+	# flash-kernel's hook-functions provided to mkinitramfs have the
103
+	# unfortunate side-effect of creating /conf/param.conf in the initrd
104
+	# when run from our emulated chroot environment, which means our root=
105
+	# on the kernel command line is completely ignored!  repack the initrd
106
+	# to remove this evil...
107 107
 
108 108
 	echo "info: repacking beaglebone kernel and initrd"
109 109
 
@@ -115,22 +115,22 @@ beaglebone_repack_kernel() {
115 115
 	mkdir /tmp/initrd-repack
116 116
 
117 117
 	(cd /tmp/initrd-repack ; \
118
-	zcat /boot/$initRd | cpio -i ; \
119
-	rm -f conf/param.conf ; \
120
-	find . | cpio --quiet -o -H newc | \
121
-	gzip -9 > /boot/$initRd )
118
+	 zcat /boot/$initRd | cpio -i ; \
119
+	 rm -f conf/param.conf ; \
120
+	 find . | cpio --quiet -o -H newc | \
121
+		 gzip -9 > /boot/$initRd )
122 122
 
123 123
 	rm -rf /tmp/initrd-repack
124 124
 
125 125
 	(cd /boot ; \
126
-	cp /usr/lib/$kernelVersion/am335x-boneblack.dtb dtb ; \
127
-	cat $vmlinuz dtb >> temp-kernel ; \
128
-	mkimage -A arm -O linux -T kernel -n "Debian kernel ${version}" \
129
-	-C none -a 0x80200000 -e 0x80200000 -d temp-kernel uImage ; \
130
-	rm -f temp-kernel ; \
131
-	mkimage -A arm -O linux -T ramdisk -C gzip -a 0x81000000 -e 0x81000000 \
132
-	-n "Debian ramdisk ${version}" \
133
-	-d $initRd uInitrd )
126
+	 cp /usr/lib/$kernelVersion/am335x-boneblack.dtb dtb ; \
127
+	 cat $vmlinuz dtb >> temp-kernel ; \
128
+	 mkimage -A arm -O linux -T kernel -n "Debian kernel ${version}" \
129
+			 -C none -a 0x80200000 -e 0x80200000 -d temp-kernel uImage ; \
130
+	 rm -f temp-kernel ; \
131
+	 mkimage -A arm -O linux -T ramdisk -C gzip -a 0x81000000 -e 0x81000000 \
132
+			 -n "Debian ramdisk ${version}" \
133
+			 -d $initRd uInitrd )
134 134
 }
135 135
 
136 136
 odroidc2_setup_boot() {
@@ -187,9 +187,9 @@ a20_setup_boot() {
187 187
 
188 188
 	# Setup boot.cmd
189 189
 	if grep -q btrfs /etc/fstab ; then
190
-	fstype=btrfs
190
+		fstype=btrfs
191 191
 	else
192
-	fstype=ext4
192
+		fstype=ext4
193 193
 	fi
194 194
 	kernelVersion=$(ls /usr/lib/*/$dtb | head -1 | cut -d/ -f4)
195 195
 	version=$(echo $kernelVersion | sed 's/linux-image-\(.*\)/\1/')
@@ -241,33 +241,33 @@ EOF
241 241
 
242 242
 case "$MACHINE" in
243 243
 	beaglebone)
244
-	beaglebone_setup_boot
245
-	beaglebone_flash
246
-	beaglebone_repack_kernel
247
-	enable_serial_console ttyO0
248
-	;;
244
+		beaglebone_setup_boot
245
+		beaglebone_flash
246
+		beaglebone_repack_kernel
247
+		enable_serial_console ttyO0
248
+		;;
249 249
 	odroid-c2)
250
-	odroidc2_setup_boot meson64_odroidc2
251
-	enable_serial_console ttyO0
252
-	;;
250
+		odroidc2_setup_boot meson64_odroidc2
251
+		enable_serial_console ttyO0
252
+		;;
253 253
 	cubietruck)
254
-	a20_setup_boot sun7i-a20-cubietruck.dtb
255
-	enable_serial_console ttyS0
256
-	;;
254
+		a20_setup_boot sun7i-a20-cubietruck.dtb
255
+		enable_serial_console ttyS0
256
+		;;
257 257
 	a20-olinuxino-lime)
258
-	a20_setup_boot sun7i-a20-olinuxino-lime.dtb
259
-	enable_serial_console ttyS0
260
-	;;
258
+		a20_setup_boot sun7i-a20-olinuxino-lime.dtb
259
+		enable_serial_console ttyS0
260
+		;;
261 261
 	a20-olinuxino-lime2)
262
-	a20_setup_boot sun7i-a20-olinuxino-lime2.dtb
263
-	enable_serial_console ttyS0
264
-	;;
262
+		a20_setup_boot sun7i-a20-olinuxino-lime2.dtb
263
+		enable_serial_console ttyS0
264
+		;;
265 265
 	a20-olinuxino-micro)
266
-	a20_setup_boot sun7i-a20-olinuxino-micro.dtb
267
-	enable_serial_console ttyS0
268
-	;;
266
+		a20_setup_boot sun7i-a20-olinuxino-micro.dtb
267
+		enable_serial_console ttyS0
268
+		;;
269 269
 	cubieboard2)
270
-	a20_setup_boot sun7i-a20-cubieboard2.dtb
271
-	enable_serial_console ttyS0
272
-	;;
270
+		a20_setup_boot sun7i-a20-cubieboard2.dtb
271
+		enable_serial_console ttyS0
272
+		;;
273 273
 esac