Skip to content

Instantly share code, notes, and snippets.

@codenamezjames
codenamezjames / catalog_product_view.xml
Created January 30, 2018 20:36 — forked from timneutkens/catalog_product_view.xml
Remove reviews from product page Magento 2
<?xml version="1.0"?>
<page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="product.info.review" remove="true" />
<referenceBlock name="reviews.tab" remove="true" />
</body>
</page>

Copy current kernel configuration to linux source

cp -vi /boot/config-`uname -r` .config

Decide about new kernel options

make localmodconfig

Compile the kernel

make -j6

Compile kernel modules

sudo make modules_install

Install/Place kernel and libs where they should be

sudo make install