Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-04-05 | linux: update 6.1.x version | Waldemar Brodkorb | |
2023-02-26 | riscv: -fPIC for c++ apps | Waldemar Brodkorb | |
2023-02-22 | aircrack-ng: update to 1.7 | Waldemar Brodkorb | |
2023-02-10 | sync dual-boot with single boot, use gpt/efi | Waldemar Brodkorb | |
2023-02-06 | arcv2: newer Linux kernel use haps_hs and DW uart | Waldemar Brodkorb | |
2023-01-21 | linux: update to 6.1.7 | Waldemar Brodkorb | |
2023-01-19 | linux: update to 5.15.89, make it default | Waldemar Brodkorb | |
2023-01-19 | weston: update to 11.0.0, update dependencies | Waldemar Brodkorb | |
2023-01-09 | remove python2 dependencies and packages | Waldemar Brodkorb | |
2022-12-26 | linux: update to 6.0.15, reduce mini.config from rockpi4-plus | Waldemar Brodkorb | |
2022-12-26 | implement dual-boot for rockpi4-plus device | Waldemar Brodkorb | |
2022-12-26 | linux: update to 5.15.85 | Waldemar Brodkorb | |
2022-12-25 | rockpi4-plus: add cfgfs partition | Waldemar Brodkorb | |
2022-12-15 | add support for rockpi4-plus | Waldemar Brodkorb | |
2022-11-28 | mk/kernel-build.mk: Drop redundant assignments | Phil Sutter | |
If ADK_TARGET_KERNEL_VMLINUX_BOOTP==y, ADK_TARGET_KERNEL=bootpfile hence no need for the clause. Also, KERNEL_TARGET defaults to $(ADK_TARGET_KERNEL) already. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2022-10-10 | fix checksum for 5.4.215 | Waldemar Brodkorb | |
2022-10-10 | linux: update 5.x kernels | Waldemar Brodkorb | |
2022-09-22 | add support for STM32F746G-DISCO device | Waldemar Brodkorb | |
Tested with toolbox / simpleinit as userland. FDPIC/FLAT support both successfully tested. No LCD or Ethernet support. | |||
2022-09-12 | riscv: use -fPIC for noMMU | Waldemar Brodkorb | |
2022-08-31 | some changes for img-tec and various things | Waldemar Brodkorb | |
2022-08-19 | loongarch: use special linux version, boots up now | Waldemar Brodkorb | |
2022-08-11 | add basic loongarch support, qemu does not boot the kernel, yet | Waldemar Brodkorb | |
2022-05-13 | linux: update to 5.4.193 | Waldemar Brodkorb | |
2022-03-03 | remove midori, it needs libpeas, which needs gobject-introspection | Waldemar Brodkorb | |
I am not able to cross-compile gobject-introspection and not ever willing to try it again. It's a mess. Update all packages required on the way to midori, which now will be removed. sorry. | |||
2022-02-27 | kodi: update to Matrix with all dependencies | Waldemar Brodkorb | |
2022-02-26 | riscv64: add support for nommu target systems | Waldemar Brodkorb | |
2022-02-15 | linux: add 5.15.x suppport | Waldemar Brodkorb | |
2022-02-15 | linux: update 5.10.x to latest | Waldemar Brodkorb | |
2022-02-13 | linux: update 5.4.x to latest | Waldemar Brodkorb | |
2022-02-10 | fix meson builds searching for *.pc files | Waldemar Brodkorb | |
2022-02-08 | kvx: update gcc/binutils/linux | Waldemar Brodkorb | |
2022-02-07 | goodbye systemd, never worked fully on a openadk emulator or device. Use ↵ | Waldemar Brodkorb | |
simple static device nodes with devtmpfs as default. mdev is to bloated for some devices | |||
2022-02-05 | linux: update 4.4.x kernel to latest | Waldemar Brodkorb | |
2022-02-05 | reorder TARGET_CC workarounds | Waldemar Brodkorb | |
2022-01-23 | linux: update to 5.4.x | Waldemar Brodkorb | |
2022-01-21 | microblaze: workaround for gcc bug #97208 | Waldemar Brodkorb | |
2022-01-21 | linux: update to 5.10.93 | Waldemar Brodkorb | |
2021-11-15 | mk: Support appending a DTB to kernel image | Phil Sutter | |
Activated by setting ADK_TARGET_KERNEL_APPEND_DTB symbol to the basename (without suffix) of a dtb file. Not quite user-friendly, but really meant for internal use via default symbol values depending on chosen target system. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-15 | Fix 'make kernelconfig' | Phil Sutter | |
Using KERNEL_MAKE variable in this spot breaks things, for some reason linking fails if KERNEL_MAKE_ENV is passed to make. Before, this worked by accident because due to missing kernel-vars.mk include, KERNEL_MAKE_ENV evaluated empty. Fixes: e48e15bff4252 ("mk: Introduce KERNEL_MAKE variable") Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-14 | Merge branch 'master' of gogs.waldemar-brodkorb.de:oss/openadk | Waldemar Brodkorb | |
2021-11-14 | fix kernel menuconfig | Waldemar Brodkorb | |
2021-11-11 | xtensa: use -mlongcalls for big-endian, too | Waldemar Brodkorb | |
2021-11-11 | meson: update to 0.60.1 | Waldemar Brodkorb | |
2021-11-04 | perl.mk fixup after version bump of perl | Waldemar Brodkorb | |
2021-11-01 | mk: Introduce KERNEL_MAKE variable | Phil Sutter | |
This combines the typical kernel make call idiom into a single variable reference. A side-effect is that parallel make is enabled (via added '-j' flag) in many cases, but that shouldn't cause harm. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-01 | mk: Generalize kernel loadaddr | Phil Sutter | |
Introduce ADK_TARGET_KERNEL_LOADADDR symbol holding the right kernel loadaddr depending on chosen target system instead of hard-coding the value into kernel-vars.mk. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-01 | image.mk: Use SCRIPT_DIR variable | Phil Sutter | |
It exists, so use it instead of manually stating $(TOPDIR)/scripts. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-01 | fix allmodconfig | Waldemar Brodkorb | |
2021-10-30 | mk/image.mk: Ship /init in initramfs | Phil Sutter | |
OpenADK's kernel hack to call /sbin/init in initramfs is ugly. Instead, ship /init as a symlink to /sbin/init. This is safe, since initramfs is always a filesystem with symlink support. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-10-22 | linux: update to latest versions | Waldemar Brodkorb | |