Commit 7f8411fb authored by Anton Midyukov's avatar Anton Midyukov Committed by Michael Shigorin

aarch64-tegra: initial feature for Jetson Nano

parent e42bcdcb
Настраивает систему для загрузки на компьютерах с SoC tegra (aarch64).
Пока поддерживается только Jetson Nano.
ifeq (,$(filter-out aarch64,$(ARCH)))
use/aarch64-tegra: use/uboot
@$(call add_feature)
@$(call set,KFLAVOURS,tegra)
endif
#!/bin/sh
# Rewrite extlinux.conf
mkdir -p /boot/extlinux
cat > /boot/extlinux/extlinux.conf << EOF
menu title ALT Boot Options
default linux
timeout 20
append ${cbootargs} rootfstype=ext4 root=LABEL=ROOT rw rootwait console=tty1
label linux
menu label linux
linux /boot/vmlinuz
initrd /boot/initrd.img
EOF
#!/bin/sh
echo 'PUT_FILES += /lib/firmware/tegra21x_xusb_firmware' \
>> /etc/initrd.mk
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment