summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/initrdscripts
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/initrdscripts')
-rw-r--r--meta/recipes-core/initrdscripts/files/init-boot.sh10
-rw-r--r--meta/recipes-core/initrdscripts/files/init-install-efi.sh178
-rw-r--r--meta/recipes-core/initrdscripts/files/init-install.sh208
-rw-r--r--meta/recipes-core/initrdscripts/files/init-live.sh218
-rw-r--r--meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb14
-rw-r--r--meta/recipes-core/initrdscripts/initramfs-framework/debug82
-rwxr-xr-xmeta/recipes-core/initrdscripts/initramfs-framework/e2fs28
-rwxr-xr-xmeta/recipes-core/initrdscripts/initramfs-framework/finish47
-rwxr-xr-xmeta/recipes-core/initrdscripts/initramfs-framework/init140
-rw-r--r--meta/recipes-core/initrdscripts/initramfs-framework/mdev30
-rw-r--r--meta/recipes-core/initrdscripts/initramfs-framework/udev45
-rw-r--r--meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb59
-rw-r--r--meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb17
-rw-r--r--meta/recipes-core/initrdscripts/initramfs-live-install-efi_1.0.bb22
-rw-r--r--meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb22
15 files changed, 1120 insertions, 0 deletions
diff --git a/meta/recipes-core/initrdscripts/files/init-boot.sh b/meta/recipes-core/initrdscripts/files/init-boot.sh
new file mode 100644
index 0000000000..e82eba025d
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/files/init-boot.sh
@@ -0,0 +1,10 @@
1#!/bin/sh
2
3PATH=/sbin:/bin:/usr/sbin:/usr/bin
4
5mkdir /proc
6mkdir /sys
7mount -t proc proc /proc
8mount -t sysfs sysfs /sys
9
10exec sh
diff --git a/meta/recipes-core/initrdscripts/files/init-install-efi.sh b/meta/recipes-core/initrdscripts/files/init-install-efi.sh
new file mode 100644
index 0000000000..9846637316
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/files/init-install-efi.sh
@@ -0,0 +1,178 @@
1#!/bin/sh -e
2#
3# Copyright (c) 2012, Intel Corporation.
4# All rights reserved.
5#
6# install.sh [device_name] [rootfs_name]
7#
8
9PATH=/sbin:/bin:/usr/sbin:/usr/bin
10
11# We need 20 Mb for the boot partition
12boot_size=20
13
14# 5% for swap
15swap_ratio=5
16
17found="no"
18
19echo "Searching for a hard drive..."
20for device in 'hda' 'hdb' 'sda' 'sdb' 'mmcblk0' 'mmcblk1'
21do
22 if [ -e /sys/block/${device}/removable ]; then
23 if [ "$(cat /sys/block/${device}/removable)" = "0" ]; then
24 found="yes"
25
26 while true; do
27 # Try sleeping here to avoid getting kernel messages
28 # obscuring/confusing user
29 sleep 5
30 echo "Found drive at /dev/${device}. Do you want to install this image there ? [y/n]"
31 read answer
32 if [ "$answer" = "y" ] ; then
33 break
34 fi
35
36 if [ "$answer" = "n" ] ; then
37 found=no
38 break
39 fi
40
41 echo "Please answer y or n"
42 done
43 fi
44 fi
45
46 if [ "$found" = "yes" ]; then
47 break;
48 fi
49
50done
51
52if [ "$found" = "no" ]; then
53 exit 1
54fi
55
56echo "Installing image on /dev/${device}"
57
58#
59# The udev automounter can cause pain here, kill it
60#
61rm -f /etc/udev/rules.d/automount.rules
62rm -f /etc/udev/scripts/mount*
63
64#
65# Unmount anything the automounter had mounted
66#
67umount /dev/${device}* 2> /dev/null || /bin/true
68
69mkdir -p /tmp
70cat /proc/mounts > /etc/mtab
71
72disk_size=$(parted /dev/${device} unit mb print | grep Disk | cut -d" " -f 3 | sed -e "s/MB//")
73
74swap_size=$((disk_size*swap_ratio/100))
75rootfs_size=$((disk_size-boot_size-swap_size))
76
77rootfs_start=$((boot_size))
78rootfs_end=$((rootfs_start+rootfs_size))
79swap_start=$((rootfs_end))
80
81# MMC devices are special in a couple of ways
82# 1) they use a partition prefix character 'p'
83# 2) they are detected asynchronously (need rootwait)
84rootwait=""
85part_prefix=""
86if [ ! "${device#mmcblk}" = "${device}" ]; then
87 part_prefix="p"
88 rootwait="rootwait"
89fi
90bootfs=/dev/${device}${part_prefix}1
91rootfs=/dev/${device}${part_prefix}2
92swap=/dev/${device}${part_prefix}3
93
94echo "*****************"
95echo "Boot partition size: $boot_size MB ($bootfs)"
96echo "Rootfs partition size: $rootfs_size MB ($rootfs)"
97echo "Swap partition size: $swap_size MB ($swap)"
98echo "*****************"
99echo "Deleting partition table on /dev/${device} ..."
100dd if=/dev/zero of=/dev/${device} bs=512 count=2
101
102echo "Creating new partition table on /dev/${device} ..."
103parted /dev/${device} mklabel gpt
104
105echo "Creating boot partition on $bootfs"
106parted /dev/${device} mkpart primary 0% $boot_size
107
108echo "Creating rootfs partition on $rootfs"
109parted /dev/${device} mkpart primary $rootfs_start $rootfs_end
110
111echo "Creating swap partition on $swap"
112parted /dev/${device} mkpart primary $swap_start 100%
113
114parted /dev/${device} print
115
116echo "Formatting $bootfs to vfat..."
117mkfs.vfat $bootfs
118
119echo "Formatting $rootfs to ext3..."
120mkfs.ext3 $rootfs
121
122echo "Formatting swap partition...($swap)"
123mkswap $swap
124
125mkdir /ssd
126mkdir /rootmnt
127mkdir /bootmnt
128
129mount $rootfs /ssd
130mount -o rw,loop,noatime,nodiratime /media/$1/$2 /rootmnt
131
132echo "Copying rootfs files..."
133cp -a /rootmnt/* /ssd
134
135if [ -d /ssd/etc/ ] ; then
136 echo "$swap swap swap defaults 0 0" >> /ssd/etc/fstab
137
138 # We dont want udev to mount our root device while we're booting...
139 if [ -d /ssd/etc/udev/ ] ; then
140 echo "/dev/${device}" >> /ssd/etc/udev/mount.blacklist
141 fi
142fi
143
144umount /ssd
145umount /rootmnt
146
147echo "Preparing boot partition..."
148mount $bootfs /ssd
149
150EFIDIR="/ssd/EFI/BOOT"
151mkdir -p $EFIDIR
152GRUBCFG="$EFIDIR/grub.cfg"
153
154cp /media/$1/vmlinuz /ssd
155# Copy the efi loader and config (booti*.efi and grub.cfg)
156cp /media/$1/EFI/BOOT/* $EFIDIR
157
158# Update grub config for the installed image
159# Delete the install entry
160sed -i "/menuentry 'install'/,/^}/d" $GRUBCFG
161# Delete the initrd lines
162sed -i "/initrd /d" $GRUBCFG
163# Delete any LABEL= strings
164sed -i "s/ LABEL=[^ ]*/ /" $GRUBCFG
165# Delete any root= strings
166sed -i "s/ root=[^ ]*/ /" $GRUBCFG
167# Add the root= and other standard boot options
168sed -i "s@linux /vmlinuz *@linux /vmlinuz root=$rootfs rw $rootwait quiet @" $GRUBCFG
169
170umount /ssd
171sync
172
173echo "Remove your installation media, and press ENTER"
174
175read enter
176
177echo "Rebooting..."
178reboot -f
diff --git a/meta/recipes-core/initrdscripts/files/init-install.sh b/meta/recipes-core/initrdscripts/files/init-install.sh
new file mode 100644
index 0000000000..8e433d5eda
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/files/init-install.sh
@@ -0,0 +1,208 @@
1#!/bin/sh -e
2#
3# Copyright (C) 2008-2011 Intel
4#
5# install.sh [device_name] [rootfs_name] [video_mode] [vga_mode]
6#
7
8PATH=/sbin:/bin:/usr/sbin:/usr/bin
9
10# We need 20 Mb for the boot partition
11boot_size=20
12
13# 5% for the swap
14swap_ratio=5
15
16# Get a list of hard drives
17hdnamelist=""
18live_dev_name=${1%%/*}
19
20echo "Searching for hard drives ..."
21
22for device in `ls /sys/block/`; do
23 case $device in
24 loop*)
25 # skip loop device
26 ;;
27 ram*)
28 # skip ram device
29 ;;
30 *)
31 # skip the device LiveOS is on
32 # Add valid hard drive name to the list
33 if [ $device != $live_dev_name -a -e /dev/$device ]; then
34 hdnamelist="$hdnamelist $device"
35 fi
36 ;;
37 esac
38done
39
40TARGET_DEVICE_NAME=""
41for hdname in $hdnamelist; do
42 # Display found hard drives and their basic info
43 echo "-------------------------------"
44 echo /dev/$hdname
45 if [ -r /sys/block/$hdname/device/vendor ]; then
46 echo -n "VENDOR="
47 cat /sys/block/$hdname/device/vendor
48 fi
49 echo -n "MODEL="
50 cat /sys/block/$hdname/device/model
51 cat /sys/block/$hdname/device/uevent
52 echo
53 # Get user choice
54 while true; do
55 echo -n "Do you want to install this image there? [y/n] "
56 read answer
57 if [ "$answer" = "y" -o "$answer" = "n" ]; then
58 break
59 fi
60 echo "Please answer y or n"
61 done
62 if [ "$answer" = "y" ]; then
63 TARGET_DEVICE_NAME=$hdname
64 break
65 fi
66done
67
68if [ -n "$TARGET_DEVICE_NAME" ]; then
69 echo "Installing image on /dev/$TARGET_DEVICE_NAME ..."
70else
71 echo "No hard drive selected. Installation aborted."
72 exit 1
73fi
74
75device=$TARGET_DEVICE_NAME
76
77#
78# The udev automounter can cause pain here, kill it
79#
80rm -f /etc/udev/rules.d/automount.rules
81rm -f /etc/udev/scripts/mount*
82
83#
84# Unmount anything the automounter had mounted
85#
86umount /dev/${device}* 2> /dev/null || /bin/true
87
88if [ ! -b /dev/loop0 ] ; then
89 mknod /dev/loop0 b 7 0
90fi
91
92mkdir -p /tmp
93cat /proc/mounts > /etc/mtab
94
95disk_size=$(parted /dev/${device} unit mb print | grep Disk | cut -d" " -f 3 | sed -e "s/MB//")
96
97swap_size=$((disk_size*swap_ratio/100))
98rootfs_size=$((disk_size-boot_size-swap_size))
99
100rootfs_start=$((boot_size))
101rootfs_end=$((rootfs_start+rootfs_size))
102swap_start=$((rootfs_end))
103
104# MMC devices are special in a couple of ways
105# 1) they use a partition prefix character 'p'
106# 2) they are detected asynchronously (need rootwait)
107rootwait=""
108part_prefix=""
109if [ ! "${device#mmcblk}" = "${device}" ]; then
110 part_prefix="p"
111 rootwait="rootwait"
112fi
113bootfs=/dev/${device}${part_prefix}1
114rootfs=/dev/${device}${part_prefix}2
115swap=/dev/${device}${part_prefix}3
116
117echo "*****************"
118echo "Boot partition size: $boot_size MB ($bootfs)"
119echo "Rootfs partition size: $rootfs_size MB ($rootfs)"
120echo "Swap partition size: $swap_size MB ($swap)"
121echo "*****************"
122echo "Deleting partition table on /dev/${device} ..."
123dd if=/dev/zero of=/dev/${device} bs=512 count=2
124
125echo "Creating new partition table on /dev/${device} ..."
126parted /dev/${device} mklabel msdos
127
128echo "Creating boot partition on $bootfs"
129parted /dev/${device} mkpart primary 0% $boot_size
130
131echo "Creating rootfs partition on $rootfs"
132parted /dev/${device} mkpart primary $rootfs_start $rootfs_end
133
134echo "Creating swap partition on $swap"
135parted /dev/${device} mkpart primary $swap_start 100%
136
137parted /dev/${device} print
138
139echo "Formatting $bootfs to ext3..."
140mkfs.ext3 $bootfs
141
142echo "Formatting $rootfs to ext3..."
143mkfs.ext3 $rootfs
144
145echo "Formatting swap partition...($swap)"
146mkswap $swap
147
148mkdir /tgt_root
149mkdir /src_root
150mkdir -p /boot
151
152# Handling of the target root partition
153mount $rootfs /tgt_root
154mount -o rw,loop,noatime,nodiratime /media/$1/$2 /src_root
155echo "Copying rootfs files..."
156cp -a /src_root/* /tgt_root
157if [ -d /tgt_root/etc/ ] ; then
158 echo "$swap swap swap defaults 0 0" >> /tgt_root/etc/fstab
159 echo "$bootfs /boot ext3 defaults 1 2" >> /tgt_root/etc/fstab
160 # We dont want udev to mount our root device while we're booting...
161 if [ -d /tgt_root/etc/udev/ ] ; then
162 echo "/dev/${device}" >> /tgt_root/etc/udev/mount.blacklist
163 fi
164fi
165umount /tgt_root
166umount /src_root
167
168# Handling of the target boot partition
169mount $bootfs /boot
170echo "Preparing boot partition..."
171if [ -f /etc/grub.d/40_custom ] ; then
172 echo "Preparing custom grub2 menu..."
173 GRUBCFG="/boot/grub/grub.cfg"
174 mkdir -p $(dirname $GRUBCFG)
175 cp /etc/grub.d/40_custom $GRUBCFG
176 sed -i "s@__ROOTFS__@$rootfs $rootwait@g" $GRUBCFG
177 sed -i "s/__VIDEO_MODE__/$3/g" $GRUBCFG
178 sed -i "s/__VGA_MODE__/$4/g" $GRUBCFG
179 sed -i "s/__CONSOLE__/$5/g" $GRUBCFG
180 sed -i "/#/d" $GRUBCFG
181 sed -i "/exec tail/d" $GRUBCFG
182 chmod 0444 $GRUBCFG
183fi
184grub-install /dev/${device}
185echo "(hd0) /dev/${device}" > /boot/grub/device.map
186
187# If grub.cfg doesn't exist, assume GRUB 0.97 and create a menu.lst
188if [ ! -f /boot/grub/grub.cfg ] ; then
189 echo "Preparing custom grub menu..."
190 echo "default 0" > /boot/grub/menu.lst
191 echo "timeout 30" >> /boot/grub/menu.lst
192 echo "title Live Boot/Install-Image" >> /boot/grub/menu.lst
193 echo "root (hd0,0)" >> /boot/grub/menu.lst
194 echo "kernel /vmlinuz root=$rootfs rw $3 $4 quiet" >> /boot/grub/menu.lst
195fi
196
197cp /media/$1/vmlinuz /boot/
198
199umount /boot
200
201sync
202
203echo "Remove your installation media, and press ENTER"
204
205read enter
206
207echo "Rebooting..."
208reboot -f
diff --git a/meta/recipes-core/initrdscripts/files/init-live.sh b/meta/recipes-core/initrdscripts/files/init-live.sh
new file mode 100644
index 0000000000..3f5fde83bf
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/files/init-live.sh
@@ -0,0 +1,218 @@
1#!/bin/sh
2
3PATH=/sbin:/bin:/usr/sbin:/usr/bin
4
5ROOT_MOUNT="/rootfs/"
6ROOT_IMAGE="rootfs.img"
7MOUNT="/bin/mount"
8UMOUNT="/bin/umount"
9ISOLINUX=""
10
11# Copied from initramfs-framework. The core of this script probably should be
12# turned into initramfs-framework modules to reduce duplication.
13udev_daemon() {
14 OPTIONS="/sbin/udev/udevd /sbin/udevd /lib/udev/udevd /lib/systemd/systemd-udevd"
15
16 for o in $OPTIONS; do
17 if [ -x "$o" ]; then
18 echo $o
19 return 0
20 fi
21 done
22
23 return 1
24}
25
26_UDEV_DAEMON=`udev_daemon`
27
28early_setup() {
29 mkdir -p /proc
30 mkdir -p /sys
31 mount -t proc proc /proc
32 mount -t sysfs sysfs /sys
33 mount -t devtmpfs none /dev
34
35 # support modular kernel
36 modprobe isofs 2> /dev/null
37
38 mkdir -p /run
39 mkdir -p /var/run
40
41 $_UDEV_DAEMON --daemon
42 udevadm trigger --action=add
43}
44
45read_args() {
46 [ -z "$CMDLINE" ] && CMDLINE=`cat /proc/cmdline`
47 for arg in $CMDLINE; do
48 optarg=`expr "x$arg" : 'x[^=]*=\(.*\)'`
49 case $arg in
50 root=*)
51 ROOT_DEVICE=$optarg ;;
52 rootfstype=*)
53 modprobe $optarg 2> /dev/null ;;
54 LABEL=*)
55 label=$optarg ;;
56 video=*)
57 video_mode=$arg ;;
58 vga=*)
59 vga_mode=$arg ;;
60 console=*)
61 if [ -z "${console_params}" ]; then
62 console_params=$arg
63 else
64 console_params="$console_params $arg"
65 fi ;;
66 debugshell*)
67 if [ -z "$optarg" ]; then
68 shelltimeout=30
69 else
70 shelltimeout=$optarg
71 fi
72 esac
73 done
74}
75
76boot_live_root() {
77 # Watches the udev event queue, and exits if all current events are handled
78 udevadm settle --timeout=3 --quiet
79 killall "${_UDEV_DAEMON##*/}" 2>/dev/null
80
81 # Move the mount points of some filesystems over to
82 # the corresponding directories under the real root filesystem.
83 for dir in `awk '/\/dev.* \/media/{print $2}' /proc/mounts`; do
84 mkdir -p ${ROOT_MOUNT}/$dir
85 mount -n --move $dir ${ROOT_MOUNT}/$dir
86 done
87 mount -n --move /proc ${ROOT_MOUNT}/proc
88 mount -n --move /sys ${ROOT_MOUNT}/sys
89 mount -n --move /dev ${ROOT_MOUNT}/dev
90
91 cd $ROOT_MOUNT
92 exec switch_root -c /dev/console $ROOT_MOUNT /sbin/init
93}
94
95fatal() {
96 echo $1 >$CONSOLE
97 echo >$CONSOLE
98 exec sh
99}
100
101early_setup
102
103[ -z "$CONSOLE" ] && CONSOLE="/dev/console"
104
105read_args
106
107echo "Waiting for removable media..."
108C=0
109while true
110do
111 for i in `ls /media 2>/dev/null`; do
112 if [ -f /media/$i/$ROOT_IMAGE ] ; then
113 found="yes"
114 break
115 elif [ -f /media/$i/isolinux/$ROOT_IMAGE ]; then
116 found="yes"
117 ISOLINUX="isolinux"
118 break
119 fi
120 done
121 if [ "$found" = "yes" ]; then
122 break;
123 fi
124 # don't wait for more than $shelltimeout seconds, if it's set
125 if [ -n "$shelltimeout" ]; then
126 echo -n " " $(( $shelltimeout - $C ))
127 if [ $C -ge $shelltimeout ]; then
128 echo "..."
129 echo "Mounted filesystems"
130 mount | grep media
131 echo "Available block devices"
132 ls /dev/sd*
133 fatal "Cannot find rootfs.img file in /media/* , dropping to a shell "
134 fi
135 C=$(( C + 1 ))
136 fi
137 sleep 1
138done
139
140# Try to mount the root image read-write and then boot it up.
141# This function distinguishes between a read-only image and a read-write image.
142# In the former case (typically an iso), it tries to make a union mount if possible.
143# In the latter case, the root image could be mounted and then directly booted up.
144mount_and_boot() {
145 mkdir $ROOT_MOUNT
146 mknod /dev/loop0 b 7 0 2>/dev/null
147
148 if ! mount -o rw,loop,noatime,nodiratime /media/$i/$ISOLINUX/$ROOT_IMAGE $ROOT_MOUNT ; then
149 fatal "Could not mount rootfs image"
150 fi
151
152 if touch $ROOT_MOUNT/bin 2>/dev/null; then
153 # The root image is read-write, directly boot it up.
154 boot_live_root
155 fi
156
157 # determine which unification filesystem to use
158 union_fs_type=""
159 if grep -q -w "overlayfs" /proc/filesystems; then
160 union_fs_type="overlayfs"
161 elif grep -q -w "aufs" /proc/filesystems; then
162 union_fs_type="aufs"
163 else
164 union_fs_type=""
165 fi
166
167 # make a union mount if possible
168 case $union_fs_type in
169 "overlayfs")
170 mkdir -p /rootfs.ro /rootfs.rw
171 if ! mount -n --move $ROOT_MOUNT /rootfs.ro; then
172 rm -rf /rootfs.ro /rootfs.rw
173 fatal "Could not move rootfs mount point"
174 else
175 mount -t tmpfs -o rw,noatime,mode=755 tmpfs /rootfs.rw
176 mount -t overlayfs -o "lowerdir=/rootfs.ro,upperdir=/rootfs.rw" overlayfs $ROOT_MOUNT
177 mkdir -p $ROOT_MOUNT/rootfs.ro $ROOT_MOUNT/rootfs.rw
178 mount --move /rootfs.ro $ROOT_MOUNT/rootfs.ro
179 mount --move /rootfs.rw $ROOT_MOUNT/rootfs.rw
180 fi
181 ;;
182 "aufs")
183 mkdir -p /rootfs.ro /rootfs.rw
184 if ! mount -n --move $ROOT_MOUNT /rootfs.ro; then
185 rm -rf /rootfs.ro /rootfs.rw
186 fatal "Could not move rootfs mount point"
187 else
188 mount -t tmpfs -o rw,noatime,mode=755 tmpfs /rootfs.rw
189 mount -t aufs -o "dirs=/rootfs.rw=rw:/rootfs.ro=ro" aufs $ROOT_MOUNT
190 mkdir -p $ROOT_MOUNT/rootfs.ro $ROOT_MOUNT/rootfs.rw
191 mount --move /rootfs.ro $ROOT_MOUNT/rootfs.ro
192 mount --move /rootfs.rw $ROOT_MOUNT/rootfs.rw
193 fi
194 ;;
195 "")
196 mount -t tmpfs -o rw,noatime,mode=755 tmpfs $ROOT_MOUNT/media
197 ;;
198 esac
199
200 # boot the image
201 boot_live_root
202}
203
204case $label in
205 boot)
206 mount_and_boot
207 ;;
208 install|install-efi)
209 if [ -f /media/$i/$ISOLINUX/$ROOT_IMAGE ] ; then
210 ./$label.sh $i/$ISOLINUX $ROOT_IMAGE $video_mode $vga_mode $console_params
211 else
212 fatal "Could not find $label script"
213 fi
214
215 # If we're getting here, we failed...
216 fatal "Installation image failed"
217 ;;
218esac
diff --git a/meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb
new file mode 100644
index 0000000000..6f9b4c21f1
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb
@@ -0,0 +1,14 @@
1DESCRIPTION = "A live image init script"
2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
4SRC_URI = "file://init-boot.sh"
5
6PR = "r2"
7
8do_install() {
9 install -m 0755 ${WORKDIR}/init-boot.sh ${D}/init
10}
11
12inherit allarch
13
14FILES_${PN} += " /init "
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/debug b/meta/recipes-core/initrdscripts/initramfs-framework/debug
new file mode 100644
index 0000000000..00bfd7d3f5
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/initramfs-framework/debug
@@ -0,0 +1,82 @@
1#!/bin/sh
2# Copyright (C) 2011 O.S. Systems Software LTDA.
3# Licensed on MIT
4
5# Adds support to dynamic debugging of initramfs using bootparam in
6# following format:
7# shell : starts a shell before and after each module
8# shell=before:<module> : starts a shell before <module> is loaded and run
9# shell=after:<module> : starts a shell after <module> is loaded and run
10#
11# shell-debug : run set -x as soon as possible
12# shell-debug=before:<module> : run set -x before <module> is loaded and run
13# shell-debug=after:<module> : run set -x after <module> is loaded and run
14
15DEBUG_SHELL="false"
16
17debug_hook_handler() {
18 status=$1
19 module=$2
20
21 if [ -n "$bootparam_shell" ] && [ "$bootparam_shell" != "true" ]; then
22 shell_wanted_status=`expr $bootparam_shell : '\(.*\):.*'`
23 shell_wanted_module=`expr $bootparam_shell : '.*:\(.*\)'`
24
25 if [ "$shell_wanted_status" = "before" ]; then
26 shell_wanted_status=pre
27 else
28 shell_wanted_status=post
29 fi
30 fi
31
32 if [ "$bootparam_shell" = "true" ] ||
33 ( [ "$status" = "$shell_wanted_status" ] &&
34 [ "$module" = "$shell_wanted_module" ] ); then
35 if [ "$status" = "pre" ]; then
36 status_msg="before"
37 else
38 status_msg="after"
39 fi
40
41 msg "Starting shell $status_msg $module..."
42 sh
43 fi
44
45 if [ -n "$bootparam_shell_debug" ] && [ "$bootparam_shell_debug" != "true" ]; then
46 shell_debug_wanted_status=`expr $bootparam_shell_debug : '\(.*\):.*'`
47 shell_debug_wanted_module=`expr $bootparam_shell_debug : '.*:\(.*\)'`
48
49 if [ "$shell_debug_wanted_status" = "before" ]; then
50 shell_debug_wanted_status=pre
51 else
52 shell_debug_wanted_status=post
53 fi
54 fi
55
56 if [ "$bootparam_shell_debug" = "true" ] ||
57 ( [ "$status" = "$shell_debug_wanted_status" ] &&
58 [ "$module" = "$shell_debug_wanted_module" ] ); then
59 if [ "$DEBUG_SHELL" = "true" ]; then
60 return 0
61 fi
62
63 if [ "$status" = "pre" ]; then
64 status_msg="before"
65 else
66 status_msg="after"
67 fi
68
69 msg "Starting shell debugging $status_msg $module..."
70 DEBUG_SHELL="true"
71 set -x
72 fi
73}
74
75debug_enabled() {
76 return 0
77}
78
79debug_run() {
80 add_module_pre_hook "debug_hook_handler"
81 add_module_post_hook "debug_hook_handler"
82}
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/e2fs b/meta/recipes-core/initrdscripts/initramfs-framework/e2fs
new file mode 100755
index 0000000000..29f801a7bd
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/initramfs-framework/e2fs
@@ -0,0 +1,28 @@
1#!/bin/sh
2# Copyright (C) 2011 O.S. Systems Software LTDA.
3# Licensed on MIT
4
5e2fs_enabled() {
6 return 0
7}
8
9e2fs_run() {
10 filesystems="ext4 ext3 ext2"
11
12 # load modules
13 for fs in $filesystems; do
14 load_kernel_module $fs
15 done
16
17 for fs in $filesystems; do
18 eval "fs_options=\$bootparam_${fs}"
19 if [ -n "$fs_options" ]; then
20 dev=`expr "$fs_options" : '\([^:]*\).*'`
21 path=`expr "$fs_options" : '[^:]*:\([^:]*\).*'`
22
23 info "Mounting $dev as $fs on $path as $fs..."
24 mkdir -p $path
25 mount -t $fs $dev $path
26 fi
27 done
28}
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/finish b/meta/recipes-core/initrdscripts/initramfs-framework/finish
new file mode 100755
index 0000000000..325f47be40
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/initramfs-framework/finish
@@ -0,0 +1,47 @@
1#!/bin/sh
2# Copyright (C) 2011 O.S. Systems Software LTDA.
3# Licensed on MIT
4
5finish_enabled() {
6 return 0
7}
8
9finish_run() {
10 if [ -n "$ROOTFS_DIR" ]; then
11 if [ -n "$bootparam_rootdelay" ]; then
12 debug "Sleeping for $rootdelay second(s) to wait root to settle..."
13 sleep $bootparam_rootdelay
14 fi
15
16 if [ -n "$bootparam_root" ]; then
17 debug "No e2fs compatible filesystem has been mounted, mounting $bootparam_root..."
18
19 if [ "`echo ${bootparam_root} | cut -c1-5`" = "UUID=" ]; then
20 root_uuid=`echo $bootparam_root | cut -c6-`
21 bootparam_root="/dev/disk/by-uuid/$root_uuid"
22 fi
23
24 if [ -e "$bootparam_root" ]; then
25 mount $bootparam_root $ROOTFS_DIR
26 else
27 debug "root '$bootparam_root' doesn't exist."
28 fi
29 fi
30
31 if [ ! -d $ROOTFS_DIR/dev ]; then
32 fatal "ERROR: There's no '/dev' on rootfs."
33 fi
34
35 info "Switching root to '$ROOTFS_DIR'..."
36
37 debug "Moving /dev, /proc and /sys onto rootfs..."
38 mount --move /dev $ROOTFS_DIR/dev
39 mount --move /proc $ROOTFS_DIR/proc
40 mount --move /sys $ROOTFS_DIR/sys
41
42 cd $ROOTFS_DIR
43 exec switch_root -c /dev/console $ROOTFS_DIR /sbin/init
44 else
45 debug "No rootfs has been set"
46 fi
47}
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/init b/meta/recipes-core/initrdscripts/initramfs-framework/init
new file mode 100755
index 0000000000..20774aa5e9
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/initramfs-framework/init
@@ -0,0 +1,140 @@
1#!/bin/sh
2# Copyright (C) 2011 O.S. Systems Software LTDA.
3# Licensed on MIT
4#
5# Provides the API to be used by the initramfs modules
6#
7# Modules need to provide the following functions:
8#
9# <module>_enabled : check if the module ought to run (return 1 to skip)
10# <module>_run : do what is need
11#
12# Boot parameters are available on environment in the as:
13#
14# 'foo=value' as 'bootparam_foo=value'
15# 'foo' as 'bootparam_foo=true'
16
17# Register a function to be called before running a module
18# The hook is called as:
19# <function> pre <module>
20add_module_pre_hook() {
21 MODULE_PRE_HOOKS="$MODULE_PRE_HOOKS $1"
22}
23
24# Register a function to be called after running a module
25# The hook is called as:
26# <function> post <module>
27add_module_post_hook() {
28 MODULE_POST_HOOKS="$MODULE_POST_HOOKS $1"
29}
30
31# Load kernel module
32load_kernel_module() {
33 if modprobe $1 >/dev/null 2>&1; then
34 info "Loaded module $1"
35 else
36 debug "Failed to load module $1"
37 fi
38}
39
40# Prints information
41msg() {
42 echo "$@" >/dev/console
43}
44
45# Prints information if verbose bootparam is used
46info() {
47 [ -n "$bootparam_verbose" ] && echo "$@" >/dev/console
48}
49
50# Prints information if debug bootparam is used
51debug() {
52 [ -n "$bootparam_debug" ] && echo "DEBUG: $@" >/dev/console
53}
54
55# Prints a message and start a endless loop
56fatal() {
57 echo $1 >/dev/console
58 echo >/dev/console
59
60 while [ "true" ]; do
61 sleep 3600
62 done
63}
64
65# Variables shared amoung modules
66ROOTFS_DIR="/rootfs" # where to do the switch root
67MODULE_PRE_HOOKS="" # functions to call before running each module
68MODULE_POST_HOOKS="" # functions to call after running each module
69MODULES_DIR=/init.d # place to look for modules
70
71# make mount stop complaining about missing /etc/fstab
72touch /etc/fstab
73
74# initialize /proc, /sys and /var/lock
75mkdir -p /proc /sys /var/lock
76mount -t proc proc /proc
77mount -t sysfs sysfs /sys
78
79# populate bootparam environment
80for p in `cat /proc/cmdline`; do
81 opt=`echo $p | cut -d'=' -f1`
82 opt=`echo $opt | sed -e 's/-/_/'`
83 if [ "`echo $p | cut -d'=' -f1`" = "$p" ]; then
84 eval "bootparam_${opt}=true"
85 else
86 value="`echo $p | cut -d'=' -f2-`"
87 eval "bootparam_${opt}=\"${value}\""
88 fi
89done
90
91# use /dev with devtmpfs
92if grep -q devtmpfs /proc/filesystems; then
93 mkdir -p /dev
94 mount -t devtmpfs devtmpfs /dev
95else
96 if [ ! -d /dev ]; then
97 fatal "ERROR: /dev doesn't exist and kernel doesn't has devtmpfs enabled."
98 fi
99fi
100
101mkdir $ROOTFS_DIR
102
103# Load and run modules
104for m in $MODULES_DIR/*; do
105 # Skip backup files
106 if [ "`echo $m | sed -e 's/\~$//'`" = "$m" ]; then
107 continue
108 fi
109
110 module=`basename $m | cut -d'-' -f 2`
111 debug "Loading module $module"
112
113 # pre hooks
114 for h in $MODULE_PRE_HOOKS; do
115 debug "Calling module hook (pre): $h"
116 eval "$h pre $module"
117 debug "Finished module hook (pre): $h"
118 done
119
120 # process module
121 . $m
122
123 if ! eval "${module}_enabled"; then
124 debug "Skipping module $module"
125 continue
126 fi
127
128 debug "Running ${module}_run"
129 eval "${module}_run"
130
131 # post hooks
132 for h in $MODULE_POST_HOOKS; do
133 debug "Calling module hook (post): $h"
134 eval "$h post $module"
135 debug "Finished module hook (post): $h"
136 done
137done
138
139# Catch all
140fatal "ERROR: Initramfs failed to initialize the system."
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/mdev b/meta/recipes-core/initrdscripts/initramfs-framework/mdev
new file mode 100644
index 0000000000..a5df1d717a
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/initramfs-framework/mdev
@@ -0,0 +1,30 @@
1#!/bin/sh
2# Copyright (C) 2011 O.S. Systems Software LTDA.
3# Licensed on MIT
4
5mdev_enabled() {
6 if [ ! -e /sbin/mdev ]; then
7 debug "/sbin/mdev doesn't exist"
8 return 1
9 fi
10
11 return 0
12}
13
14mdev_run() {
15 # setup the environment
16 mount -t tmpfs tmpfs /dev
17
18 mkdir -m 1777 /dev/shm
19
20 mkdir -m 0755 /dev/pts
21 mount -t devpts devpts /dev/pts
22
23 echo /sbin/mdev > /proc/sys/kernel/hotplug
24 mdev -s
25
26 # load modules for devices
27 find /sys -name modalias | while read m; do
28 load_kernel_module $(cat $m)
29 done
30}
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/udev b/meta/recipes-core/initrdscripts/initramfs-framework/udev
new file mode 100644
index 0000000000..bb462dc448
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/initramfs-framework/udev
@@ -0,0 +1,45 @@
1#!/bin/sh
2# Copyright (C) 2011, 2012 O.S. Systems Software LTDA.
3# Licensed on MIT
4
5udev_shutdown_hook_handler() {
6 status=$1
7 module=$2
8 if [ "$status" = "pre" ] && [ "$module" = "finish" ]; then
9 killall `basename $_UDEV_DAEMON` 2>/dev/null
10 fi
11}
12
13udev_daemon() {
14 OPTIONS="/sbin/udev/udevd /sbin/udevd /lib/udev/udevd /lib/systemd/systemd-udevd"
15
16 for o in $OPTIONS; do
17 if [ -x "$o" ]; then
18 echo $o
19 return 0
20 fi
21 done
22
23 return 1
24}
25
26_UDEV_DAEMON=`udev_daemon`
27
28udev_enabled() {
29 if [ -z "$_UDEV_DAEMON" ]; then
30 msg "WARNING: Cannot find the udev daemon; daemon will not be started in initramfs."
31 return 1
32 fi
33
34 return 0
35}
36
37udev_run() {
38 add_module_pre_hook "udev_shutdown_hook_handler"
39
40 mkdir -p /run
41
42 $_UDEV_DAEMON --daemon
43 udevadm trigger --action=add
44 udevadm settle
45}
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb
new file mode 100644
index 0000000000..a2c0813f30
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb
@@ -0,0 +1,59 @@
1DESCRIPTION = "initramfs modular system"
2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
4RDEPENDS_${PN} += "busybox"
5
6PR = "r2"
7
8inherit allarch
9
10SRC_URI = "file://init \
11 file://finish \
12 file://mdev \
13 file://udev \
14 file://e2fs \
15 file://debug"
16
17do_install() {
18 install -d ${D}/init.d
19
20 # base
21 install -m 0755 ${WORKDIR}/init ${D}/init
22 install -m 0755 ${WORKDIR}/finish ${D}/init.d/99-finish
23
24 # mdev
25 install -m 0755 ${WORKDIR}/mdev ${D}/init.d/01-mdev
26
27 # udev
28 install -m 0755 ${WORKDIR}/udev ${D}/init.d/01-udev
29
30 # e2fs
31 install -m 0755 ${WORKDIR}/e2fs ${D}/init.d/10-e2fs
32
33 # debug
34 install -m 0755 ${WORKDIR}/debug ${D}/init.d/00-debug
35}
36
37PACKAGES = "${PN}-base \
38 initramfs-module-mdev \
39 initramfs-module-udev \
40 initramfs-module-e2fs \
41 initramfs-module-debug"
42
43FILES_${PN}-base = "/init /init.d/99-finish"
44
45DESCRIPTION_initramfs-module-mdev = "initramfs support for mdev"
46RDEPENDS_initramfs-module-mdev = "${PN}-base"
47FILES_initramfs-module-mdev = "/init.d/01-mdev"
48
49DESCRIPTION_initramfs-module-udev = "initramfs support for udev"
50RDEPENDS_initramfs-module-udev = "${PN}-base udev udev-utils"
51FILES_initramfs-module-udev = "/init.d/01-udev"
52
53DESCRIPTION_initramfs-module-e2fs = "initramfs support for ext4/ext3/ext2 filesystems"
54RDEPENDS_initramfs-module-e2fs = "${PN}-base"
55FILES_initramfs-module-e2fs = "/init.d/10-e2fs"
56
57DESCRIPTION_initramfs-module-debug = "initramfs dynamic debug support"
58RDEPENDS_initramfs-module-debug = "${PN}-base"
59FILES_initramfs-module-debug = "/init.d/00-debug"
diff --git a/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb
new file mode 100644
index 0000000000..8626bb5b33
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb
@@ -0,0 +1,17 @@
1DESCRIPTION = "A live image init script"
2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
4DEPENDS = "virtual/kernel"
5RDEPENDS_${PN} = "udev udev-extraconf"
6SRC_URI = "file://init-live.sh"
7
8PR = "r11"
9
10do_install() {
11 install -m 0755 ${WORKDIR}/init-live.sh ${D}/init
12}
13
14FILES_${PN} += " /init "
15
16# Due to kernel depdendency
17PACKAGE_ARCH = "${MACHINE_ARCH}"
diff --git a/meta/recipes-core/initrdscripts/initramfs-live-install-efi_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-install-efi_1.0.bb
new file mode 100644
index 0000000000..264931f9a3
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/initramfs-live-install-efi_1.0.bb
@@ -0,0 +1,22 @@
1DESCRIPTION = "A live image init script for grub-efi"
2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
4SRC_URI = "file://init-install-efi.sh"
5
6PR = "r1"
7
8RDEPENDS_${PN} = "parted e2fsprogs-mke2fs dosfstools"
9
10do_install() {
11 install -m 0755 ${WORKDIR}/init-install-efi.sh ${D}/install-efi.sh
12}
13
14# While this package maybe an allarch due to it being a
15# simple script, reality is that it is Host specific based
16# on the COMPATIBLE_HOST below, which needs to take precedence
17#inherit allarch
18INHIBIT_DEFAULT_DEPS = "1"
19
20FILES_${PN} = " /install-efi.sh "
21
22COMPATIBLE_HOST = "(i.86|x86_64).*-linux"
diff --git a/meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb
new file mode 100644
index 0000000000..3a8836d5b9
--- /dev/null
+++ b/meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb
@@ -0,0 +1,22 @@
1DESCRIPTION = "A live image init script for grub"
2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
4SRC_URI = "file://init-install.sh"
5
6PR = "r9"
7
8RDEPENDS_${PN} = "grub parted e2fsprogs-mke2fs"
9
10do_install() {
11 install -m 0755 ${WORKDIR}/init-install.sh ${D}/install.sh
12}
13
14# While this package maybe an allarch due to it being a
15# simple script, reality is that it is Host specific based
16# on the COMPATIBLE_HOST below, which needs to take precedence
17#inherit allarch
18INHIBIT_DEFAULT_DEPS = "1"
19
20FILES_${PN} = " /install.sh "
21
22COMPATIBLE_HOST = "(i.86|x86_64).*-linux"