<feed xmlns='http://www.w3.org/2005/Atom'>
<title>staging/mans0n/package/boot, branch master</title>
<subtitle>Staging tree of Sungbo Eo</subtitle>
<id>https://git.openwrt.org/openwrt/staging/mans0n/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/openwrt/staging/mans0n/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/mans0n/'/>
<updated>2024-03-10T07:32:14Z</updated>
<entry>
<title>ramips: rename mtd partition of ipTIME NAND devices</title>
<updated>2024-03-10T07:32:14Z</updated>
<author>
<name>Sungbo Eo</name>
</author>
<published>2024-02-04T12:46:14Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/mans0n/commit/?id=ec45f2f246363a4c2a84e51d0014848bf8c52e9f'/>
<id>urn:sha1:ec45f2f246363a4c2a84e51d0014848bf8c52e9f</id>
<content type='text'>
Contrary to common ipTIME NOR devices, the "Config" partition of T5004
and AX2004M contain normal U-Boot environment variables. Renaming the
partition into "u-boot-env" serves for better description, and it also
conforms to common naming practice in OpenWrt.

This patch might also be extended to A3004T, but its u-boot-env
partition layout has not been confirmed yet.

Signed-off-by: Sungbo Eo &lt;mans0n@gorani.run&gt;
</content>
</entry>
<entry>
<title>uboot-mediatek: add 'rootwait' to bootargs where needed</title>
<updated>2024-03-09T13:59:58Z</updated>
<author>
<name>Daniel Golle</name>
</author>
<published>2024-03-09T13:58:29Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/mans0n/commit/?id=efa71c532e4778433263626bfff1a40e48f6bdb4'/>
<id>urn:sha1:efa71c532e4778433263626bfff1a40e48f6bdb4</id>
<content type='text'>
Probing of the fitblk driver in some situations happens after Linux
attempts to mount rootfs, which then fails.
Always use 'rootwait' kernel parameter when using fitblk for rootfs.

Signed-off-by: Daniel Golle &lt;daniel@makrotopia.org&gt;
</content>
</entry>
<entry>
<title>qualcommax: ipq60xx: add support for netgear wax214</title>
<updated>2024-03-05T05:34:35Z</updated>
<author>
<name>Dirk Buchwalder</name>
</author>
<published>2024-03-03T15:00:46Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/mans0n/commit/?id=93610492b634c94e882dc048fde23d67a056ea1a'/>
<id>urn:sha1:93610492b634c94e882dc048fde23d67a056ea1a</id>
<content type='text'>
    Netgear WAX214 is a 802.11 ax dual-band AP
    with PoE. (similar to Engenius EWS357APV3)

    Specifications:

        •     CPU: Qualcomm IPQ6010 Quad core Cortex-A53
        •     RAM: 512MB of DDR3
        •     Storage: 128MB NAND (Macronix MX30UF1G18AC)
        •     Ethernet: 1x 1G RJ45 port (QCA8072) PoE
        •     WIFI:
              2.4GHz: Qualcomm QCN5022 2x2 802.11b/g/n/ax 574 Mbps PHY rate
              5GHz: Qualcomm QCN5052 2x2 802.11a/b/g/n/ac/ax 1201 PHY rate

        •     LEDs:
              4 x GPIO-controlled LEDs
                - 1 Power LED (orange)
                - 1 LAN LED (blue)
                - 1 WIFI 5g LED (blue)
                - 1 WIFI 2g LED (blue)
                black_small_square  Buttons: 1x soft reset
                black_small_square  Power: 12V DC jack or PoE (802.3af )

            An populated serial header is onboard, format is
             1.25mm 4p (DF13A-4P-1.25H)
            RX/TX is working, bootwait is active, secure boot is not
            enabled.

            The root password of the stock firmware is unknown,
            but failsafe mode can be entered to reset the password.

            Installation Instructions:

                - obtain serial access
                - stop auto boot (press "4", Entr boot command line
		  interface)
                - setenv active_fw 0 (to boot from the primary rootfs,
                  or set to 1 to boot from the secondary rootfs
                  partition)
                - saveenv

                - tftpboot the initramfs image
                - bootm

                - copy
		  openwrt-qualcommax-ipq60xx-netgear_wax214-squashfs-factory.ubi
                  to the device
                - write the image to the NAND:
                   - cat /proc/mtd and look for rootfs partition (should
		     be mtd11,
                     or mtd12 if you choose active_fw 1)
                   - ubiformat /dev/mtd11 -f -y
		     openwrt-qualcommax-ipq60xx-netgear_wax214-squashfs-factory.ubi
                - reboot

            Note: the firmware is senao-based. But I was unable to build
                  a valid senao-header into the image.
                  Maybe they changed the header format and senaoFW isn't
                  working any more.

