mirror of
https://git.launchpad.net/livecd-rootfs
synced 2026-04-02 15:11:17 +00:00
18 lines
250 B
Bash
Executable File
18 lines
250 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Install kernel/initrd directly into the ISO casper directory.
|
|
|
|
set -eu
|
|
|
|
. config/functions
|
|
|
|
case $ARCH in
|
|
amd64)
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
iso_install_kernel generic chroot/boot/vmlinuz chroot/boot/initrd.img
|