Skip to content
Snippets Groups Projects
Verified Commit 64045edc authored by Josef Schlehofer's avatar Josef Schlehofer
Browse files

Revert "turris1x-support: fix boot.scr location"

Even though, the previous solution fixes this output:
```
cmp: /boot/boot.scr: No such file or directory
cp: can't stat '/boot/boot.scr': No such file or directory
```

It seems there is some issue with infinite loop of symlinks
```
INFO:Executing postupdate hook: 10_kernel-install
//boot/zImage /tmp/tmp.NEAjjh/zImage differ: char 5, line 1
cmp: //boot/fdt: Symbolic link loop
cp: can't stat '//boot/fdt': Symbolic link loop
```

Because of that, revert it for now as we would like to release a new
version soon.

This reverts commit e68eda1d.
parent 2b8991c8
No related merge requests found
......@@ -3,7 +3,7 @@ include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=turris1x-support
PKG_VERSION:=1.3
PKG_RELEASE:=2
PKG_RELEASE:=1
PKG_MAINTAINER:=CZ.NIC <packaging@turris.cz>
......@@ -36,7 +36,7 @@ define Package/turris1x-support/install
$(INSTALL_DIR) $(1)/boot
$(INSTALL_DATA) $(LINUX_DIR)/arch/$(LINUX_KARCH)/boot/turris1x.dtb "$(1)"/boot/
ln -sf turris1x.dtb "$(1)"/boot/fdt
mkimage -T script -C none -n boot -d files/boot.txt "$(1)"/boot/boot.scr
mkimage -T script -C none -n boot -d files/boot.txt "$(1)"/boot.scr
endef
$(eval $(call BuildPackage,turris1x-support))
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