Signed-off-by: Dirk Buchwalder &lt;buchwalder@posteo.de&gt;
</content>
</entry>
<entry>
<title>u-boot.mk: override default PATH to avoid pick hostpkg python</title>
<updated>2024-03-02T13:17:31Z</updated>
<author>
<name>Tianling Shen</name>
</author>
<published>2024-02-25T12:33:08Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/mans0n/commit/?id=4f668091bfd608b73f4b98b206358d8f1a7ffade'/>
<id>urn:sha1:4f668091bfd608b73f4b98b206358d8f1a7ffade</id>
<content type='text'>
hostpkg python from packages feed can be picked when do a incremental
build because hostpkg has higher priority in PATH. It may lead build
faliure as it's heavily trimmed (e.g. lacks necessary modules).

For uboot which uses binman and intree dtc, this is forced as hostpkg
python will never provide those modules by default.

Signed-off-by: Tianling Shen &lt;cnsztl@immortalwrt.org&gt;
</content>
</entry>
<entry>
<title>uboot-mediatek: remove rootfs_data before attempting to replace fip</title>
<updated>2024-03-01T00:59:49Z</updated>
<author>
<name>Daniel Golle</name>
</author>
<published>2024-02-29T19:22:43Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/mans0n/commit/?id=f08e63bd8396326953705468fe2e7b47bf080979'/>
<id>urn:sha1:f08e63bd8396326953705468fe2e7b47bf080979</id>
<content type='text'>
Make sure there is enough space to replace 'fip' volume and always
remove rootfs_data before.

Signed-off-by: Daniel Golle &lt;daniel@makrotopia.org&gt;
</content>
</entry>
<entry>
<title>uboot-d1: cleanup Makefile</title>
<updated>2024-02-29T16:06:04Z</updated>
<author>
<name>Zoltan HERPAI</name>
</author>
<published>2024-02-29T16:06:04Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/mans0n/commit/?id=55c7b2cdaf827a4045320f944d73a168cad6bfb7'/>
<id>urn:sha1:55c7b2cdaf827a4045320f944d73a168cad6bfb7</id>
<content type='text'>
Clean up leftover PKG_HASH.

Signed-off-by: Zoltan HERPAI &lt;wigyori@uid0.hu&gt;
</content>
</entry>
<entry>
<title>uboot-d1: add bootloader for upcoming d1 target</title>
<updated>2024-02-29T15:50:20Z</updated>
<author>
<name>Zoltan HERPAI</name>
</author>
<published>2023-06-07T12:34:06Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/mans0n/commit/?id=d41d9befb9302d33601fe3644886d8463d9f105d'/>
<id>urn:sha1:d41d9befb9302d33601fe3644886d8463d9f105d</id>
<content type='text'>
Add u-boot bootloader based on 2023.01 to support D1-based boards, currently:

 - Dongshan Nezha STU
 - LicheePi RV Dock
 - MangoPi MQ-Pro
 - Nezha D1

Signed-off-by: Zoltan HERPAI &lt;wigyori@uid0.hu&gt;
</content>
</entry>
<entry>
<title>opensbi: allow building on upcoming d1 target</title>
<updated>2024-02-29T15:50:19Z</updated>
<author>
<name>Zoltan HERPAI</name>
</author>
<published>2023-06-07T09:54:34Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/mans0n/commit/?id=f8436018fd1a928ecaaa55a240fa94add095a0ee'/>
<id>urn:sha1:f8436018fd1a928ecaaa55a240fa94add095a0ee</id>
<content type='text'>
U-boot on D1 also uses OpenSBI as its payload. As the current version of
OpenSBI already supports D1 with no further patches required, allow
building it on the upcoming TARGET_d1 too.

Signed-off-by: Zoltan HERPAI &lt;wigyori@uid0.hu&gt;
</content>
</entry>
<entry>
<title>uboot-mediatek: correct board name for BananaPi BPi-R3 Mini</title>
<updated>2024-02-28T04:48:43Z</updated>
<author>
<name>Tianling Shen</name>
</author>
<published>2024-02-25T12:21:40Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/mans0n/commit/?id=d6e008ace9a879cef11b2d28ac39d1ae2e7776e1'/>
<id>urn:sha1:d6e008ace9a879cef11b2d28ac39d1ae2e7776e1</id>
<content type='text'>
It should be "BananaPi BPi-R3 Mini" instead of just "BananaPi BPi-R3".

Fixes: bc25519f98cd ("uboot-mediatek: add builds for BananaPi BPi-R3 mini")
Signed-off-by: Tianling Shen &lt;cnsztl@immortalwrt.org&gt;
</content>
</entry>
<entry>
<title>uboot-envtools: replace use of platform_get_bootdev</title>
<updated>2024-02-26T01:29:22Z</updated>
<author>
<name>Daniel Golle</name>
</author>
<published>2024-02-25T21:08:57Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/mans0n/commit/?id=fc865eb3ae0369a966490ec5e8a3991d4553eb40'/>
<id>urn:sha1:fc865eb3ae0369a966490ec5e8a3991d4553eb40</id>
<content type='text'>
Use new function fitblk_get_bootdev in /lib/upgrade/common.sh instead.

Signed-off-by: Daniel Golle &lt;daniel@makrotopia.org&gt;
</content>
</entry>
</feed>
