Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add kernel cmdline parameter for CCNP measurement #20

Merged
merged 1 commit into from
Mar 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ sed -i 's/rootflags=i_version//' $GRUB_FILE
sed -i 's/console=tty1 console=ttyS0//' $GRUB_FILE
sed -i 's/console=hvc0//' $GRUB_FILE

awk '{if($1 ~ /GRUB_CMDLINE_LINUX_DEFAULT/) sub("=\"","=\"console=tty1 console=ttyS0 ima_appraise=fix ima_hash=sha384 rootflags=i_version "); print}' \
# ima_template=ima-cgpath is required for container measurement
awk '{if($1 ~ /GRUB_CMDLINE_LINUX_DEFAULT/) sub("=\"","=\"console=tty1 console=ttyS0 ima_appraise=fix ima_hash=sha384 rootflags=i_version ima_template=ima-cgpath"); print}' \
$GRUB_FILE \
> $GRUB_FILE_NEW
mv $GRUB_FILE_NEW $GRUB_FILE
Expand Down
Loading