Re: [LEDE-DEV] [PATCH] kernel: bump 4.14 to 4.14.39

2018-05-08 Thread Tomasz Maciej Nowak
W dniu 08.05.2018 o 15:54, Koen Vandeputte pisze: > > > On 2018-05-08 15:47, Michael Yartys wrote: >> The patch doesn't apply without changing what I've highlighted below. >> >> >> diff --git a/include/kernel-version.mk b/include/kernel-version.mk >> >> index 68795f767c04..192ee1c2e969 100644 >>

Re: [LEDE-DEV] [PATCH 2/2] kernel: bump 4.14 to 4.14.38

2018-05-07 Thread Tomasz Maciej Nowak
W dniu 07.05.2018 o 14:46, Koen Vandeputte pisze: > > > On 2018-05-06 23:41, Koen Vandeputte wrote: >> >> >> On 06-05-18 19:25, Tomasz Maciej Nowak wrote: >>> Hi Koen. >>> >>> W dniu 03.05.2018 o 11:57, Koen Vandeputte pisze: >>>>

Re: [LEDE-DEV] [PATCH 2/2] kernel: bump 4.14 to 4.14.38

2018-05-06 Thread Tomasz Maciej Nowak
Hi Koen. W dniu 03.05.2018 o 11:57, Koen Vandeputte pisze: > All, > > Please skip these. > It does not apply anymore due to:   "kernel: add missing in6_dev_put_clear > call to an ipv6 network patch" > > Also .. yet another kernel bump was released yesterday .. If You'll be doing kernel bump

Re: [LEDE-DEV] [PATCH 1/2] x86: add amd microcode entries to grub config

2018-04-27 Thread Tomasz Maciej Nowak
W dniu 26.04.2018 o 20:04, Stijn Segers pisze: > Op di, 24 apr 2018 om 10:18 , schreef Tomasz Maciej Nowak <tome...@o2.pl>: >> W dniu 24.04.2018 o 22:00, Stijn Segers pisze: >> [snip] >>>>> >>>>>   I'm not sure what's going wrong here, I'm on a

Re: [LEDE-DEV] [PATCH 1/2] x86: add amd microcode entries to grub config

2018-04-24 Thread Tomasz Maciej Nowak
W dniu 24.04.2018 o 22:00, Stijn Segers pisze: [snip] >>> >>>  I'm not sure what's going wrong here, I'm on a clean master tree but your >>> first patch does not apply: >>> >>>  $ git am 1.patch >>>  Applying: x86: add amd microcode entries to grub config >>>  error: patch failed: >>>

Re: [LEDE-DEV] [PATCH 1/2] x86: add amd microcode entries to grub config

2018-04-24 Thread Tomasz Maciej Nowak
W dniu 24.04.2018 o 21:03, Stijn Segers pisze: > Hi Tomasz, > > Op di, 24 apr 2018 om 2:56 , schreef Tomasz Maciej Nowak <tome...@o2.pl>: >> Create initrd enries for x86 images, that'll load amd microcode as early >> as possible. Also remove the preinit scrip

[LEDE-DEV] [PATCH 2/2] amd64-microcode: create early load microcode image

2018-04-24 Thread Tomasz Maciej Nowak
Create initrd image with packed microcode. This'll allow to load it at early boot stage. Signed-off-by: Tomasz Maciej Nowak <tome...@o2.pl> --- package/firmware/amd64-microcode/Makefile | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/package/firmware

Re: [LEDE-DEV] [PATCH v2 5/6] x86: add intel microcode entries

2018-04-24 Thread Tomasz Maciej Nowak
of 'intel-microcode: load as early as possible' series. Tomasz Maciej Nowak (2): x86: add amd microcode entries to grub config amd64-microcode: create early load microcode image package/firmware/amd64-microcode/Makefile| 10 -- .../x86/base-files/lib/preinit

[LEDE-DEV] [PATCH 1/2] x86: add amd microcode entries to grub config

2018-04-24 Thread Tomasz Maciej Nowak
Create initrd enries for x86 images, that'll load amd microcode as early as possible. Also remove the preinit script responsible for late load of microcode. Signed-off-by: Tomasz Maciej Nowak <tome...@o2.pl> --- .../x86/base-files/lib/preinit/02_load_x86_ucode | 12 target

