Skip to content
This repository has been archived by the owner on Dec 29, 2017. It is now read-only.

Update Master to match LEDE Upstream - WIP #5

Merged
merged 45 commits into from Feb 15, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
b0aae75
Initial Revision
riptidewave93 Oct 16, 2016
6d0a766
Add CRYPTO_AEAD
riptidewave93 Oct 16, 2016
01c9744
Changes from RFC V1
riptidewave93 Oct 17, 2016
8518f2a
Update diffconfig
riptidewave93 Oct 17, 2016
0081736
Update to the latest LEDE base
riptidewave93 Oct 17, 2016
81212c7
CPU optimisation
Gr4ffy Oct 18, 2016
b851415
Remove useless kernel modules
Gr4ffy Oct 18, 2016
d102fb5
Merge pull request #6 from Gr4ffy/lede-upstream-port
riptidewave93 Oct 18, 2016
d6444a3
Fixup LED Platform Detection
riptidewave93 Oct 19, 2016
c41fff2
Update rc.button reset and LED driver
riptidewave93 Oct 21, 2016
55261db
Update LED Driver, remove rc.button file, Update Base
riptidewave93 Oct 22, 2016
85e52de
Update build script clean function
riptidewave93 Oct 22, 2016
ae7b95d
Add kmod-usb-serial, Remove Crypto patch
riptidewave93 Oct 23, 2016
ef0e840
Update with changes from RFC V2
riptidewave93 Oct 24, 2016
634f2d8
Update nct5104d driver
riptidewave93 Oct 24, 2016
433903e
Update nct5104d driver help documentation
riptidewave93 Oct 24, 2016
6753505
Apply IGB patch, update base
riptidewave93 Oct 27, 2016
fd79b88
Update LED driver, bring back sp5100_tco kmod
riptidewave93 Oct 30, 2016
5790598
Add missing modules.mk
riptidewave93 Oct 30, 2016
cd1ccd8
Sync with Upstream
riptidewave93 Nov 13, 2016
d8ddafd
Update config-default
Gr4ffy Nov 15, 2016
bb84eca
Merge pull request #10 from Gr4ffy/patch-1
riptidewave93 Nov 15, 2016
bae3a86
Update base & change LED config
riptidewave93 Nov 20, 2016
bc0ee94
Update base revision
riptidewave93 Nov 29, 2016
04ce364
Fix typo in 01_leds, update base
riptidewave93 Dec 22, 2016
389f1ea
Update to base of r2951
riptidewave93 Jan 13, 2017
365d949
Re-enable devmem
riptidewave93 Jan 13, 2017
de256ba
add blkdiscard
riptidewave93 Jan 13, 2017
36d4fa8
Update base, remove blkdisregard
riptidewave93 Jan 13, 2017
a9f1140
Enable devmem within LEDE config
riptidewave93 Jan 13, 2017
8c558a8
Update base revision
riptidewave93 Jan 14, 2017
e4854f3
Update to match upstream
riptidewave93 Jan 17, 2017
bf92fd9
x86_64: remove gpio-nct5104d
feckert Jan 20, 2017
27f08ec
package/kernel: add gpio-nct5104d as kernel module
feckert Jan 20, 2017
31e3799
Merge pull request #16 from feckert/nct5104d-kernel-module
riptidewave93 Jan 22, 2017
032a4a4
Move to GPIO kmod
riptidewave93 Jan 22, 2017
c2a6188
Move leds-apu2 to a kernel module
riptidewave93 Jan 22, 2017
9ca9a4e
Update Copyright
riptidewave93 Jan 22, 2017
2e0b74a
Update kernel config and base
riptidewave93 Jan 23, 2017
bf3e19b
Fix spacing on the APU2 LED driver
riptidewave93 Jan 25, 2017
55bafa1
Update repo after latest patches
Jan 27, 2017
69f48b8
Update base commit
riptidewave93 Jan 31, 2017
ed7badf
Update base & remove patch
riptidewave93 Feb 2, 2017
de4bec1
Minor Userspace Changes
riptidewave93 Feb 12, 2017
aa3ba8d
Sync with upstream, remove commit targeting
riptidewave93 Feb 15, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

