mirror of
https://github.com/xcat2/confluent.git
synced 2026-01-10 18:12:30 +00:00
9 lines
278 B
Bash
9 lines
278 B
Bash
#!/bin/sh
|
|
sed -i 's/label: debian/label: Debian/' $2/profile.yaml && \
|
|
ln -s $1/linux $2/boot/kernel && \
|
|
ln -s $1/initrd.gz $2/boot/initramfs/distribution && \
|
|
mkdir -p $2/boot/efi/boot && \
|
|
rm $2/distribution && \
|
|
mcopy -i $1/boot/grub/efi.img ::/efi/boot/* $2/boot/efi/boot
|
|
|