#!/bin/sh
set -e
pkg_dir=$1
if [ -z "$pkg_dir" ] || [ ! -d "$pkg_dir" ]; then
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const rangeFragmentSuport = | |
| "createContextualFragment" in document.createRange(); | |
| export const templateSupport = "content" in document.createElement("template"); | |
| export function htmlFragment(html: string): DocumentFragment { | |
| if (rangeFragmentSuport) { | |
| return document.createRange().createContextualFragment(html); | |
| } | |
| if (templateSupport) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| set -e | |
| install_deps() { | |
| apt-get update | |
| apt-get upgrade -y | |
| apt-get install -y \ | |
| apparmor \ | |
| armbian-config \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 9d2f2c004dad5d152205097ca4e4430f2027832a Mon Sep 17 00:00:00 2001 | |
| From: Xingwang Liao <kuoruan@gmail.com> | |
| Date: Mon, 13 Nov 2023 15:13:00 +0000 | |
| Subject: [PATCH] feat: update wndr4300 nand dts | |
| --- | |
| .../ath79/dts/ar9344_netgear_wndr-128m.dtsi | 260 ++++++++++++++++++ | |
| .../ath79/dts/ar9344_netgear_wndr4300.dts | 2 +- | |
| target/linux/ath79/image/nand.mk | 19 +- | |
| 3 files changed, 279 insertions(+), 2 deletions(-) |
OlderNewer