commit | 7e7421f23847992dd28cbeaa1e5312d00d50ff1b | [log] [tgz] |
---|---|---|
author | Jae Hoon Kim <kimjae@chromium.org> | Wed May 05 16:50:11 2021 -0700 |
committer | Commit Bot <commit-bot@chromium.org> | Thu May 06 22:21:08 2021 +0000 |
tree | d80bee27a11d6cf269c03030a7a2783fbc569245 | |
parent | f385c3b53885152fc726030427b4a4d1dea2dce3 [diff] |
initramfs: Sort recovery binary list BUG=none TEST=emerge chromeos-initramfs Change-Id: Ide3a807f0f5d2c70c8b424266be50b5937d0d6fc Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/initramfs/+/2877259 Tested-by: Jae Hoon Kim <kimjae@chromium.org> Auto-Submit: Jae Hoon Kim <kimjae@chromium.org> Reviewed-by: Mike Frysinger <vapier@chromium.org> Commit-Queue: Jae Hoon Kim <kimjae@chromium.org>
Build logic for creating standalone initramfs environments.
See the README files in the respective subdirs for more details.
Normally you wouldn't build in this directory directly. Instead, you would build the chromeos-initramfs package with the right USE flags. e.g.:
$ USE=recovery_ramfs emerge-$BOARD chromeos-initramfs
That will install the cpio initramfs files into the sysroot for you to build into a kernel directly. The various build scripts would then be used to make the right kernel/image using those (e.g. mod_image_for_recovery.sh).
You could build these by hand for quick testing. Inside the chroot:
$ make SYSROOT=/build/$BOARD BOARD=$BOARD <target>
That will create the cpio archives for you.
It is possible to debug few of the initramfs targets in QEMU. Read test/README.md for more information.
Also, here is a shortcut for developing/debugging graphical bits in initramfs, without having to create a full image for every iteration.
After emerge-$BOARD
, find your initramfs package from chroot /build/$BOARD/var/lib/initramfs
and copy to a running DUT, for example /tmp/recovery_ramfs.cpio.xz
, then do followings on DUT over SSH:
mkdir /usr/local/test/; cd /usr/local/test
xzcat /tmp/XXXXXX_ramfs.cpio.xz | toybox cpio -iv
stop ui; kill $(pidof frecon)
for d in dev proc sys tmp; do mount --bind /${d} /usr/local/test/${d} done
chroot /usr/local/test /init