Skip to content

Commit c600a36

Browse files
committed
3.3.4.2 Update firmware for USB_BOOT
Update recommended OS 3.3.4.2 Bump firmware to 5.4.45 (bovirus-patch-5) Update Italian language
1 parent 2b3153c commit c600a36

29 files changed

+3001
-2830
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ Please note that in some cases it may extract the files into a folder, if this i
4343

4444
## Change History
4545

46+
### V3.3.4.2
47+
48+
- **Firmware** - Update firmware 5.4.45 for usb-boot (beta)
49+
- **Name Change** - Update recommended OS name
50+
- **KeybdTrigger** - Fix keyboard trigger option
51+
- **Translations** - Update Italian language
52+
4653
### V3.3.4.1
4754

4855
- **CloneSD** - Remove drive restrictions on Clone SD

README_PINN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
The latest version of [PINN](http://downloads.sourceforge.net/projects/pinn/pinn-lite.zip) can be downloaded from [sourceforge](http://www.sourceforge.net/projects/pinn).
77

8-
This README relates to v3.3.4.1
8+
This README relates to v3.3.4.2
99

1010
<sup>(PINN-lite does not include any operating systems at all. It is more akin to `NOOBS-lite` rather than `NOOBS`. For that reason, the filename that you download is called `pinn-lite.zip`. More recently, `pinn.zip` has also been made available for download which includes versions of Raspbian and LibreELEC.)</sup>
1111

buildroot/package/rpi-firmware/rpi-firmware.mk

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
################################################################################
66

77

8-
RPI_FIRMWARE_VERSION = 149cd7f0487e08e148efe604f8d4d359541cecf4
8+
#RPI_FIRMWARE_VERSION = 149cd7f0487e08e148efe604f8d4d359541cecf4
9+
#RPI_FIRMWARE_VERSION = 27ba5b9e5aab4a750bb69554aa92c4df53544d80
10+
#5.4.45
11+
RPI_FIRMWARE_VERSION = cb2b95d73e9f0b1ebf05e03bb1959603d982feeb
12+
913
RPI_FIRMWARE_SITE = $(call github,raspberrypi,firmware,$(RPI_FIRMWARE_VERSION))
1014
RPI_FIRMWARE_LICENSE = BSD-3c
1115
RPI_FIRMWARE_LICENSE_FILES = boot/LICENCE.broadcom

changes.md

+6
Original file line numberDiff line numberDiff line change
@@ -572,3 +572,9 @@ Fixes the incorrect recovery.cmdline bug in v2.5.2.
572572
- **Buildversions** - Made buildversions more intuitive (for me!)
573573
- **Legacy** - Accounted for Pi4 when identifying legacy hardware
574574

575+
### V3.3.4.2
576+
577+
- **Firmware** - Update firmware 5.4.45 for usb-boot (beta)
578+
- **Name Change** - Update recommended OS name
579+
- **KeybdTrigger** - Fix keyboard trigger option
580+
- **Translations** - Update Italian language

history.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ PINN is a version of the NOOBS Operating System Installer for the Raspberry Pi w
55

66
## Change History
77

8+
### V3.3.4.2
9+
10+
- **Firmware** - Update firmware 5.4.45 for usb-boot (beta)
11+
- **Name Change** - Update recommended OS name
12+
- **KeybdTrigger** - Fix keyboard trigger option
13+
- **Translations** - Update Italian language
14+
815
### V3.3.4.1
916

1017
- **CloneSD** - Remove drive restrictions on Clone SD

recovery/config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define CONFIG_H
33

44
/* Version number displayed in the title bar */
5-
#define VERSION_NUMBER "3.3.4.1"
5+
#define VERSION_NUMBER "3.3.4.2"
66

77
/* Color of the background */
88
// #define BACKGROUND_COLOR Qt::white
@@ -59,7 +59,7 @@
5959
#define SETTINGS_PARTITION_SIZE (32 * 2048 - PARTITION_GAP)
6060

6161
/* If the image name matches this exactly, mark it as recommended */
62-
#define RECOMMENDED_IMAGE "Raspbian Full"
62+
#define RECOMMENDED_IMAGE "Raspberry Pi OS Full (32-bit)"
6363

6464
/* RiscOS magic */
6565
#define RISCOS_OFFSET_KEY "riscos_offset"

recovery/optionsdialog.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ void OptionsDialog::write()
246246

247247
cb_entry(forcetrigger);
248248
cb_entry(gpiotriggerenable);
249-
cb_entry(keyboardtriggerenable);
249+
cb_entry(keyboardtriggerdisable);
250250
eb_entry(remotetimeout);
251251
eb_entry(networktimeout);
252252

@@ -358,7 +358,7 @@ bool OptionsDialog::recognise(const QString & key, const QString &value)
358358

359359
cb_entry(forcetrigger);
360360
cb_entry(gpiotriggerenable);
361-
cb_entry(keyboardtriggerenable);
361+
cb_entry(keyboardtriggerdisable);
362362
eb_entry(remotetimeout);
363363
eb_entry(networktimeout);
364364

recovery/optionsdialog.ui

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<string/>
2929
</property>
3030
<property name="currentIndex">
31-
<number>3</number>
31+
<number>2</number>
3232
</property>
3333
<widget class="QWidget" name="installation">
3434
<attribute name="title">
@@ -423,12 +423,12 @@
423423
</widget>
424424
</item>
425425
<item row="0" column="2">
426-
<widget class="QCheckBox" name="cb_keyboardtriggerenable">
426+
<widget class="QCheckBox" name="cb_keyboardtriggerdisable">
427427
<property name="toolTip">
428428
<string>Prevents a SHIFT keypress from entering Recovery Mode on boot (maybe you have a problematic keyboard which is erroneously triggering every time you boot)</string>
429429
</property>
430430
<property name="text">
431-
<string>&amp;keyboardtriggerenable</string>
431+
<string>&amp;keyboardtriggerdisable</string>
432432
</property>
433433
</widget>
434434
</item>

0 commit comments

Comments
 (0)