Re: [LEDE-DEV] [PATCH v2 5/6] x86: add intel microcode entries to grub config

2018-04-19 Thread Tomasz Maciej Nowak
hardware to test it, it's being left out. On Apr 17, 2018, at 12:50 PM, Tomasz Maciej Nowak <tome...@o2.pl> wrote: Create initrd enries for x86 images, that'll load intel microcode as early as possible. Also restrict the late load of microcode to AMD processors. Signed-off-by: Tomasz

[LEDE-DEV] [PATCH v2 6/6] intel-microcode: create early load microcode image

2018-04-17 Thread Tomasz Maciej Nowak
Create initrd image with packed microcode. This'll allow to load it at early boot stage. Signed-off-by: Tomasz Maciej Nowak <tome...@o2.pl> --- package/firmware/intel-microcode/Makefile | 14 -- 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/package/firmware

[LEDE-DEV] [PATCH v2 5/6] x86: add intel microcode entries to grub config

2018-04-17 Thread Tomasz Maciej Nowak
Create initrd enries for x86 images, that'll load intel microcode as early as possible. Also restrict the late load of microcode to AMD processors. Signed-off-by: Tomasz Maciej Nowak <tome...@o2.pl> --- target/linux/x86/base-files/lib/preinit/02_load_x86_ucode | 6 -- target/linux/x86

[LEDE-DEV] [PATCH v2 4/6] intel-microcode: remove dependency on iucode-tool

2018-04-17 Thread Tomasz Maciej Nowak
It is not necessary to have iucode-tool present on target system to have functional intel-microcode package. The build time dependency is kept. Signed-off-by: Tomasz Maciej Nowak <tome...@o2.pl> --- package/firmware/intel-microcode/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 de

[LEDE-DEV] [PATCH v2 3/6] x86: add packages files to image bootfs

2018-04-17 Thread Tomasz Maciej Nowak
Add files to bootfs image from selected as built-in packages, which want to install files to targets boot file system. Signed-off-by: Tomasz Maciej Nowak <tome...@o2.pl> --- target/linux/x86/image/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/target/linux/x86/image/Make

[LEDE-DEV] [PATCH v2 2/6] x86: mount writable bootfs

2018-04-17 Thread Tomasz Maciej Nowak
Mount boot file system with rw option to allow installation of packages which install files to /boot directory. Signed-off-by: Tomasz Maciej Nowak <tome...@o2.pl> --- .../linux/x86/base-files/lib/preinit/79_move_config | 12 1 file changed, 4 insertions(+), 8 deletions(-)

[LEDE-DEV] [PATCH v2 0/6] intel-microcode: load as early as possible

