xrsh-buildroot/edit.sh

16 lines
442 B
Bash
Raw Normal View History

#!/bin/bash
2024-09-11 12:49:50 +02:00
set -e
2025-02-18 16:09:27 +01:00
export BR2_EXTERNAL=/buildroot-v86
export BR2_PACKAGE_BUSYBOX_CONFIG=/buildroot-v86/configs/busybox.config
make v86_defconfig
2024-09-17 19:02:07 +02:00
2024-09-11 12:49:50 +02:00
make menuconfig
2024-09-17 19:02:07 +02:00
make busybox-menuconfig
2024-09-11 12:49:50 +02:00
make linux-menuconfig
2025-02-18 16:09:27 +01:00
make savedefconfig # /buildroot-v86/configs/v86_defconfig
2024-09-11 12:49:50 +02:00
make linux-savedefconfig
2025-02-18 16:09:27 +01:00
make linux-update-defconfig # /buildroot-v86/configs/linux.config
make busybox-update-defconfig # /buildroot-v86/configs/linux.config
2024-09-11 12:49:50 +02:00
make