File tree Expand file tree Collapse file tree 5 files changed +87
-0
lines changed Expand file tree Collapse file tree 5 files changed +87
-0
lines changed Original file line number Diff line number Diff line change
1
+ # These are supported funding model platforms
2
+
3
+ github : beagleboard # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4
+ patreon : beagleboard # Replace with a single Patreon username
5
+ open_collective : # Replace with a single Open Collective username
6
+ ko_fi : # Replace with a single Ko-fi username
7
+ tidelift : # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
+ community_bridge : # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
+ liberapay : # Replace with a single Liberapay username
10
+ issuehunt : # Replace with a single IssueHunt username
11
+ otechie : # Replace with a single Otechie username
12
+ custom : https://paypal.me/beagleboard # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Bug report
3
+ about : Create a report to help us improve
4
+ title : ' '
5
+ labels : ' '
6
+ assignees : ' '
7
+
8
+ ---
9
+
10
+ ** Describe the bug**
11
+ A clear and concise description of what the bug is.
12
+
13
+ ** Describe how to reproduce the bug**
14
+ List all the steps needed to reproduce the bug
15
+
16
+ ** REQUIRED INFORMATION**
17
+ Run this command and paste the output here:
18
+ ```
19
+ sudo /opt/scripts/tools/version.sh
20
+ ```
Original file line number Diff line number Diff line change
1
+ pipeline {
2
+ agent { label ' amd64' }
3
+
4
+ stages {
5
+ stage(' Build' ) {
6
+ steps {
7
+ sh ' /bin/bash ./jenkins_build.sh'
8
+ }
9
+ }
10
+ }
11
+ }
Original file line number Diff line number Diff line change
1
+ | kernel | normal | rt |
2
+ | :---:| :---:| :---:|
3
+ | 4.19 | [ ![ Build Status] ( http://gfnd.rcn-ee.org:8080/view/BeagleBoard/job/beagleboard_kernel_builder/job/4.19/badge/icon )] ( http://gfnd.rcn-ee.org:8080/view/BeagleBoard/job/beagleboard_kernel_builder/job/4.19/ ) | [ ![ Build Status] ( http://gfnd.rcn-ee.org:8080/view/BeagleBoard/job/beagleboard_kernel_builder/job/4.19-rt/badge/icon )] ( http://gfnd.rcn-ee.org:8080/view/BeagleBoard/job/beagleboard_kernel_builder/job/4.19-rt/ ) |
4
+ | 5.4 | [ ![ Build Status] ( http://gfnd.rcn-ee.org:8080/view/BeagleBoard/job/beagleboard_kernel_builder/job/5.4/badge/icon )] ( http://gfnd.rcn-ee.org:8080/view/BeagleBoard/job/beagleboard_kernel_builder/job/5.4/ ) | [ ![ Build Status] ( http://gfnd.rcn-ee.org:8080/view/BeagleBoard/job/beagleboard_kernel_builder/job/5.4-rt/badge/icon )] ( http://gfnd.rcn-ee.org:8080/view/BeagleBoard/job/beagleboard_kernel_builder/job/5.4-rt/ ) |
5
+ | 5.10 | [ ![ Build Status] ( http://gfnd.rcn-ee.org:8080/view/BeagleBoard/job/beagleboard_kernel_builder/job/5.10/badge/icon )] ( http://gfnd.rcn-ee.org:8080/view/BeagleBoard/job/beagleboard_kernel_builder/job/5.10/ ) | [ ![ Build Status] ( http://gfnd.rcn-ee.org:8080/view/BeagleBoard/job/beagleboard_kernel_builder/job/5.10-rt/badge/icon )] ( http://gfnd.rcn-ee.org:8080/view/BeagleBoard/job/beagleboard_kernel_builder/job/5.10-rt/ ) |
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # git clone -b 5.10 https://github.com/beagleboard/linux --depth=10
4
+ # cd ./linux
5
+
6
+ export CC=/usr/bin/arm-linux-gnueabihf-
7
+
8
+ make ARCH=arm CROSS_COMPILE=${CC} clean
9
+ make ARCH=arm CROSS_COMPILE=${CC} bb.org_defconfig
10
+
11
+ echo " [make ARCH=arm -j4 CROSS_COMPILE=\" ${binary} \" zImage]"
12
+ make ARCH=arm -j4 CROSS_COMPILE=" ccache ${CC} " zImage
13
+ if [ ! -f arch/arm/boot/zImage ] ; then
14
+ echo " failed: [arch/arm/boot/zImage]"
15
+ exit 1
16
+ fi
17
+
18
+ echo " [make ARCH=arm -j4 CROSS_COMPILE=\" ${binary} \" modules]"
19
+ make ARCH=arm -j4 CROSS_COMPILE=" ccache ${CC} " modules
20
+ if [ ! -f drivers/spi/spidev.ko ] ; then
21
+ echo " failed: [drivers/spi/spidev.ko]"
22
+ exit 1
23
+ fi
24
+
25
+ echo " [make ARCH=arm CROSS_COMPILE=\" ${binary} \" dtbs]"
26
+ make ARCH=arm CROSS_COMPILE=" ccache ${CC} " dtbs
27
+ if [ ! -f arch/arm/boot/dts/am335x-boneblack.dtb ] ; then
28
+ echo " failed: [arch/arm/boot/dts/am335x-boneblack.dtb]"
29
+ exit 1
30
+ else
31
+ if [ -f arch/arm/boot/dts/am335x-pocketbeagle.dts ] ; then
32
+ if [ ! -f arch/arm/boot/dts/am335x-pocketbeagle.dtb ] ; then
33
+ echo " failed: [arch/arm/boot/dts/am335x-pocketbeagle.dtb]"
34
+ exit 1
35
+ fi
36
+ fi
37
+ fi
38
+
39
+ make ARCH=arm CROSS_COMPILE=${CC} clean
You can’t perform that action at this time.
0 commit comments