From 03d2e57be10957cc5c2f94509766d957cc39f266 Mon Sep 17 00:00:00 2001 From: Rolf Leggewie Date: Sun, 14 Dec 2025 21:19:50 +0800 Subject: [PATCH 1/4] Extensions Hooks: update an HTML anchor --- docs/Developer-Guide_Extensions-Hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Developer-Guide_Extensions-Hooks.md b/docs/Developer-Guide_Extensions-Hooks.md index 4dc9e42a..6ef8175d 100644 --- a/docs/Developer-Guide_Extensions-Hooks.md +++ b/docs/Developer-Guide_Extensions-Hooks.md @@ -5,7 +5,7 @@ ## Hooks - Hooks are listed in the order they are called. -- Individual/specific hook functions can be [skipped/ignored/opted-out](/Developer-Guide_Extensions#opt-out-of-individual-hook-functions). +- Individual/specific hook functions can be [skipped/ignored/opted-out](/Developer-Guide_Extensions#how-to-opt-out-of-a-specific-hook-function). ### `post_family_config` From 1f536040ecc643fdf39ad115545fb2081c595529 Mon Sep 17 00:00:00 2001 From: Rolf Leggewie Date: Mon, 15 Dec 2025 17:49:18 +0800 Subject: [PATCH 2/4] Extensions Hooks: the document is versioned in git and not autogenerated --- docs/Developer-Guide_Extensions-Hooks.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/Developer-Guide_Extensions-Hooks.md b/docs/Developer-Guide_Extensions-Hooks.md index 6ef8175d..a0a3f356 100644 --- a/docs/Developer-Guide_Extensions-Hooks.md +++ b/docs/Developer-Guide_Extensions-Hooks.md @@ -1,7 +1,5 @@ # Extension Hooks -- This file is autogenerated by the armbian/build repository. - ## Hooks - Hooks are listed in the order they are called. From 10a4d20f770625ec8e270fead8bc126f0eddbd28 Mon Sep 17 00:00:00 2001 From: Rolf Leggewie Date: Mon, 15 Dec 2025 17:50:55 +0800 Subject: [PATCH 3/4] Extensions Hooks: improve wording in intro --- docs/Developer-Guide_Extensions-Hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Developer-Guide_Extensions-Hooks.md b/docs/Developer-Guide_Extensions-Hooks.md index a0a3f356..0bbba8cd 100644 --- a/docs/Developer-Guide_Extensions-Hooks.md +++ b/docs/Developer-Guide_Extensions-Hooks.md @@ -2,7 +2,7 @@ ## Hooks -- Hooks are listed in the order they are called. +- Hooks listed below appear in the order in which they are called. - Individual/specific hook functions can be [skipped/ignored/opted-out](/Developer-Guide_Extensions#how-to-opt-out-of-a-specific-hook-function). ### `post_family_config` From eab69c11becfafa92dc216e7439c45615e60f89d Mon Sep 17 00:00:00 2001 From: Rolf Leggewie Date: Mon, 15 Dec 2025 17:55:35 +0800 Subject: [PATCH 4/4] Extensions Hooks: how to get a complete list of hooks --- docs/Developer-Guide_Extensions-Hooks.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/Developer-Guide_Extensions-Hooks.md b/docs/Developer-Guide_Extensions-Hooks.md index 0bbba8cd..ab740082 100644 --- a/docs/Developer-Guide_Extensions-Hooks.md +++ b/docs/Developer-Guide_Extensions-Hooks.md @@ -2,7 +2,8 @@ ## Hooks -- Hooks listed below appear in the order in which they are called. +- Hooks listed below appear in the order in which they are called, but the list is not complete. +- Running 'grep -h call_extension_method -r lib/|awk -F' ' '{print $2}'|grep '^"' |cut -d '"' -f 2|sort -u' in the build/ directory should give you a complete list of the currently available hooks, sorted alphabetically. - Individual/specific hook functions can be [skipped/ignored/opted-out](/Developer-Guide_Extensions#how-to-opt-out-of-a-specific-hook-function). ### `post_family_config`