This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cat /env/nv/bootchooser.system1.boot | |
mmc0.root-a | |
# cat /env/nv/bootchooser.system2.boot | |
mmc0.root-b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
obj-m += mykmod.o | |
all: | |
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules | |
clean: | |
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# | |
# Copyright (C) 2014 Savoir-Faire Linux Inc. | |
# Authors: | |
# Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com> | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License Version 2 as | |
# published by the Free Software Foundation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ==================================== | |
# buildroot/package/skeleton/Config.in | |
# ==================================== | |
config BR2_PACKAGE_SKELETON | |
bool "skeleton" | |
help | |
A skeleton package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ================================== | |
# buildroot/package/mykmod/Config.in | |
# ================================== | |
comment "mykmod needs a Linux kernel to be built" | |
depends on !BR2_LINUX_KERNEL | |
config BR2_PACKAGE_MYKMOD | |
bool "MYKMOD" | |
depends on BR2_LINUX_KERNEL | |
help |