diff --git a/rules/coreboot-lsts/default.bash b/rules/coreboot-lsts/default.bash new file mode 100644 index 0000000..0b52c89 --- /dev/null +++ b/rules/coreboot-lsts/default.bash @@ -0,0 +1,26 @@ +version=\ +( + '1.1.0' +) + +url=\ +( + "http://www.lsts.pt/glued/coreboot-lsts-$version.tar.gz" +) + +md5=\ +( + 'a7c77a981778bec54f28f598814f11c6' +) + +maintainer=\ +( + 'Ricardo Martins ' +) + +target_install() +{ + dir="$cfg_dir_rootfs/usr/share/coreboot-lsts" + $cmd_mkdir "$dir" && + $cmd_cp "coreboot-lsts-$version.rom" "$dir" +}