move outputs into a module

This commit is contained in:
Daniel Barlow
2023-02-10 23:10:44 +00:00
parent 0a06319d0c
commit 1a08aaad01
6 changed files with 108 additions and 76 deletions

View File

@@ -59,7 +59,12 @@
patches ${openwrt}/target/linux/generic/hack-5.15/*.patch
patches ${openwrt}/target/linux/ath79/patches-5.15/*.patch
'';
dts = "${openwrt}/target/linux/ath79/dts/qca9531_glinet_gl-ar750.dts";
dts = {
src = "${openwrt}/target/linux/ath79/dts/qca9531_glinet_gl-ar750.dts";
includes = [
"${openwrt}/target/linux/ath79/dts"
];
};
config = {
MIPS_ELF_APPENDED_DTB = "y";
OF = "y";

View File

@@ -46,7 +46,12 @@
patches ${openwrt}/target/linux/generic/hack-5.15/*.patch
patches ${openwrt}/target/linux/ramips/patches-5.15/*.patch
'';
dts = "${openwrt}/target/linux/ramips/dts/mt7620a_glinet_gl-mt300a.dts";
dts = {
src = "${openwrt}/target/linux/ramips/dts/mt7620a_glinet_gl-mt300a.dts";
includes = [
"${openwrt}/target/linux/ramips/dts"
];
};
config = {
MIPS_ELF_APPENDED_DTB = "y";
OF = "y";

View File

@@ -46,7 +46,12 @@
patches ${openwrt}/target/linux/generic/hack-5.15/*.patch
patches ${openwrt}/target/linux/ramips/patches-5.15/*.patch
'';
dts = "${openwrt}/target/linux/ramips/dts/mt7628an_glinet_gl-mt300n-v2.dts";
dts = {
src = "${openwrt}/target/linux/ramips/dts/mt7628an_glinet_gl-mt300n-v2.dts";
includes = [
"${openwrt}/target/linux/ramips/dts"
];
};
config = {
MIPS_ELF_APPENDED_DTB = "y";
OF = "y";