23 lines
419 B
Plaintext
23 lines
419 B
Plaintext
hostname = "diya"
|
|
|
|
do_install:append () {
|
|
install -d ${DEPLOY_DIR_IMAGE}
|
|
cat << EOF > ${DEPLOY_DIR_IMAGE}/diya-config.txt
|
|
recovery_image=recovery-${MACHINE}.cpio.lz4.u-boot
|
|
kernel=Image.gz
|
|
console=both
|
|
bootlogo=false
|
|
EOF
|
|
cat << 'EOF' >> "${D}${sysconfdir}/profile"
|
|
export DISK="mmcblk1"
|
|
EOF
|
|
cat << EOF >> "${D}${sysconfdir}/modules"
|
|
uwe5622_bsp_sdio
|
|
sprdwl_ng
|
|
sprdbt_tty
|
|
bluetooth
|
|
hci_uart
|
|
rfcomm
|
|
EOF
|
|
}
|