diff options
Diffstat (limited to 'scripts')
42 files changed, 91 insertions, 87 deletions
diff --git a/scripts/lib/bsp/kernel.py b/scripts/lib/bsp/kernel.py index d4bdc4c250..7c14761f3c 100644 --- a/scripts/lib/bsp/kernel.py +++ b/scripts/lib/bsp/kernel.py | |||
| @@ -136,12 +136,12 @@ def gen_choices_str(choices): | |||
| 136 | def read_config_items(scripts_path, machine): | 136 | def read_config_items(scripts_path, machine): |
| 137 | """ | 137 | """ |
| 138 | Find and return a list of config items (CONFIG_XXX) in a machine's | 138 | Find and return a list of config items (CONFIG_XXX) in a machine's |
| 139 | user-defined config fragment [user-config.cfg]. | 139 | user-defined config fragment [${machine}-user-config.cfg]. |
| 140 | """ | 140 | """ |
| 141 | config_items = [] | 141 | config_items = [] |
| 142 | 142 | ||
| 143 | layer = find_bsp_layer(scripts_path, machine) | 143 | layer = find_bsp_layer(scripts_path, machine) |
| 144 | cfg = os.path.join(layer, "recipes-kernel/linux/files/user-config.cfg") | 144 | cfg = os.path.join(layer, "recipes-kernel/linux/files/"+machine+"-user-config.cfg") |
| 145 | 145 | ||
| 146 | f = open(cfg, "r") | 146 | f = open(cfg, "r") |
| 147 | lines = f.readlines() | 147 | lines = f.readlines() |
| @@ -157,10 +157,10 @@ def read_config_items(scripts_path, machine): | |||
| 157 | def write_config_items(scripts_path, machine, config_items): | 157 | def write_config_items(scripts_path, machine, config_items): |
| 158 | """ | 158 | """ |
| 159 | Write (replace) the list of config items (CONFIG_XXX) in a | 159 | Write (replace) the list of config items (CONFIG_XXX) in a |
| 160 | machine's user-defined config fragment [user-config.cfg]. | 160 | machine's user-defined config fragment [${machine}=user-config.cfg]. |
| 161 | """ | 161 | """ |
| 162 | layer = find_bsp_layer(scripts_path, machine) | 162 | layer = find_bsp_layer(scripts_path, machine) |
| 163 | cfg = os.path.join(layer, "recipes-kernel/linux/files/user-config.cfg") | 163 | cfg = os.path.join(layer, "recipes-kernel/linux/files/"+machine+"-user-config.cfg") |
| 164 | 164 | ||
| 165 | f = open(cfg, "w") | 165 | f = open(cfg, "w") |
| 166 | for item in config_items: | 166 | for item in config_items: |
| @@ -173,7 +173,7 @@ def write_config_items(scripts_path, machine, config_items): | |||
| 173 | def yocto_kernel_config_list(scripts_path, machine): | 173 | def yocto_kernel_config_list(scripts_path, machine): |
| 174 | """ | 174 | """ |
| 175 | Display the list of config items (CONFIG_XXX) in a machine's | 175 | Display the list of config items (CONFIG_XXX) in a machine's |
| 176 | user-defined config fragment [user-config.cfg]. | 176 | user-defined config fragment [${machine}-user-config.cfg]. |
| 177 | """ | 177 | """ |
| 178 | config_items = read_config_items(scripts_path, machine) | 178 | config_items = read_config_items(scripts_path, machine) |
| 179 | 179 | ||
| @@ -196,7 +196,7 @@ def map_choice(choice_str, array): | |||
| 196 | def yocto_kernel_config_rm(scripts_path, machine): | 196 | def yocto_kernel_config_rm(scripts_path, machine): |
| 197 | """ | 197 | """ |
| 198 | Display the list of config items (CONFIG_XXX) in a machine's | 198 | Display the list of config items (CONFIG_XXX) in a machine's |
| 199 | user-defined config fragment [user-config.cfg], prompt the user | 199 | user-defined config fragment [${machine}-user-config.cfg], prompt the user |
| 200 | for one or more to remove, and remove them. | 200 | for one or more to remove, and remove them. |
| 201 | """ | 201 | """ |
| 202 | config_items = read_config_items(scripts_path, machine) | 202 | config_items = read_config_items(scripts_path, machine) |
| @@ -229,7 +229,7 @@ def yocto_kernel_config_rm(scripts_path, machine): | |||
| 229 | def yocto_kernel_config_add(scripts_path, machine, config_items): | 229 | def yocto_kernel_config_add(scripts_path, machine, config_items): |
| 230 | """ | 230 | """ |
| 231 | Add one or more config items (CONFIG_XXX) to a machine's | 231 | Add one or more config items (CONFIG_XXX) to a machine's |
| 232 | user-defined config fragment [user-config.cfg]. | 232 | user-defined config fragment [${machine}-user-config.cfg]. |
| 233 | """ | 233 | """ |
| 234 | new_items = [] | 234 | new_items = [] |
| 235 | 235 | ||
| @@ -373,12 +373,12 @@ def find_patches(src_uri): | |||
| 373 | def read_patch_items(scripts_path, machine): | 373 | def read_patch_items(scripts_path, machine): |
| 374 | """ | 374 | """ |
| 375 | Find and return a list of patch items in a machine's user-defined | 375 | Find and return a list of patch items in a machine's user-defined |
| 376 | patch list [user-patches.scc]. | 376 | patch list [${machine}-user-patches.scc]. |
| 377 | """ | 377 | """ |
| 378 | patch_items = [] | 378 | patch_items = [] |
| 379 | 379 | ||
| 380 | layer = find_bsp_layer(scripts_path, machine) | 380 | layer = find_bsp_layer(scripts_path, machine) |
| 381 | patches = os.path.join(layer, "recipes-kernel/linux/files/user-patches.scc") | 381 | patches = os.path.join(layer, "recipes-kernel/linux/files/"+machine+"-user-patches.scc") |
| 382 | 382 | ||
| 383 | f = open(patches, "r") | 383 | f = open(patches, "r") |
| 384 | lines = f.readlines() | 384 | lines = f.readlines() |
| @@ -397,11 +397,11 @@ def read_patch_items(scripts_path, machine): | |||
| 397 | def write_patch_items(scripts_path, machine, patch_items): | 397 | def write_patch_items(scripts_path, machine, patch_items): |
| 398 | """ | 398 | """ |
| 399 | Write (replace) the list of patches in a machine's user-defined | 399 | Write (replace) the list of patches in a machine's user-defined |
| 400 | patch list [user-patches.scc]. | 400 | patch list [${machine}-user-patches.scc]. |
| 401 | """ | 401 | """ |
| 402 | layer = find_bsp_layer(scripts_path, machine) | 402 | layer = find_bsp_layer(scripts_path, machine) |
| 403 | 403 | ||
| 404 | patches = os.path.join(layer, "recipes-kernel/linux/files/user-patches.scc") | 404 | patches = os.path.join(layer, "recipes-kernel/linux/files/"+machine+"-user-patches.scc") |
| 405 | 405 | ||
| 406 | f = open(patches, "w") | 406 | f = open(patches, "w") |
| 407 | for item in patch_items: | 407 | for item in patch_items: |
| @@ -417,7 +417,7 @@ def write_patch_items(scripts_path, machine, patch_items): | |||
| 417 | def yocto_kernel_patch_list(scripts_path, machine): | 417 | def yocto_kernel_patch_list(scripts_path, machine): |
| 418 | """ | 418 | """ |
| 419 | Display the list of patches in a machine's user-defined patch list | 419 | Display the list of patches in a machine's user-defined patch list |
| 420 | [user-patches.scc]. | 420 | [${machine}-user-patches.scc]. |
| 421 | """ | 421 | """ |
| 422 | (start_line, end_line, src_uri) = find_bsp_kernel_src_uri(scripts_path, machine) | 422 | (start_line, end_line, src_uri) = find_bsp_kernel_src_uri(scripts_path, machine) |
| 423 | patches = find_patches(src_uri) | 423 | patches = find_patches(src_uri) |
| @@ -429,7 +429,7 @@ def yocto_kernel_patch_list(scripts_path, machine): | |||
| 429 | def yocto_kernel_patch_rm(scripts_path, machine): | 429 | def yocto_kernel_patch_rm(scripts_path, machine): |
| 430 | """ | 430 | """ |
| 431 | Remove one or more patches from a machine's user-defined patch | 431 | Remove one or more patches from a machine's user-defined patch |
| 432 | list [user-patches.scc]. | 432 | list [${machine}-user-patches.scc]. |
| 433 | """ | 433 | """ |
| 434 | (start_line, end_line, src_uri) = find_bsp_kernel_src_uri(scripts_path, machine) | 434 | (start_line, end_line, src_uri) = find_bsp_kernel_src_uri(scripts_path, machine) |
| 435 | patches = find_patches(src_uri) | 435 | patches = find_patches(src_uri) |
| @@ -470,7 +470,7 @@ def yocto_kernel_patch_rm(scripts_path, machine): | |||
| 470 | def yocto_kernel_patch_add(scripts_path, machine, patches): | 470 | def yocto_kernel_patch_add(scripts_path, machine, patches): |
| 471 | """ | 471 | """ |
| 472 | Add one or more patches to a machine's user-defined patch list | 472 | Add one or more patches to a machine's user-defined patch list |
| 473 | [user-patches.scc]. | 473 | [${machine}-user-patches.scc]. |
| 474 | """ | 474 | """ |
| 475 | (start_line, end_line, src_uri) = find_bsp_kernel_src_uri(scripts_path, machine) | 475 | (start_line, end_line, src_uri) = find_bsp_kernel_src_uri(scripts_path, machine) |
| 476 | src_uri_patches = find_patches(src_uri) | 476 | src_uri_patches = find_patches(src_uri) |
diff --git a/scripts/lib/bsp/substrate/target/arch/arm/recipes-graphics/xorg-xserver/{{ if xserver == "y": }} xserver-xf86-config_0.1.bbappend b/scripts/lib/bsp/substrate/target/arch/arm/recipes-graphics/xorg-xserver/{{ if xserver == "y": }} xserver-xf86-config_0.1.bbappend index 72d991c7e5..155f67b622 100644 --- a/scripts/lib/bsp/substrate/target/arch/arm/recipes-graphics/xorg-xserver/{{ if xserver == "y": }} xserver-xf86-config_0.1.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/arm/recipes-graphics/xorg-xserver/{{ if xserver == "y": }} xserver-xf86-config_0.1.bbappend | |||
| @@ -1 +1 @@ | |||
| FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/${PN}:" | ||
diff --git a/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/files/user-config.cfg b/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/files/{{=machine}}-user-config.cfg index e69de29bb2..e69de29bb2 100644 --- a/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/files/user-config.cfg +++ b/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/files/{{=machine}}-user-config.cfg | |||
diff --git a/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/files/user-patches.scc b/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/files/{{=machine}}-user-patches.scc index e69de29bb2..e69de29bb2 100644 --- a/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/files/user-patches.scc +++ b/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/files/{{=machine}}-user-patches.scc | |||
diff --git a/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend b/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend index 3171cce75a..c2c047c300 100644 --- a/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ | 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend b/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend index f11bfa5833..1ae5ceee18 100644 --- a/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ | 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend b/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend index 1278064ad8..fcbe2d332f 100644 --- a/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-standard.scc \ | 27 | SRC_URI += "file://{{=machine}}-standard.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend b/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend index 5b20babe77..07aa9d1e8b 100644 --- a/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-standard.scc \ | 27 | SRC_URI += "file://{{=machine}}-standard.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/common/recipes-bsp/formfactor/formfactor_0.0.bbappend b/scripts/lib/bsp/substrate/target/arch/common/recipes-bsp/formfactor/formfactor_0.0.bbappend index 54da0ffd3e..a1e29f1eb7 100644 --- a/scripts/lib/bsp/substrate/target/arch/common/recipes-bsp/formfactor/formfactor_0.0.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/common/recipes-bsp/formfactor/formfactor_0.0.bbappend | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/${PN}:" |
| 2 | 2 | ||
| 3 | PRINC = "1" | 3 | PRINC = "1" |
diff --git a/scripts/lib/bsp/substrate/target/arch/i386/recipes-graphics/xorg-xserver/{{ if xserver == "y": }} xserver-xf86-config_0.1.bbappend b/scripts/lib/bsp/substrate/target/arch/i386/recipes-graphics/xorg-xserver/{{ if xserver == "y": }} xserver-xf86-config_0.1.bbappend index 72d991c7e5..155f67b622 100644 --- a/scripts/lib/bsp/substrate/target/arch/i386/recipes-graphics/xorg-xserver/{{ if xserver == "y": }} xserver-xf86-config_0.1.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/i386/recipes-graphics/xorg-xserver/{{ if xserver == "y": }} xserver-xf86-config_0.1.bbappend | |||
| @@ -1 +1 @@ | |||
| FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/${PN}:" | ||
diff --git a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/user-config.cfg b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/ {{=machine}}-user-config.cfg index e69de29bb2..e69de29bb2 100644 --- a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/user-config.cfg +++ b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/ {{=machine}}-user-config.cfg | |||
diff --git a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/user-patches.scc b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/{{=machine}}-user-patches.scc index e69de29bb2..e69de29bb2 100644 --- a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/user-patches.scc +++ b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/{{=machine}}-user-patches.scc | |||
diff --git a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend index 8af3549fc5..296eb65f61 100644 --- a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ | 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend index f11bfa5833..1ae5ceee18 100644 --- a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ | 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend index c5ff69768f..48ebad6b78 100644 --- a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-standard.scc \ | 27 | SRC_URI += "file://{{=machine}}-standard.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend index 34aa4cc8b4..0a96c7e5f9 100644 --- a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-standard.scc \ | 27 | SRC_URI += "file://{{=machine}}-standard.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/files/user-config.cfg b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/files/{{=machine}}-user-config.cfg index e69de29bb2..e69de29bb2 100644 --- a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/files/user-config.cfg +++ b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/files/{{=machine}}-user-config.cfg | |||
diff --git a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/files/user-patches.scc b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/files/{{=machine}}-user-patches.scc index e69de29bb2..e69de29bb2 100644 --- a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/files/user-patches.scc +++ b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/files/{{=machine}}-user-patches.scc | |||
diff --git a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend index 8af3549fc5..296eb65f61 100644 --- a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ | 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend index f11bfa5833..1ae5ceee18 100644 --- a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ | 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend index c617070b46..277aa9e780 100644 --- a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-standard.scc \ | 27 | SRC_URI += "file://{{=machine}}-standard.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend index 5b20babe77..07aa9d1e8b 100644 --- a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-standard.scc \ | 27 | SRC_URI += "file://{{=machine}}-standard.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/user-config.cfg b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}-user-config.cfg index e69de29bb2..e69de29bb2 100644 --- a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/user-config.cfg +++ b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}-user-config.cfg | |||
diff --git a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/user-patches.scc b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}-user-patches.scc index e69de29bb2..e69de29bb2 100644 --- a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/user-patches.scc +++ b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}-user-patches.scc | |||
diff --git a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend index 8af3549fc5..296eb65f61 100644 --- a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ | 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend index f11bfa5833..1ae5ceee18 100644 --- a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ | 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend index c617070b46..277aa9e780 100644 --- a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-standard.scc \ | 27 | SRC_URI += "file://{{=machine}}-standard.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend index 5b20babe77..07aa9d1e8b 100644 --- a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-standard.scc \ | 27 | SRC_URI += "file://{{=machine}}-standard.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend index 72d991c7e5..155f67b622 100644 --- a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend | |||
| @@ -1 +1 @@ | |||
| FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/${PN}:" | ||
diff --git a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/files/user-config.cfg b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/files/{{=machine}}-user-config.cfg index e69de29bb2..e69de29bb2 100644 --- a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/files/user-config.cfg +++ b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/files/{{=machine}}-user-config.cfg | |||
diff --git a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/files/user-patches.scc b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/files/{{=machine}}-user-patches.scc index e69de29bb2..e69de29bb2 100644 --- a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/files/user-patches.scc +++ b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/files/{{=machine}}-user-patches.scc | |||
diff --git a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend index 680973e4a8..e580841da0 100644 --- a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -51,6 +51,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 51 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ | 51 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ |
| 52 | file://{{=machine}}.scc \ | 52 | file://{{=machine}}.scc \ |
| 53 | file://{{=machine}}.cfg \ | 53 | file://{{=machine}}.cfg \ |
| 54 | file://{{=machine}}-user-config.cfg \ | ||
| 55 | file://{{=machine}}-user-patches.scc \ | ||
| 54 | " | 56 | " |
| 55 | 57 | ||
| 56 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 58 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend index 70ede9f70a..89c32c4428 100644 --- a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -51,6 +51,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 51 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ | 51 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ |
| 52 | file://{{=machine}}.scc \ | 52 | file://{{=machine}}.scc \ |
| 53 | file://{{=machine}}.cfg \ | 53 | file://{{=machine}}.cfg \ |
| 54 | file://{{=machine}}-user-config.cfg \ | ||
| 55 | file://{{=machine}}-user-patches.scc \ | ||
| 54 | " | 56 | " |
| 55 | 57 | ||
| 56 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 58 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend index 9af21f2b6c..93cbbb9443 100644 --- a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -51,8 +51,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 51 | SRC_URI += "file://{{=machine}}-standard.scc \ | 51 | SRC_URI += "file://{{=machine}}-standard.scc \ |
| 52 | file://{{=machine}}.scc \ | 52 | file://{{=machine}}.scc \ |
| 53 | file://{{=machine}}.cfg \ | 53 | file://{{=machine}}.cfg \ |
| 54 | file://user-config.cfg \ | 54 | file://{{=machine}}-user-config.cfg \ |
| 55 | file://user-patches.scc \ | 55 | file://{{=machine}}-user-patches.scc \ |
| 56 | " | 56 | " |
| 57 | 57 | ||
| 58 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 58 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend index 1e90cf278b..59359b3358 100644 --- a/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -51,8 +51,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 51 | SRC_URI += "file://{{=machine}}-standard.scc \ | 51 | SRC_URI += "file://{{=machine}}-standard.scc \ |
| 52 | file://{{=machine}}.scc \ | 52 | file://{{=machine}}.scc \ |
| 53 | file://{{=machine}}.cfg \ | 53 | file://{{=machine}}.cfg \ |
| 54 | file://user-config.cfg \ | 54 | file://{{=machine}}-user-config.cfg \ |
| 55 | file://user-patches.scc \ | 55 | file://{{=machine}}-user-patches.scc \ |
| 56 | " | 56 | " |
| 57 | 57 | ||
| 58 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 58 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-graphics/xorg-xserver/{{ if xserver == "y": }} xserver-xf86-config_0.1.bbappend b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-graphics/xorg-xserver/{{ if xserver == "y": }} xserver-xf86-config_0.1.bbappend index 72d991c7e5..155f67b622 100644 --- a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-graphics/xorg-xserver/{{ if xserver == "y": }} xserver-xf86-config_0.1.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-graphics/xorg-xserver/{{ if xserver == "y": }} xserver-xf86-config_0.1.bbappend | |||
| @@ -1 +1 @@ | |||
| FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/${PN}:" | ||
diff --git a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/files/user-config.cfg b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/files/{{=machine}}-user-config.cfg index e69de29bb2..e69de29bb2 100644 --- a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/files/user-config.cfg +++ b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/files/{{=machine}}-user-config.cfg | |||
diff --git a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/files/user-patches.scc b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/files/{{=machine}}-user-patches.scc index e69de29bb2..e69de29bb2 100644 --- a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/files/user-patches.scc +++ b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/files/{{=machine}}-user-patches.scc | |||
diff --git a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend index 8af3549fc5..296eb65f61 100644 --- a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.2": }} linux-yocto-rt_3.2.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ | 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend index f11bfa5833..1ae5ceee18 100644 --- a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto-rt_3.4": }} linux-yocto-rt_3.4.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ | 27 | SRC_URI += "file://{{=machine}}-preempt-rt.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend index 6f0d884453..38507da3f9 100644 --- a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.2": }} linux-yocto_3.2.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-standard.scc \ | 27 | SRC_URI += "file://{{=machine}}-standard.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
diff --git a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend index e855037fbd..16966e01f4 100644 --- a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend +++ b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/{{ if kernel_choice == "linux-yocto_3.4": }} linux-yocto_3.4.bbappend | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS_prepend_{{=machine}} := "${THISDIR}/files:" |
| 2 | 2 | ||
| 3 | PR := "${PR}.1" | 3 | PR := "${PR}.1" |
| 4 | 4 | ||
| @@ -27,8 +27,8 @@ KERNEL_FEATURES_append_{{=machine}} += " cfg/smp.scc" | |||
| 27 | SRC_URI += "file://{{=machine}}-standard.scc \ | 27 | SRC_URI += "file://{{=machine}}-standard.scc \ |
| 28 | file://{{=machine}}.scc \ | 28 | file://{{=machine}}.scc \ |
| 29 | file://{{=machine}}.cfg \ | 29 | file://{{=machine}}.cfg \ |
| 30 | file://user-config.cfg \ | 30 | file://{{=machine}}-user-config.cfg \ |
| 31 | file://user-patches.scc \ | 31 | file://{{=machine}}-user-patches.scc \ |
| 32 | " | 32 | " |
| 33 | 33 | ||
| 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had | 34 | # uncomment and replace these SRCREVs with the real commit ids once you've had |
