-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from ski7777/buildroot
Bump Buildroot version to 2017.02.7
- Loading branch information
Showing
508 changed files
with
10,558 additions
and
2,077 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ image sdcard.img { | |
partition rootfs { | ||
partition-type = 0x83 | ||
image = "rootfs.ext4" | ||
offset = 1M | ||
size = 512M | ||
} | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
commit e5f2b577ded109291c9632dacb6eaa621d8a59fe | ||
Author: Sylvain Gault <[email protected]> | ||
Date: Tue Sep 29 02:38:25 2015 +0200 | ||
From da5cbd1a3b248f2d32281a1766a3d1414c0e8e03 Mon Sep 17 00:00:00 2001 | ||
From: Sylvain Gault <[email protected]> | ||
Date: Tue, 29 Sep 2015 02:38:25 +0200 | ||
Subject: [PATCH] bios: Fix alignment change with gcc 5 | ||
|
||
bios: Fix alignment change with gcc 5 | ||
|
||
The section aligment specified in the ld scripts have to be greater or | ||
equal to those in the .o files generated by gcc. | ||
|
||
Signed-off-by: Sylvain Gault <[email protected]> | ||
Tested-by: poma <[email protected]> | ||
Signed-off-by: Paulo Alcantara <[email protected]> | ||
Signed-off-by: Frank Hunleth <[email protected]> | ||
The section aligment specified in the ld scripts have to be greater or | ||
equal to those in the .o files generated by gcc. | ||
|
||
Signed-off-by: Sylvain Gault <[email protected]> | ||
Tested-by: poma <[email protected]> | ||
Signed-off-by: Paulo Alcantara <[email protected]> | ||
Signed-off-by: Frank Hunleth <[email protected]> | ||
--- | ||
core/i386/syslinux.ld | 6 +++--- | ||
core/x86_64/syslinux.ld | 6 +++--- | ||
2 files changed, 6 insertions(+), 6 deletions(-) | ||
|
||
diff --git a/core/i386/syslinux.ld b/core/i386/syslinux.ld | ||
index 7b4e012..7390451 100644 | ||
|
@@ -74,3 +77,6 @@ index 1057112..bf815c4 100644 | |
__bss_vma = .; | ||
__bss_lma = .; /* Dummy */ | ||
.bss (NOLOAD) : AT (__bss_lma) { | ||
-- | ||
2.7.4 | ||
|
30 changes: 30 additions & 0 deletions
30
boot/syslinux/0002-Disable-PIE-to-avoid-FTBFS-on-amd64.patch
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
From 250bf2c921713434627dc7bc8b0918fa0841f9b7 Mon Sep 17 00:00:00 2001 | ||
From: Graham Inggs <[email protected]> | ||
Date: Wed, 5 Apr 2017 22:03:12 +0200 | ||
Subject: [PATCH] Disable PIE to avoid FTBFS on amd64 | ||
|
||
gcc 6.x has PIE support enabled by default, which causes a build issue | ||
with syslinux. This patch disables PIE support in the relevant | ||
syslinux Makefile. | ||
|
||
Signed-off-by: Ryan Coe <[email protected]> | ||
--- | ||
gpxe/src/Makefile | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/gpxe/src/Makefile b/gpxe/src/Makefile | ||
index cc91d78..077af64 100644 | ||
--- a/gpxe/src/Makefile | ||
+++ b/gpxe/src/Makefile | ||
@@ -4,7 +4,7 @@ | ||
# | ||
|
||
CLEANUP := | ||
-CFLAGS := | ||
+CFLAGS := -fno-PIE | ||
ASFLAGS := | ||
LDFLAGS := | ||
MAKEDEPS := Makefile | ||
-- | ||
2.7.4 | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.