2018-04-17 Thread Tomasz Maciej Nowak
, remove postinst/prerm scripts and install microcode directly to /boot: intel-microcode: create early load microcode image - no changes: intel-microcode: remove dependency on iucode-tool All changes sugested by Matthias Schiffer and Philip Prindeville. Tomasz Maciej Nowak (6

[LEDE-DEV] [PATCH v2 1/6] include/rootfs.mk: move boot directory for later use

2018-04-17 Thread Tomasz Maciej Nowak
on target root file system. Signed-off-by: Tomasz Maciej Nowak <tome...@o2.pl> --- include/rootfs.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/include/rootfs.mk b/include/rootfs.mk index 76425c017a..2530fd8d07 100644 --- a/include/rootfs.mk +++ b/include/rootfs.mk @@ -90,6 +90,7 @@

Re: [LEDE-DEV] [PATCH 3/3] intel-microcode: create early load microcode image

2018-04-11 Thread Tomasz Maciej Nowak
W dniu 11.04.2018 o 09:26, Matthias Schiffer pisze: On 04/03/2018 03:13 PM, Tomasz Maciej Nowak wrote: Create initrd image with packed microcode. This'll allow to load it at early boot stage. Unfortunately the package can't install files directly to /boot directory, therefore additional

Re: [LEDE-DEV] Advice on filesystem for x86 (CF card)

2018-04-11 Thread Tomasz Maciej Nowak
W dniu 11.04.2018 o 14:35, Mikael Bak pisze: On 2018-04-11 14:11, Nishant Sharma wrote: [snip] I didn't know a way to expand squashfs, so decided to compile the image and adjusted /root size as per the size of the disk. I'm using the Image Builder to create custom images. I can't find any

Re: [LEDE-DEV] [PATCH 3/3] intel-microcode: create early load microcode image

2018-04-09 Thread Tomasz Maciej Nowak
W dniu 09.04.2018 o 21:05, Philip Prindeville pisze: Inline On Apr 3, 2018, at 7:13 AM, Tomasz Maciej Nowak <tome...@o2.pl> wrote: Create initrd image with packed microcode. This'll allow to load it at early boot stage. Unfortunately the package can't install files directly to /boot dir

Re: [LEDE-DEV] [PATCH 2/3] x86: add intel microcode entries to grub config

2018-04-09 Thread Tomasz Maciej Nowak
W dniu 09.04.2018 o 21:00, Philip Prindeville pisze: Inline. Has this been tested with UEFI? No, I don't have any UEFI system which can be employed for testing. On Apr 3, 2018, at 7:13 AM, Tomasz Maciej Nowak <tome...@o2.pl> wrote: Create initrd enries for x86 images, that'll load

[LEDE-DEV] [PATCH 3/3] intel-microcode: create early load microcode image

2018-04-03 Thread Tomasz Maciej Nowak
-by: Tomasz Maciej Nowak <tome...@o2.pl> --- package/firmware/intel-microcode/Makefile | 32 +-- target/linux/x86/image/Makefile | 6 ++ 2 files changed, 32 insertions(+), 6 deletions(-) diff --git a/package/firmware/intel-microcode/Makefile b/p

[LEDE-DEV] [PATCH 2/3] x86: add intel microcode entries to grub config

2018-04-03 Thread Tomasz Maciej Nowak
Create initrd enries for x86 images, that'll load intel microcode as early as possible. Also restrict the late load of microcode to AMD processors. Signed-off-by: Tomasz Maciej Nowak <tome...@o2.pl> --- target/linux/x86/base-files/lib/preinit/02_load_x86_ucode | 6 -- target/linux/x86

[LEDE-DEV] [PATCH 1/3] intel-microcode: remove dependency on iucode-tool

2018-04-03 Thread Tomasz Maciej Nowak
It is not necessary to have iucode-tool present on target system to have functional intel-microcode package. The build time dependency is kept. Signed-off-by: Tomasz Maciej Nowak <tome...@o2.pl> --- package/firmware/intel-microcode/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 de

[LEDE-DEV] [RFC PATCH 0/3] intel-microcode: load as early as possible

2018-04-03 Thread Tomasz Maciej Nowak
-x86-microcode-early-load-microcode#post18 3. https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=723f2828a98c8ca19842042f418fb30dd8cfc0f7 Tomasz Maciej Nowak (3): intel-microcode: remove dependency on iucode-tool x86: add intel microcode entries to grub config intel

[LEDE-DEV] [PATCH 2/2] mvebu: new subtarget cortex A53

2018-03-07 Thread Tomasz Maciej Nowak
it" setenv bootcmd "ext4load mmc 0:1 ${fdt_addr} armada-3720-espressobin.dtb; ext4load mmc 0:1 ${kernel_addr} Image; booti ${kernel_addr} - ${fdt_addr}" saveenv 3. Poweroff, insert SD card with OpenWrt image, boot and enjoy. Signed-off-by: Tomasz Maciej Nowak <tome.

[LEDE-DEV] [PATCH 1/2] mvebu: add subtarget for cortex A9 build

2018-03-07 Thread Tomasz Maciej Nowak
From: Hauke Mehrtens This is in preparation for adding a subtarget for the Cortex A53 later. Signed-off-by: Hauke Mehrtens --- package/boot/uboot-mvebu/Makefile | 1 + target/linux/mvebu/Makefile | 6 +-

Re: [LEDE-DEV] Espressobin mvebu64

2018-01-08 Thread Tomasz Maciej Nowak
Hi, 2018-01-06 12:12 GMT+01:00, Nishant Sharma : > Hi Hauke, > > On Friday 05 January 2018 11:33 PM, Hauke Mehrtens wrote: >> I have never looked at the OpenWrt fork provided by Marvell, but I got >> OpenWrt master working on the espressobin with kernel 4.14. It only has