aboutsummaryrefslogtreecommitdiffstats
path: root/packages/initrdscripts/initramfs-kexec_1.0.bb
blob: 1b2ae27cf7abdd22fd1eeb03d326569ec447e957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
DESCRIPTON = "A init script that mounts a device and kexecs a new kernel from it."
PR = "r6"

do_compile() {
        cat > init.sh << EOF
#!/bin/sh
/bin/mount -t proc proc /proc
/bin/mount -t ${ROOTFS} ${ROOTDEV} /mnt
/usr/sbin/kexec -l /mnt/boot/zImage
/usr/sbin/kexec -e
EOF
}

do_install() {
        install -m 0755 ${S}/init.sh ${D}/init
        install -d ${D}/proc
        install -d ${D}/mnt
}

PACKAGE_ARCH = "all"

FILES_${PN} = "/init /proc /mnt"

ROOTDEV = "/dev/mmcblk0p1"
ROOTFS = "ext2"
#ROOTDEV = "mtd2"
#ROOTFS = "jffs2"