Notice: Radxa Wiki is no longer maintained and content is for reference only. Please visit the latest Radxa Documentation site:
docs.radxa.com
Difference between revisions of "Rock3/dev/change-kernel-params"
(Created page with "{{rock3_header}} {{Languages|rock3/dev/change-kernel-params}} ROCK 3 > Development > rock3/dev/change-kernel-params | Change kernel params...") |
|||
| Line 8: | Line 8: | ||
This guide describes how to change kernel params. | This guide describes how to change kernel params. | ||
| + | |||
| + | |||
| + | === Compatibility === | ||
| + | |||
| + | This guide is compatibility for radxa debian/ubuntu image. | ||
| + | |||
| + | |||
| + | === Change kernel params === | ||
| + | |||
| + | modify this file to make the param enable on kernel you will install | ||
| + | <pre style="color: red"> /etc/default/extlinux </pre> | ||
| + | |||
| + | change this line, here i add the param "systemd.unified_cgroup_hierarchy=1" | ||
| + | |||
| + | <code>APPEND="earlyprintk console=ttyFIQ0,1500000n8 rw init=/sbin/init rootfstype=ext4 rootwait systemd.unified_cgroup_hierarchy=1 " </code> | ||
| + | |||
| + | modify this file to make the param enable on the kernel now using | ||
| + | <pre style="color: red"> /boot/extlinux/extlinux.conf </pre> | ||
| + | |||
| + | change this line, here i add the param "systemd.unified_cgroup_hierarchy=1" | ||
| + | |||
| + | <code>append earlyprintk console=ttyFIQ0,1500000n8 rw init=/sbin/init rootfstype=ext4 rootwait systemd.unified_cgroup_hierarchy=1 root=UUID=baaba7e3-7d29-4f0d-b02d-492a4ee29111</code> | ||
| + | |||
| + | now reboot, then param will be enabled | ||
Latest revision as of 09:10, 13 January 2022
ROCK 3 > Development > Change kernel params
Change kernel params on ROCK 3A
This guide describes how to change kernel params.
Compatibility
This guide is compatibility for radxa debian/ubuntu image.
Change kernel params
modify this file to make the param enable on kernel you will install
/etc/default/extlinux
change this line, here i add the param "systemd.unified_cgroup_hierarchy=1"
APPEND="earlyprintk console=ttyFIQ0,1500000n8 rw init=/sbin/init rootfstype=ext4 rootwait systemd.unified_cgroup_hierarchy=1 "
modify this file to make the param enable on the kernel now using
/boot/extlinux/extlinux.conf
change this line, here i add the param "systemd.unified_cgroup_hierarchy=1"
append earlyprintk console=ttyFIQ0,1500000n8 rw init=/sbin/init rootfstype=ext4 rootwait systemd.unified_cgroup_hierarchy=1 root=UUID=baaba7e3-7d29-4f0d-b02d-492a4ee29111
now reboot, then param will be enabled
