propogate the rename through
[kernel-bfs] / kernel-bfs-2.6.28 / debian / kernel-bfs-flasher.preinst
1 #!/bin/sh
2
3 test "$1" = install || exit 0 # upgrades are fine
4 f=/tmp/kernel-bfs-msg
5 cat > $f <<EOF
6 This package will install an enhanced Linux kernel,
7 with many additional features and bugfixes.
8 By default, all extra features are disabled
9 but they can be enabled by the user during runtime.
10 For more details please read the package description or
11 visit http://wiki.maemo.org/Kernel_Power
12
13 Warning: The kernel is an essential component of your device
14 and a misconfiguration of it may brick your device 
15 and could require reflashing the firmware in the worst case.
16 This kernel, however, is very stable and installation should be safe.
17
18 If you want keep the current kernel, cancel the installation now
19 by tapping the blurred area above this dialog.
20
21 After the installation, you need to unplug the USB cable,
22 completely shutdown your device, and boot again to activate the kernel.
23 EOF
24 maemo-confirm-text "Kernel-BFS Flasher" $f
25 res=$?
26 rm -f $f
27 exit $res