]> git.ipfire.org Git - ipfire-2.x.git/blame - src/initscripts/system/partresize
Merge remote-tracking branch 'origin/next'
[ipfire-2.x.git] / src / initscripts / system / partresize
CommitLineData
a6d0d790
AF
1#!/bin/sh
2########################################################################
3# Begin $rc_base/init.d/partresize
4#
3e011c27 5# Description : Resize the root partition to the drivesize
fa5e921c
AF
6# and setup some platform or hardware options in
7# flashimage
a6d0d790
AF
8#
9# Authors : Arne Fitzenreiter - arne_f@ipfire.org
10#
b8101c50 11# Version : 1.04
a6d0d790
AF
12#
13# Notes :
14#
15########################################################################
16
17. /etc/sysconfig/rc
18. ${rc_functions}
19
20case "${1}" in
21 start)
a2454679 22 if [ -e "/.partresize" ]; then
6b566244 23
a2454679
MT
24 boot_mesg "Mounting root file system in read/write mode ..."
25 mount -o remount,rw / > /dev/null
26 evaluate_retval
a6d0d790 27
c0504c5c
AF
28 boot_mesg "Create /etc/mtab..."
29 > /etc/mtab
30 mount -f / || failed=1
31 (exit ${failed})
32 evaluate_retval
33
8f49959d
AF
34 # check if serial console enabled
35 scon="off";
36 if [ ! "$(grep "console=ttyS0" /proc/cmdline)" == "" ]; then
37 scon="on";
38 fi
99f2c695
AF
39 if [ -e /sys/class/dmi/id/product_name ]; then
40 IFS= read -r DMI_PRODUCT_NAME < /sys/class/dmi/id/product_name;
41 case ${DMI_PRODUCT_NAME} in
42 APU|apu[1-4]|PC\ Engines\ apu[1-4] )
43 scon="on";
44 ;;
45 esac
46 fi
8f49959d 47
bc503715
MT
48 # Enable the serial console on all systems on Azure
49 if running_on_azure; then
50 scon="on"
51 fi
52
fa5e921c
AF
53 # Install AP6112 wlan config on NanoPi R1
54 case "$(< /proc/device-tree/model )" in
55 "FriendlyElec NanoPi-R1")
56 cp -f /lib/firmware/brcm/brcmfmac43430-sdio.AP6212.txt \
57 /lib/firmware/brcm/brcmfmac43430-sdio.txt
58 ;;
59 esac 2>/dev/null
60
6b566244
AF
61 mount /boot > /dev/null
62 if [ -e /boot/grub/grub.cfg ]; then
63 # swtich permanent to serial console if it was selected on first boot
8f49959d 64 if [ "${scon}" = "on" ]; then
6b566244
AF
65 # Enable also serial console on GRUB
66 echo "GRUB_TERMINAL=\"serial console\"" >> /etc/default/grub
67 echo "GRUB_SERIAL_COMMAND=\"serial --unit=0 --speed=115200\"" >> /etc/default/grub
68 sed -i -e "s|panic=10|& console=ttyS0,115200n8|g" /etc/default/grub
69 fi
43829df3
MT
70
71 # Re-generate GRUB configuration
72 /usr/sbin/grub-mkconfig -o /boot/grub/grub.cfg
6b566244
AF
73 fi
74 umount /boot > /dev/null
75
a2454679 76 # Detect device
c0504c5c 77 mount | while read -r dev tmp1 mountpoint tmp2; do
a2454679
MT
78 [ "${dev}" = "rootfs" ] && continue
79
80 if [ "${mountpoint}" = "/" ]; then
81 # Find root partition number
82 part_num="${dev: -1}"
a6d0d790 83
a2454679
MT
84 # Find path to the root device
85 root_dev="${dev::-1}"
86 if [ ! -b "${dev::-1}" -a "${root_dev: -1}" = "p" ]; then
87 root_dev="${dev::-2}"
88 fi
6450609d 89
a2454679
MT
90 boot_mesg "Growing root partition to maximum size..."
91 echo -e ',+' | sfdisk --no-reread -f -N${part_num} "${root_dev}" 2>/dev/null
a6d0d790 92
a2454679
MT
93 # Update c,h,s values of the boot partition...
94 if [ ${part_num} -ne 1 -a -b "${root_dev}1" ]; then
95 echo -e ',' | sfdisk --no-reread -f -N1 ${DRV} &> /dev/null
96 fi
a6d0d790 97
a2454679
MT
98 # The filesystem should be resized after
99 # this operation
100 touch /.resizefs
a6d0d790 101
a2454679
MT
102 # Remove marker
103 rm -f /.partresize
104
105 # Reboot
106 boot_mesg "Rebooting system..."
107 mount -o remount,ro / &>/dev/null
108 sleep 15
109 reboot -f
110 fi
c0504c5c 111 done
a2454679 112 fi
a6d0d790
AF
113 ;;
114 *)
115 echo "Usage: ${0} {start}"
116 exit 1
117 ;;
118esac
119
120# End $rc_base/init.d/partresize