Bringup repo for the PC Engines APU2 on LEDE!

Currently based on LEDE Nightlies. Note that I have no intentions of merging this upstream, so the code may be a bit rough. Forks/PR's/Feedback is always appreciated!
Currently based on LEDE Nightlies. This is the bringup repo to show the progress of porting upstream. Note that builds MAY FAIL using this branch, so usage of Master is recommend instead.

Building
-----
Expand Down
5 changes: 1 addition & 4 deletions build.sh
Expand Up @@ -22,16 +22,13 @@ if [ ! -d "$clonedir" ]; then
firstbuild=1
Msg "Cloning Repo..."
git clone https://github.com/lede-project/source $clonedir
cd $clonedir
git reset --hard 175b59c59b7cd8f40bdb3a8f3c6fec05e46c5299
cd - > /dev/null
fi


if [ "$firstbuild" -eq "0" ]; then
Msg "Cleaning Builddir..."
cd $clonedir
rm -rf ./bin
make clean
cd - > /dev/null
fi

Expand Down
28 changes: 13 additions & 15 deletions config/diffconfig
@@ -1,23 +1,20 @@
CONFIG_TARGET_x86=y
CONFIG_TARGET_x86_64=y
CONFIG_TARGET_x86_64_APU2=y
CONFIG_BUSYBOX_CUSTOM=y
CONFIG_BUSYBOX_CONFIG_BEEP=y
CONFIG_BUSYBOX_CONFIG_FEATURE_BEEP_FREQ=500
CONFIG_BUSYBOX_CONFIG_FEATURE_BEEP_LENGTH_MS=300
CONFIG_BUSYBOX_CONFIG_FSTRIM=y
CONFIG_PACKAGE_dmidecode=y
CONFIG_PACKAGE_flashrom=y
CONFIG_PACKAGE_libftdi1=y
CONFIG_DEVEL=y
CONFIG_KERNEL_DEVMEM=y
CONFIG_OPENSSL_WITH_DEPRECATED=y
CONFIG_OPENSSL_WITH_EC=y
CONFIG_OPENSSL_WITH_NPN=y
CONFIG_OPENSSL_WITH_PSK=y
CONFIG_OPENSSL_WITH_SRP=y
CONFIG_PACKAGE_libiwinfo-lua=y
CONFIG_PACKAGE_libkmod=y
CONFIG_PACKAGE_liblua=y
CONFIG_PACKAGE_libopenssl=y
CONFIG_PACKAGE_libpolarssl=y
CONFIG_PACKAGE_libubus-lua=y
CONFIG_PACKAGE_libuci-lua=y
CONFIG_PACKAGE_libusb-1.0=y
CONFIG_PACKAGE_libusb-compat=y
CONFIG_PACKAGE_libustream-polarssl=y
CONFIG_PACKAGE_libustream-openssl=y
CONFIG_PACKAGE_lua=y
CONFIG_PACKAGE_luci=y
CONFIG_PACKAGE_luci-app-firewall=y
Expand All @@ -28,11 +25,12 @@ CONFIG_PACKAGE_luci-lib-nixio=y
CONFIG_PACKAGE_luci-mod-admin-full=y
CONFIG_PACKAGE_luci-proto-ipv6=y
CONFIG_PACKAGE_luci-proto-ppp=y
CONFIG_PACKAGE_luci-ssl=y
CONFIG_PACKAGE_luci-ssl-openssl=y
CONFIG_PACKAGE_luci-theme-bootstrap=y
CONFIG_PACKAGE_pciutils=y
CONFIG_PACKAGE_openssl-util=y
CONFIG_PACKAGE_px5g-polarssl=y
CONFIG_PACKAGE_rpcd=y
CONFIG_PACKAGE_uhttpd=y
CONFIG_PACKAGE_uhttpd-mod-ubus=y
CONFIG_PACKAGE_zlib=y
CONFIG_TARGET_OPTIMIZATION="-Os -pipe -march=btver2 -mtune=btver2"
CONFIG_TARGET_OPTIONS=y